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

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 16520 - 16550 of 17147   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16520
Ping Dan. eknauf.com is blocking my email reply to ya! Cheers, Jim...
doctor electron
globalservices1
Offline Send Email
Jun 1, 2009
3:12 pm
16521
Download Top Ringtones For Your Mobile Do you want the latest Ringtone for your mobile? Download your ringtones, poly tones, mono tones, wallpapers, themes,...
knlgujkm_ykmguyj@...
knlgujkm_ykm...
Offline Send Email
Jun 6, 2009
6:06 pm
16522
Does anyone know how to detect if the maximizebox and minimizebox has been clicked? Thanks Philip...
Philip Bister
philip.bister@...
Send Email
Jun 7, 2009
1:34 pm
16523
... Running onmsg.bas (in HotThing), click of the minimize box gives these messages: 001601E8 00000215 00000000 00000000 001601E8 00000112 0000F020 006B0285 ...
doctor electron
globalservices1
Offline Send Email
Jun 7, 2009
3:31 pm
16525
I think one significant difference between HotBasic and some of the competition as to how they might be perceived by those not yet involved. Is the nature of...
Donald Darden
pc_doer
Offline Send Email
Jun 8, 2009
3:56 am
16526
... Hello Philip In your Onmessage proc, you can use: select case uMsg case &H112 'WM_SYSCOMMAND deflng MySysCommand=wParam and &HFFF0 'mask !!! if...
MANY PIERRE
pierrotstudio
Offline Send Email
Jun 8, 2009
7:53 am
16527
This is so user unfriendly. Why would someone need to be an expert in Windows system programing in order to be able to write humble Basic code ( i would...
Z P
chatnick_au
Offline Send Email
Jun 8, 2009
8:17 am
16528
Can anyone help solve this oddity? I use mouse over Form Hints in my Hotbasic program, and that works very well. I added the code to force the Form to stay on...
low_beer_light
Offline Send Email
Jun 8, 2009
11:50 am
16529
... Hello Mike, hbHint is the Tooltip handle ! create f as form showhint=true create b as button caption="button" hint="button" end create center end create ...
MANY PIERRE
pierrotstudio
Offline Send Email
Jun 9, 2009
7:54 am
16530
... OK, let's make it more friendly ... what would you suggest? ... in order to be able to write humble Basic code ( i would understand a C programmer having...
doctor electron
globalservices1
Offline Send Email
Jun 9, 2009
11:05 am
16531
... Hi MANY! You are the Man! That solved the problem. Thanks for the quick reply and for sharing. G.Mike...
low_beer_light
Offline Send Email
Jun 9, 2009
11:30 am
16532
Windows is a complex and convoluted environment, because there are many aspects to it. In a way, you seem to be suggesting that Basic should be totally...
Donald.Darden@...
pc_doer
Offline Send Email
Jun 9, 2009
10:25 pm
16533
Dear Doctor, Please accept this criticism as genuine comment about the state of a commercial product. I am not looking for an offering which will impose an...
Z P
chatnick_au
Offline Send Email
Jun 10, 2009
9:20 am
16534
... Accepted! In fact, HB's development has been guided by coders saying what they needed to get projects done! ... as documented in this forum, for example....
doctor electron
globalservices1
Offline Send Email
Jun 10, 2009
11:09 am
16535
Ok, Im back with another oddity: My Form has many edit windows and buttons. I use OnResize to launch this ResizeForm subroutine: SUB ResizeForm ...
low_beer_light
Offline Send Email
Jun 10, 2009
12:24 pm
16536
... I'm not exactly sure, but it seems from your results that it is a timing issue. Your resize routine has dozens of API calls (behind the keywords) to get...
doctor electron
globalservices1
Offline Send Email
Jun 10, 2009
12:55 pm
16537
... Hello Mike, in your onmessage proc, add this line:(it solve a similar problem for me) if uMsg=&H83 then 'WM_NCCALCSIZE ResizeForm end if Pierrot...
MANY PIERRE
pierrotstudio
Offline Send Email
Jun 10, 2009
1:41 pm
16538
Hello Many and Jim, Thanks for all your ideas. I tried all the suggestions provided and nothing helped. Doing some experimenting I discovered that when the...
low_beer_light
Offline Send Email
Jun 10, 2009
8:25 pm
16539
... Oh, that reminds me of another technique which every coder doing lots of updates to any visible object should know -- namely, turn off .ReDraw during all...
doctor electron
globalservices1
Offline Send Email
Jun 10, 2009
10:27 pm
16540
... I hope my latest "turn .ReDraw off" idea works for you. This is used with success in use of HBcolor.inc, which colorizes a RICHEDIT2 source code display in...
doctor electron
globalservices1
Offline Send Email
Jun 10, 2009
10:44 pm
16541
... Hello Jim, Again I appreciate your fast attention. Turning ReDraw off at the beginning then ON at the end causes humbug (jerky odd redraws). I think your...
low_beer_light
Offline Send Email
Jun 10, 2009
11:31 pm
16542
... Another idea I've seen in lower level code within a GUI system itself is to process only a fraction of the resize messages. Thus, a counter in the resize...
doctor electron
globalservices1
Offline Send Email
Jun 11, 2009
3:04 am
16543
... This is what is supposed to happen. Given the complexity of the number of items you have to redraw, you can only do it at intervals greater than that...
doctor electron
globalservices1
Offline Send Email
Jun 11, 2009
3:13 am
16544
Hello Mike, ... comment this lines the min form dimension can be controled in your onmessage proc: if uMsg=&H24 then 'WM_GETMINMAXINFO byref(lParam+24)=700...
MANY PIERRE
pierrotstudio
Offline Send Email
Jun 11, 2009
5:36 am
16545
Thanks to Jim and Pierrot for the informative replies to my question. It is very much appreciated. I took the time to look up WM_SYSCOMMAND in win32.hlp and...
Philip Bister
philip.bister@...
Send Email
Jun 11, 2009
12:16 pm
16546
... Readers might like to know that the Hot Windows page of my web site contains 14 GUI utilities all written in HotBasic, plus a few more apps for Win32...
Philip Bister
philip.bister@...
Send Email
Jun 11, 2009
12:17 pm
16547
Hello Jim, I discovered a small error with asm statement ex: -1 space beetween db and ": asm .data asm myasmvar db "aaa",0 asm .code no problem -2 spaces...
MANY PIERRE
pierrotstudio
Offline Send Email
Jun 12, 2009
1:54 pm
16548
Hello Jim, (Rewritten) I discovered a small error with asm statement ex: -1 space beetween db and ": asm .data asm myasmvar db "aaa",0 asm .code no problem -2...
MANY PIERRE
pierrotstudio
Offline Send Email
Jun 12, 2009
1:57 pm
16549
... Actually, only one space is allowed after opcodes per the Manual appendix and after data types such as "db". Examples: ASM .DATA ASM MyStr db "HotBasic...
doctor electron
globalservices1
Offline Send Email
Jun 12, 2009
3:49 pm
16550
... Hello Jim, Thanks. I noticed that by wanting to use a code written long ago which contained a double space... I was obliged to look why that did not work. ...
MANY PIERRE
pierrotstudio
Offline Send Email
Jun 15, 2009
5:05 am
Messages 16520 - 16550 of 17147   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