You are not logged in.

Search results

Search results 1-5 of 5.

Wednesday, September 28th 2011, 1:26am

Author: george karras

Empty String

Jabaco works great with Greek letters. The program has no meaning for someone who cannot understand greek language.But this was a simple program to test jabaco. As you see, I found the bugs...I have VB5 and jabaco in a notebook. Its very hard for anyone to make jabaco to act as VB. But jabaco is a rapid application developer...with a VB style of programming. George

Monday, September 26th 2011, 7:09pm

Author: george karras

PropertyBag

I need propertybag. Jabaco store properties for forms and controls...so PropertyBag must be the interface to store properties values. When a form prepare the controls...reads properties from a list, this list is a PropertyBag. So for implementation of a propertybag isn't need much pain..You have some of properties already. You store position of a user control. So you can store some other properties..You need is a restriction to not allowed using a propertybag for a common control, as these contr...

Monday, September 26th 2011, 6:43pm

Author: george karras

Empty String

I found the bugs, Dim e$ ' at second line..a$ or b$ or c$ not needed to have a Dim statement ???? If k Then c$ = c$ + UCase$(Left$(b$, 1)) + Mid$(b$, 2) Else c$ = c$ + b$ End If ' You see I replace + with & and the scrip works...' with + perform nymper addition and gives 0.0 to C$ at line "C$=C$+B$" so this is the right script (see the + symbol is good before MID$ If k Then c$ = c$ & UCase$(Left$(b$, 1)) + Mid$(b$, 2) Else c$ = c$ & b$ End If

Monday, September 26th 2011, 6:10pm

Author: george karrar

Empty String

I have just 2 textbox and a command button on a form. This programm run as a VB program. I do a test on jabaco and I found this: An unhandled exception has occurred in your application. If you click Continue, the application will ignore this error and attempt to continue. If you click Quit, the application will be shut down. java.lang.NumberFormatException: empty String May be wrong variable initialisation!(this program do a conversion from Greek letters to latin letters utilized a select case, ...

Monday, September 26th 2011, 4:20pm

Author: george karrar

Enum tyoe variables...

Public Enum ERegistryValueTypes 'Predefined Value Types REG_NONE = (0) 'No value type REG_SZ = (1) 'Unicode nul terminated string REG_EXPAND_SZ = (2) 'Unicode nul terminated string w/enviornment var REG_BINARY = (3) 'Free form binary REG_DWORD = (4) '32-bit number REG_DWORD_LITTLE_ENDIAN = (4) '32-bit number (same as REG_DWORD) REG_DWORD_BIG_ENDIAN = (5) '32-bit number REG_LINK = (6) 'Symbolic Link (unicode) REG_MULTI_SZ = (7) 'Multiple Unicode strings REG_RESOURCE_LIST = ( 'Resource list in the...

WoltLab Burning Board