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

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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 2952 - 2990 of 17146   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2952
... Right! With due respect to RapidQ, it also has MEMCPY. In HB, MEMCPY is but one example of procedures done locally with the HB .lib -- NO API call. For...
doctor electron
globalservices1
Offline Send Email
Nov 1, 2004
8:11 am
2953
Hello Taplang Thanks for taking a look at HBide, and your feedback. I have now corrected the search routine, and I do believe I know what is causing the...
Philip Bister
philip.bister@...
Send Email
Nov 1, 2004
1:36 pm
2954
That's great news I have a lot of webdatabases to test with gr. cor...
chordnl
Offline Send Email
Nov 1, 2004
2:44 pm
2955
Hello I have now posted HBide v1.16. This release corrects the issues reported by Taplang, and introduces two re-colouring options: F11 re-colours source code...
Philip Bister
philip.bister@...
Send Email
Nov 1, 2004
5:25 pm
2956
Is it possible to create a screensaver *.scr program with HB. I need this to start a .scr and immediatly close the the screensaver. gr. cor...
chordnl
Offline Send Email
Nov 2, 2004
10:23 am
2957
How to send data to keyboard buffer?...
chordnl
Offline Send Email
Nov 2, 2004
11:02 am
2958
http://support.microsoft.com/default.aspx?scid=kb;EN-US;q79212 gr. cor....
chordnl
Offline Send Email
Nov 2, 2004
11:22 am
2959
How to generate mouseevents? So that operating system thinks that mouse e.g. has moved. gr. Cor...
chordnl
Offline Send Email
Nov 2, 2004
12:00 pm
2960
I have found mouse_event API call I try experiment with it gr. cor...
chordnl
Offline Send Email
Nov 2, 2004
12:26 pm
2961
The following code is working: This will generate every 3 seconds a leftmouse click whereever you are. gr. cor $apptype console $typecheck off $symboltable off...
chordnl
Offline Send Email
Nov 2, 2004
12:33 pm
2966
Hello HBide v1.17 now posted! Improvements to colour coding as you type and fixed a bug that prevented highlighting text by using shift+down cursor key. Text...
Philip Bister
philip.bister@...
Send Email
Nov 2, 2004
4:22 pm
2970
Hello Philip, Tested v1.17 and it feels more solid than the previous. However, I found two bugs--one a bad one, although, I believe, not too hard to fix. 1....
taplang
Offline Send Email
Nov 2, 2004
7:01 pm
2971
Hello, Philip! You wrote to "Hotbasic" <hotbasic@yahoogroups.com> on Tue, 2 Nov 2004 15:37:37 -0000: PB> Hello PB> HBide v1.17 now posted! PB> Improvements to...
Andrew Shelkovenko
diakin2002
Offline Send Email
Nov 2, 2004
7:57 pm
2972
... Neat! Now one can make Windows simulation tutorials, desktop macros, or remote system control apps, depending on your fancy. =)...
pinoygabs
Offline Send Email
Nov 3, 2004
12:28 am
2973
Anyone know how to send ascii text to the default printer, even if it is a network printer (not on lpt1)? TIA Tom S....
tcslonaker
Offline Send Email
Nov 3, 2004
1:46 am
2974
... LPRINT works by opening "lpt1" as a FILE. In short, "com1" and other devices may be opened as a FILE and FILE write methods used for output (and read...
doctor electron
globalservices1
Offline Send Email
Nov 3, 2004
2:30 am
2975
... From win32.hlp: The WriteConsoleInput function writes data directly to the console input buffer. BOOL WriteConsoleInput( HANDLE hConsoleInput ...
doctor electron
globalservices1
Offline Send Email
Nov 3, 2004
2:41 am
2976
... hmmm. I hear a little voice saying, "Make a LPRINTDEVICE statement." Maybe: LPrintDevice "not_lpt1" Then subsequent LPRINT statements would direct to...
doctor electron
globalservices1
Offline Send Email
Nov 3, 2004
2:51 am
2977
... Cor, in my WriteConsoleInput code in previous reply, I think Buf is supposed to be one or more INPUT_RECORD structures, not a simple character (!) like I...
doctor electron
globalservices1
Offline Send Email
Nov 3, 2004
2:54 am
2980
Run the code below and you will see that top=10 from titlelabel is not displayed at the correct position. it is displayed half the form left=working ok or am...
chordnl
Offline Send Email
Nov 3, 2004
9:19 am
2981
... Hi Cor. height=?? is omitted and the default height is used. Since LABEL text defaults to vertical-centered, the text appears lower than what you probably...
doctor electron
globalservices1
Offline Send Email
Nov 3, 2004
9:51 am
2982
create cColor as colordialog end create Hex$(cColor.color) generates a 4 bytes value like : 000000FF I think this must be a 3 bytes value. e.g. I want to...
chordnl
Offline Send Email
Nov 3, 2004
11:15 am
2983
Hello Cor, ... You are right on two counts. HEX$ always produces a 32-bit hex string of length 8; and rgb values are 24-bit. Thus, HEX$(rgb_color) should...
doctor electron
globalservices1
Offline Send Email
Nov 3, 2004
11:53 am
2984
Jim, I now use left$(reverse$(hex$(cColor.Color)),6) Not correct. You are 3 for 4! Think of the value for one color -- a two-character hex string. In general...
chordnl
Offline Send Email
Nov 3, 2004
12:17 pm
2985
... For fun here is a faster routine to convert rgb -> bgr: Declare function rgb2bgr(rgb as LONG) as string 'code function rgb2bgr(rgb as LONG) as string ...
doctor electron
globalservices1
Offline Send Email
Nov 3, 2004
12:21 pm
2986
To early in the morning! Correction to my function: function rgb2bgr(rgb as LONG) as string defint x ASM mov edx,rgb: ASM xor eax,eax ASM mov ah,dl ;red ASM...
doctor electron
globalservices1
Offline Send Email
Nov 3, 2004
12:31 pm
2987
Hello Taplang I have now posted HBide v1.18, which corrects the two defects you reported. Thanks for testing the ide. Philip...
Philip Bister
philip.bister@...
Send Email
Nov 3, 2004
5:12 pm
2988
To Andrew Thanks for the info on RichEditWndProc. Philip...
Philip Bister
philip.bister@...
Send Email
Nov 3, 2004
5:13 pm
2989
Great, Could this be a default function in HB? Thanks gr. cor...
chordnl
Offline Send Email
Nov 3, 2004
8:55 pm
2990
Thanks Philip, Works fine now. Thanks. Two suggestions though, if you don't mind: 1. You might want to add a Replace function in your Search. (I think all code...
taplang
Offline Send Email
Nov 4, 2004
3:10 am
Messages 2952 - 2990 of 17146   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