Download Top Ringtones For Your Mobile Do you want the latest Ringtone for your mobile? Download your ringtones, poly tones, mono tones, wallpapers, themes,...
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...
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...
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...
... 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 ...
... 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...
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...
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...
... 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....
... 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...
... 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...
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...
... 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...
... 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...
... 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...
... 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...
... 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...
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...
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@...
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@...
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...
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...
... 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...
... 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. ...