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 3 - 63 of 17149   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3
Many users have suggested that I start this Yahoo! Group on hotbasic! When I started programming in RapidQ I learned a lot by reading messages and slowly got...
doctor electron
globalservices1
Offline Send Email
Jan 9, 2004
1:11 am
4
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the hotbasic group. File : /Code...
hotbasic@yahoogroups....
Send Email
Jan 9, 2004
7:44 am
5
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the hotbasic group. File : /Code...
hotbasic@yahoogroups....
Send Email
Jan 9, 2004
6:09 pm
13
color does not change background of button Dim button as button with button .left= 10 .top=10 .width=150 .height= 20 .Caption = "MyButton" .Color =...
chordnl
Offline Send Email
Jan 12, 2004
9:49 am
14
The following event commands do not work with the button object I think they also do not work with other objects The compiler recognizes these event?? ...
chordnl
Offline Send Email
Jan 12, 2004
10:04 am
19
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the hotbasic group. File : /Code...
hotbasic@yahoogroups....
Send Email
Jan 12, 2004
4:13 pm
25
... Don's GUI Cube program on the HotBasic home site uses these GF.onpaint=redraw GF.onresize=sizeit GF.onkeydown=isescape GF.onclose=wipeoff and they all seem...
doctor electron
globalservices1
Offline Send Email
Jan 12, 2004
8:36 pm
28
I want to look at each event which occurs at my program. What is the best way to do this? I now can check the values uMsg, wParam and lParam with a specific ...
chordnl
Offline Send Email
Jan 12, 2004
10:45 pm
29
... Good question. The software writer looks at events by at least two methods: (1) examine object values. Many HotBasic objects have events waiting, so to...
doctor electron
globalservices1
Offline Send Email
Jan 12, 2004
11:20 pm
30
Long, long ago, chordnl, a life form in far off space, emitted: ... Although there is a lot of hype about "events" in programming circles, in HotBasic, you are...
doctor electron
globalservices1
Offline Send Email
Jan 13, 2004
12:11 am
31
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the hotbasic group. File : /Code...
hotbasic@yahoogroups....
Send Email
Jan 13, 2004
7:33 am
34
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the hotbasic group. File :...
hotbasic@yahoogroups....
Send Email
Jan 13, 2004
6:09 pm
36
The program also demonstrates a littl eproblem with the QTimer/Timer in HotBasic. Each successive "pull of the handle" causes the wheels to spin faster and...
steven_basic
Offline Send Email
Jan 13, 2004
6:13 pm
38
ok, noticed ... least...
chordnl
Offline Send Email
Jan 13, 2004
8:11 pm
39
Long, long ago, steven_basic, a life form in far off space, emitted: Steve! Hi. Thanks for this program. I like the clear coding style and studied it in...
doctor electron
globalservices1
Offline Send Email
Jan 13, 2004
11:49 pm
40
... <snip> Steve: Now I love your program even more. It was a bug! I had a typo in the disable section and now it maintains the same rate change. I will...
doctor electron
globalservices1
Offline Send Email
Jan 14, 2004
1:06 am
41
Below is an example with onkeyup, onkeydown, onmousup,onmousedown, onclick Only the onclick events return callback params Please help, I want to detect, the...
chordnl
Offline Send Email
Jan 14, 2004
8:31 am
43
Hi chordnl, ... No you're not. There is so many events occured but your only provide a small space to show it. So, it refresh too fast and you did't see them. ...
Don
don67geo
Offline Send Email
Jan 14, 2004
9:46 am
44
Thanks Don, I want to detect which key is pressed in the editbox. Which event do I have to filter?...
chordnl
Offline Send Email
Jan 14, 2004
10:12 am
45
Can someone help me to explain to detect events and act on it + on onkeydown,onkeyup detect if e.g. the a key has pressed + on onmousedown detect which...
chordnl
Offline Send Email
Jan 14, 2004
11:01 am
47
... Quoting from Microsoft's win32.help, we have WM_COMMAND wNotifyCode = HIWORD(wParam); // notification code wID = LOWORD(wParam); // item, control,...
doctor electron
globalservices1
Offline Send Email
Jan 14, 2004
1:41 pm
49
I'm sorry but it's not working, I think the problems is whithin hotbasic!! gr. Cor Quoting from Microsoft's win32.help, we have ... because ... WM_COMMAND"...
chordnl
Offline Send Email
Jan 14, 2004
2:27 pm
50
Jim, edit.handle is every time 4 higher then lParam edit.handle lParam 2312 : 2308 lParam gives always the wrong handle sub checkevent ...
chordnl
Offline Send Email
Jan 14, 2004
2:46 pm
52
... I see no reason to suppose that hotbasic is has any problem there. You test for something, it is not there, and no message is displayed. Seems all is...
doctor electron
globalservices1
Offline Send Email
Jan 14, 2004
5:24 pm
53
... Hi Cor, much food for thought. Does the EDIT control work OK? Maybe we have discovered something here, but I'm not sure what! Warm regards, jim ...
doctor electron
globalservices1
Offline Send Email
Jan 14, 2004
5:28 pm
54
Long, long ago, chordnl, a life form in far off space, emitted: Cor, ... Just a guess, but MOST, if not all, WM_COMMAND (check uMsg) messages come from the...
doctor electron
globalservices1
Offline Send Email
Jan 14, 2004
5:46 pm
55
Jim, The best way to prove that hotbasic is ok, come up with a simple example. e.g. to check if a enter key was pressed based on the .onkeyup and .onkeydown...
Cor de Visser
cor.devisser@...
Send Email
Jan 14, 2004
6:03 pm
59
... This is my finding, also. However, .color does change the background color of other members of the BUTTON class: CHECKBOX, RADIOBUTTON and GROUPBOX....
doctor electron
globalservices1
Offline Send Email
Jan 15, 2004
2:40 am
62
add keycode for encrypt and decrypt methods, which make it more difficult to decrypt it from other hotbasic and other users. Otherwise it would be very easy to...
chordnl
Offline Send Email
Jan 15, 2004
12:26 pm
63
Help is welcome Gives an error when compiling dim myarray(20) as string myarray(0)= "1" myarray(0)= "2" myarray(0)= "3" myarray(0)= "4" myarray(0)= "5" ...
chordnl
Offline Send Email
Jan 15, 2004
1:17 pm
Messages 3 - 63 of 17149   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