Jim I just mention this for a general bit of information more than anything else. On Vista with $xpstyle, gauge.forecolor (or .backcolor) are not working. The...
Philip Bister
philip.bister@...
Sep 1, 2008 1:26 pm
15758
Just disable xpstyle for the gauge and it is working declare sub SetWindowTheme lib "UxTheme" (hWnd1 as long,appname as long,sublist as long) ...
hbsetup has been updated, hopefully improving performance and solving some issues users have reported. Download and unzip into your HB directory. Cheers, Jim...
... Hello Cor, avi is an hotbasic supported resource... The avi file must be compatible, no sound, no compressed or RLE compressed. code example: (Don modified...
In trying to compile numlist one gets, In numlist.inc: Line 234 ERROR ret 8 ;unknown opcode asm ret 8 As as aside, Could the documents be updated with this...
... asm ret 8 is asm db 0c2h,8h,0 ;ret 8 ... The Manual states: "one can use an assembler to compile a one-line program to get the binary" Let's do it as an...
... Right, you have time to go shopping, take a walk around town, etc. If you want speed for random access, use the index.inc object or emmazle's superlist....
... For some data processing I've done, the Windows sort command is fast and probably hard to beat: SHELL "cmd /csort tosort.lst > sorted.lst" Even for very...
http://en.wikipedia.org/wiki/Merge_sort They have psuedo code and a diagram there. I attempted it and it's pretty simple, though I got stuck as to the best way...
... I've assumed, perhaps wrongly, that .obj modules, Windows APIs, etc, doing sorting by a variety of models, are readily available, since this task has been...
LOL I just reinvented the Field wheel. Didn't know it was there. That's funny. So much for all that glory. ... Field tests to be marginally faster too. A look...
CASUAL BROWSING MAKES U EARNING For more details please log on to https://www.ezinfocenter.com/9975066/CB PLEASE COMPLETE THE FOUR STEPS TO STEP UP YOUR FUTURE...
Emmazle, Might you consider looking at the sort function in NUMLIST. It doesnt seem to work at all. (I think you authored it, though your name isn't on it :) ...
when closing program from tray. There is always visible the icon of the tray. only if you do a mouseover over tray icon after closing the tray icon will...
How to create u110 CPU Detect as submenu of u100 Utils grCor CREATE m10 as POPUPMENU CREATE u100 AS MENUITEM Caption = "Utils" CREATE u110 AS MENUITEM Caption...
... A MENUITEM can only be a child of a MAINMENU, so make u100 a MAINMENU. A working example is in hotmenu.bas (HotToys) where mn2 is a MAINMENU, child of a...
... Would it work if the form's .OnClose routine: 1. made the form invisible 2. restored it (take it out of the tray) 3. terminated the app In short, try to be...
When you take outside the popupmenu it's not working, but it should or am i wrong, thats why i was confused to get it working Also, I want the when starting...
Hey Emmz, I wasn't sure if you were going to look at it, so I hacked out a sort routine in the meanwhile. It would still be nice to see numlist work though. ...