• +33 1 41 31 82 82
  • This email address is being protected from spambots. You need JavaScript enabled to view it.

Tomorrow, check out "Comment migrer vos Applications PowerBuilder" Jeudi 19 janvier à 11h00 EST (New York) / 17h00 CET (Paris). Don't understand French? On February 9th, PBTV has added an English version of the webinar "How to migrate your PowerBuilder Applications?" at 11am EST (New York) / 17h00 CET (Paris)

Register here


Date: Thursday February 23rd

PowerBuilder 12.5.1 will be released soon as a free download for anyone using PowerBuilder 12.5. While this is primarily a maintenance release it will include two new powerful features in the PowerBuilder .NET IDE. Join Dave Fish as he discusses and demonstrates the ability to dynamically load PowerBuilder assemblies into a WPF application at runtime as well as the ability to deploy 64-bit .NET applications.

Presenter: Dave Fish


Click here to watch the recorded webinar


Konstantin Goldobin has written an article on PBDJ concerning the use of Drop-down lists: "PowerBuilder helps implement data entry fields that are capable of clearly presenting irregular values to the user... it looks like we've overlooked one of the cases when use of a drop-down list can make data entry easier for the user."

Find out more here


"...here is the code to send sms through PB application .... but before you execute the code, make it sure that your GSM modem or Mobile set (which can be act as GSM modem) attached to the PC is working and installed properly...."

Check out other options for sending a SMS in French at Donf!

 Code: pb
integer li_FileNum
string mobileNumber
string Smsmessage
string comPort
string szEnd
string szCommand

mobilenumber = txtmobilenumber.text
Smsmessage = txtmessage.text
comPort = txtComPort.text
szEnd = char(26)

li_FileNum = FileOpen(comPort, TextMode!,Write!,LockWrite!,Append!)
if li_FileNum > 0 then 
  FileWriteEx(li_FileNum, "AT+CMGF=1")
  FileWriteEx(li_FileNum, "~n~r")
  szCommand = "AT+CMGS="
  szCommand += "~""+mobilenumber+"~""
  FileWriteEx(li_FileNum, szCommand)
  FileWriteEx(li_FileNum, "~r")
  FileWriteEx(li_FileNum, Smsmessage)
  FileWriteEx(li_FileNum, szEnd)
  FileClose(li_FileNum)
  MessageBox("Sms Application" , "Sms sent successfully....")
  txtmobilenumber.text = ""
  txtmessage.text = ""
else
  MessageBox("Sms Application" , "Unable to open comport....")
end if

 


Code Analysis

Explore & Understand complex code Evaluate the impact of a change. Improve PB and Database Code.


Learn More

Visual Guard

Application Security

Control Access to Sensitive Data.
Monitor Audit application Security.
Send notifications on suspicious events.

Learn More

AscentialTest Automated Software Testing

Automated Testing

The ONLY testing tool fully supporting
PowerBuilder Datawindows and Objects.

Learn More

© 2025 Novalys. All Rights Reserved.