I coded a small example how to use google calendar ( or another ICS Calendar ) in Powerbuilder. I used some new PB 11.5 features.
googlecal_build.zip
googlecal_source.zip
without kodigo:
googlecal_nf.zip
I started a small project in PB to manage basic home network functions like connecting / disconnecting my linux server from DSL . This afternoon I extended it for using Litt. Litt is a monitoring software for OpenVPN.
Maybe you are interested in how it works. You can download the source here. It’s just an [...]
Developing PB webform applications is a hard challenge if you want to use Firefox. Why? Because the IE Web Controls (used by PB ) don’t support Firefox. But I found a way for me that helps me using and developing webform applications without switching between two browsers all the time. The magical weapon is the [...]
The first idea I had when I saw the new winform target in PB 11 was to add my own C# usercontrols in my pb application to give it a new fresh look and feel. But a little time later I get frustrated because it seems that there is no way to realize it.
First I [...]
Weil ’s einfach mal cool aussieht
global function long f_quersumme (long al_zahl);
IF al_zahl < 10 THEN RETURN al_zahl
RETURN f_quersumme ( al_zahl / 10 ) + mod ( al_zahl, 10 )
end function
Comment Wall
You need to be a member of PowerBuilder Support to add comments!
Join this network