Search the web
Sign In
New User? Sign Up
hotbasic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 10856 - 10885 of 17146   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
10856
... 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...
emmazle
Offline Send Email
Nov 1, 2006
4:58 pm
10857
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...
falkyr11
Offline Send Email
Nov 1, 2006
6:15 pm
10858
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...
doctor electron
globalservices1
Offline Send Email
Nov 1, 2006
8:22 pm
10859
... OK, and what diffrerence will this do for an ordinary application? Do I need to do some rewrite of code? /Fredrik...
fredriknorling2003
fredriknorli...
Offline Send Email
Nov 2, 2006
6:56 am
10860
... Very good, Thanks, Jim...
emmazle
Offline Send Email
Nov 2, 2006
8:06 am
10861
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....
emmazle
Offline Send Email
Nov 2, 2006
8:39 am
10862
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...
emmazle
Offline Send Email
Nov 2, 2006
10:25 am
10863
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...
emmazle
Offline Send Email
Nov 2, 2006
10:39 am
10864
... 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: ...
doctor electron
globalservices1
Offline Send Email
Nov 2, 2006
2:18 pm
10865
... If I understand, this would be like $DEFINE ".Property1=" .set_Property(...
doctor electron
globalservices1
Offline Send Email
Nov 2, 2006
2:23 pm
10866
... 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...
emmazle
Offline Send Email
Nov 2, 2006
2:48 pm
10867
... True. At present, $DUPARGERR ON ... $DUPARGERR OFF code blocks will automate the process of flagging where attention is needed, thus preventing the kind...
doctor electron
globalservices1
Offline Send Email
Nov 2, 2006
3:02 pm
10868
... 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...
doctor electron
globalservices1
Offline Send Email
Nov 2, 2006
3:04 pm
10869
... 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...
doctor electron
globalservices1
Offline Send Email
Nov 2, 2006
3:07 pm
10870
... 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@...
Send Email
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...
emmazle
Offline Send Email
Nov 2, 2006
4:00 pm
10872
... 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...
doctor electron
globalservices1
Offline Send Email
Nov 2, 2006
4:20 pm
10873
... 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...
emmazle
Offline Send Email
Nov 2, 2006
4:30 pm
10874
... This is true. Agreed, that "properties" and "methods" have little meaning in general in computer languages. At present, however, in HB's Custom Object...
doctor electron
globalservices1
Offline Send Email
Nov 2, 2006
5:29 pm
10875
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) ...
fredriknorling2003
fredriknorli...
Offline Send Email
Nov 2, 2006
7:08 pm
10876
... 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...
doctor electron
globalservices1
Offline Send Email
Nov 2, 2006
9:42 pm
10877
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...
Torsten
borstensohn
Offline Send Email
Nov 2, 2006
10:41 pm
10878
... 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...
doctor electron
globalservices1
Offline Send Email
Nov 2, 2006
10:45 pm
10879
... Dear Torsten, the code below confirms your result on a w2k. If the commented line is uncommented, the program does not run (or runs and exits...
doctor electron
globalservices1
Offline Send Email
Nov 2, 2006
11:21 pm
10880
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...
fredriknorling2003
fredriknorli...
Offline Send Email
Nov 2, 2006
11:25 pm
10881
... 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...
doctor electron
globalservices1
Offline Send Email
Nov 3, 2006
12:33 am
10882
Hi Jim and everyone, According to the news, "Longtime software antagonists Microsoft Corp. and Novell Inc. have reached a technological truce that promises to ...
pinoygabs
Offline Send Email
Nov 3, 2006
7:25 am
10883
... 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...
emmazle
Offline Send Email
Nov 3, 2006
7:29 am
10884
... 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...
fredriknorling2003
fredriknorli...
Offline Send Email
Nov 3, 2006
9:08 am
10885
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...
falkyr11
Offline Send Email
Nov 3, 2006
7:24 pm
Messages 10856 - 10885 of 17146   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help