... Not that I am an expert but have you downloaded the latest upx version. It caused me a couple of false positives from time to time. Avast and AVG...
Hi guys. Here's a simple code. It's part of a bigger program. ' =================================== CODE START CREATE fnt AS QFONT Size = 11 Charset = 204 '...
... It's not your code and there is an easy work around for this. Remove the OnResize event and use the OnShow (see below). After the form has been initially...
... Hi! There is a simple work around: Just use CREATE ComboNum AS QCOMBOBOX Style = 2 ItemIndex = 0 AddItems "3", "10" ItemIndex = 0 END CREATE Oliver...
These answers were very useful, although they show some tricks :) I've thought about one more solution. I've moved the OnResize = ResizeForm before Showmodal ....
... Hi, This is indeed the solution: Always put your form events at the end of your form creation (right before the END CREATE command). I've had the same...
... You were right. I downloaded the latest UPX stable release... fixed. Now FreeQ will supports large format icons. And for that I will get you a "new Form"...
... RapidFRM v1.22 uploaded to Miscellaneous folder. Includes Color Chooser code in the form of an include (QColorDlg.inc). A temporary fix for QCOLORDIALOG. ...
Hi Lukas, Yes it is possible to have 2 listboxes (or 2 listviews) on 1 form and be able to drag & drop between them. I am sorry but I can not provide you with...
Newer alpha version uploaded. -Has a "new Form" button on the properties bar for the designer -fewer bugs, faster loading of projects, etc. -allows 48x48x256...
It took me about two weeks to research this so I hope you're as pleased about it as I am. I couldn't work out how dotNET programs achieved this because...
Hi, I have a question. Here's a Minimize-to-tray code. 1. Is there a way to start the program minimized to tray with NO TASKBAR BUTTON enabled (Hide taskbar...
... Hi Paul, It works indeed ! But are there any advantages using this method over the old method of including a manifest file ? And in case we'd like to...
... Are you sure this is documented? Searching for WindowsShell.manifest on MSDN didn't turn up anything that looked like it documented this file. Also, I...
... No, there isn't any documentation. That's why it took so much hard work. I can't test Windows 7 so that's useful to know but are you sure it's not just...
... It's just easier (call me lazy). You can include embedded or external manifests if you like. The heirarchy is:- ManifestFile overrides ManifestEmbedded...
... If it's not documented, it probably isn't a public interface. I'd recommend some other approach in case that manifest disappears. Who know, the next patch...
HGi thanks for your kind email. I amĀ just starting out to learn BASIC and am interested in RapidQ - and would be glad to have a few people to share my...
... Welcome Mike. My best advice to newcomers... don't be shy about posting any questions you have when you're unsure of how to do something (or if you're...
I am using a ResHacker command line to embed hi-res icons in my RQ programs, Now I might as well add manifest and VERSINOINFO into the program as well. But...
... HI! In my editor I'm also using ResHacker. For me the best soultion was to compile the .rc file to .res and then to add it to the .exe The .exe needs to be...
... yes this helps. Can I freely distribute resadd.exe and rescomp.exe with my IDE? (or is resadd = ResHacker) Where do I download these? Thanks! I was able to...
... Resadd.exe is in fact ResHacker. Rescomp.exe is Windows Resource Compiler, available with Microsoft Windows Software Development Kit (SDK) or with visual...