... Well, formally yes, it is defined. But the current .onclick is almost useless: it is triggered when the user clicks the mouse on the object. It doesn't...
Thanks for your reply, Don. What you're doing works fine in Windows 9X, but if you use $XPSTYLE, that's what disables the ability to change the font color of...
Per a suggestion by E, now, for all FORM objects, 1. If an .OnClick event procedure is defined, all WM_NOTIFY messages will trigger the .OnClick event, with...
Hello, Jim, This is a suggestion to improve the use of custom objects. Some properties of custom objects are numbers or strings, and are in essence read/write....
I think there's a little bug with the new version: it gives a compile error if nCode is not used somewhere in the program. HotBasic.lib(hPROC.obj) : error...
Hi, Jim, I'm again trying to port a program to Hotbasic (an IDE for HB with form designer and debugger) and I'm getting a headache for the following reason. In...
... You are right, I did not check that! Apologies to all. I have now posted for download a fix for that "little bug". Here is the test program I used: ...
... Yes in the context of a property WRITE. However, it is not exactly equivalent to a "$DEFINE" because the same ".Property=" can occur in an expression: if...
... True. At present, $DUPARGERR ON ... $DUPARGERR OFF code blocks will automate the process of flagging where attention is needed, thus preventing the kind...
... Very good question. I had recompiled hotwin.bas, which uses .OnClick, and observed that it worked. The possible danger is that .OnClick will generate more...
... Another point: I think all the "new" .OnClick events have negative nCode values. So the easiest filter to "ignore" those is IF nCode<zero THEN Exit SUB...
... Hi, Don Yes, I have now improved the HBassistant listbox, and so this improvement will be in the next update. Shall let you all know when that happens. ...
Philip Bister
philip.bister@...
Nov 2, 2006 3:21 pm
10871
... I vote for that option. $Dupargerr is a helping hand that helps you locate possible problems, but they still need to be dealt with manually. A directive to...
... So we're talking about properties which really are not properties but rather methods or functions. Interesting. What an adventure. Next I suppose we'll...
... Exactly. But, think of it, it is already the case of many native object properties. When we state Button1.visible=0, this looks like a property write while...
... This is true. Agreed, that "properties" and "methods" have little meaning in general in computer languages. At present, however, in HB's Custom Object...
In vb6 the syntax is Class WildThing private wild as string property get Wild as string Wild=this.wild end property property let Wild(value as string) ...
... Thanks, Fredrik. It seems that In HB the syntax is object WildThing wild as string end object dim w as WildThing w.wild="test" print w.wild So the...
Hello, I tried to use three timers at the same time, but apparently only two (the first two created) are working. What's wrong? What can I do? Thanks in...
... Does this mean that vb classes are "registered" with the OS? Horrors. Another "run to Mama"/"Mama, hold my hand" implementation by MS (where Mama = the...
Classes in vb doesn't register with the OS like ActiveX Controls (Help me) I wrote this property Get/Set code as I see what we can do in HB today. $apptype...
... Thanks for info in your code. So, folks, if you need a Property sub/function, there you have a template from Fredrik; and we can put that in the done...
Hi Jim and everyone, According to the news, "Longtime software antagonists Microsoft Corp. and Novell Inc. have reached a technological truce that promises to ...
... gain ... OK, now we're back to step 1! I think the above is the most natural way to implement a property read/write in HB as it is today. The initial...
... gain ... I actually built the function like this first but I wanted to write as few lines as possible. ... I think there are may times where you have a...
Anyone got any HB CGI examples and/or tutorials? Sure would like to see what HB is capable of on that front. I want to make a web front- end to the app I'm...