Long, long ago, pinoygabs, a life form in far off space, ... Others will have their methods, but I have often done this: $apptype console defsng singl_var ...
Long, long ago, pinoygabs, a life form in far off space, ... More GRID tricks: 1. MS Excel stores default 2 digit decimals (1.00) as integers x 100 (if...
... This is useful only when you print to the screen, but if I assign that to a gridcell which requires a string, it doesn't work. To prove my point, I've...
Long, long ago, pinoygabs, a life form in far off space, ... Gabs, I am not sure I understand. This works and prints "1.70": $apptype console defsng singl_var...
... Now it's okay. Sorry if my post was a pest, I thought there was a simpler way or function to do it, even that other problem I had with the alignment on the...
Long, long ago, pinoygabs, a life form in far off space, ... MS Windows offers a number of APIs to format numeric strings which might be tapped. Re alignment,...
Long, long ago, pinoygabs, a life form in far off space, ... I must be falling asleep! I followed by own suggestion and looked at HBguidef.inc and also ran...
... Hehe, I knew you would find that too. =) I've checked the hbguidef.inc since I started working on the grid per your suggestion and saw no stylebits there...
Long, long ago, pinoygabs, a life form in far off space, ... Right. I suspected you were already a step ahead of me (most HB programmers are). I even tried...
Long, long ago, pinoygabs, a life form in far off space, ... General reminder: Some Hotdude can write their own display at *any* time for *any* object with...
the REMmed out GOTO causes a jump to ALLDONE if unREMmed and you REM the next GOTO... ...why can't the CASE ELSE be the place to jump back to GETCMD? ...
Long, long ago, pinoygabs, a life form in far off space, ... Dear Gabs, My experience is that Windows controls on not uniform in their behavior regarding...
... That's actually a good idea, working with LISTBOX may be what I should be using for better data presentation and editing in my app. Thanks! ... Good point...
Long, long ago, pinoygabs, a life form in far off space, emitted: Dear Gabs! ... Alas, I have not yet internalized keywords for LISTBOX to make columns, but if...
... Hi Gabs, The LVS_EX_FULLROWSELECT is an extended listview-style which can be changed with the SENDMESSAGE statement. Example: $apptype gui $typecheck on ...
... Cool! Thanks, Alex. I really wanted to have this feature put into good use in my app, it could certainly help the user check full rows at a time when...
I just confirmed the single data type was written with different decimal values into a file or memory stream. I use a hex viewer to view the data value and...
... Thanks again, Don. Based on my HotTypes program result, I believe the value is "correct" given the defined value used and the limitations of the data type...
... I'm not really sure about this issue Doc. In accounting probably does not effected as they happy with correct 2 decimal points values. But in DirectX and...
... Your test program and my HotTypes program both show that you get 7 significant decimal digits and 8 with rounding, so apparently single provides more than...
... Don, the 7-8 significant decimal digits in SINGLE I described is *independent of the position of the decimal point*. All recent (last decade) PC graphics...
... Doc, I found it can be as long as double with the decimal digits. I'm also found a range of unchanged decimal values would hold when the round number is...
... I suggest "SIMPLY FPU by Raymond Filiatreault Copyright 2003" as a good source on floating (real) numbers in computing. [Raymond wrote the string-float...
Hi! I try speed test HotBasic, RapidQ Basic and QBasic Simple test here '------------------ $APPTYPE CONSOLE defint x color 15:locate 1,1:PRINT Time$ for j=1...
Long, long ago, Andrew Shelkovenko, a life form in far off space, emitted: Hi, Andrew, thanks for the posts. ... Right. LOCATE and PRINT rely of Windows OS...
... I test also string operation '--------------- $APPTYPE CONSOLE defint x: defstr a$ color 15:locate 1,1 print Time$ for j=1 to 1000: for i=1 to 100 ...
... I got this result: '32 sec' - HotBasic '45 sec' - RapidQ (My PC is P3-450Mhz, 128MB RAM, Win95B) But it's depend on how 'fresh' is your WIN resource is. It...
... In VB6.0: DefInt X DefStr A Sub main() '--------------- '$APPTYPE CONSOLE 'Color 15: locate 1, 1 Debug.Print Time$ For j = 1 To 1000 For i = 1 To 100 A$ =...