... Yes! Notice the use of a quoted string is needed if a ":" character (HB statement delimiter) appears in the pathname or switch. [I happily surprised that...
... I might add to the previous helpful replies that HB's RICHEDIT *is* a multiline EDIT and that all you have to do is use multi-line text: defstr lines ...
... Absolutely, yes!! And you might not use the native STATUSBAR object at all. Consider a LABEL (an instance of Windows STATIC) which we know, in HB's...
... Assuming above is true (I have not tried it), let's do some math: 1. With COMBOBOX .Edit=true, you seek to let MS Windows' combination of the COMBOBOX and...
The updated .lib file in the HB 5.4d fixes an problem with the APP.Path (alias PATH$) string function in the special case where a command-line argument is a...
Hello, In a very big application, I have troubles with literals strings. If I use variables everything is good ...??? The code is more secured with declared...
... You are lucky you are getting an app crash, since Fredrik's debugger can pinpoint the statement where the fault occurs. I suspect the problem will be found...
... In addition to finding the faulty statement causing the crash, try to do a file compare of your current source code with the last working version, to...
... If this is true (and I believe you), it is only a symptom of the problem. That is, by making a copy of the quoted string in the .data section of your...
... wrote: Hello Jim, ... Is this possible? I use numerous functions in a static library, normally the data section should not be overwrited... A linker...
... Sure! All one needs is a bad pointer. Let's say one uses memcpy to read/write ram and the pointer is not exactly right. Well, all those read/write...
... Aside from using Fredrik's debugger to find the statement causing the crash, one can use the "divide and conquer" method which is vary fast even for very...
... Yeah, we might call it the "BEEP if you are happy" debugging method. ... Hurrah! Hurrah! Another demo that the statement causing the crash is most often...
... Please try: =====combodir.bas create f As FORM end create dim cb as combobox cb.width=100 cb.directory(path$+"*",&H8010) cb.delitems zero 'remove "[..]" ...
Is there any way to update tray.tip when the application is trayed. It's not updating while trayed but if I untray it and tray it again it works, but I don't...
Hi to all HB freaks Only want to let you know, that a new alternative TabStop handler is available in the files section. FILES/CODE CENTER/TABSTOPDEMO.ZIP And...
... The address of your SYSTRAY object is the pointer ("handle") to the SYSTRAY structure used in NotifyIcon operations, such as setting the Icon, Tip, etc....
I'm trying to get two applications to talk to eachother like the sendmessage demo that someone wrote a while ago but I'm not getting this to work. Has anybody...
... Suggest combining code for udp_send.bas and udp_recv.bas (in HotTrial download) into one source code where the application can both send and receive...
... In the case of TCP packets, you need only one port, but more "structure" re establishing a bi-directional connection: 1. designate App1 as the server and...
I want to use the [X] to close on the top right corner for another purpose. That I am doing with OnClose. However, how do I change the popup tip from "Close" ...
Fredrick, I have created a server/client app based on Jims socket example. It works pretty well and is effective. I use Select Case for the different commands...