Class Localtion: Home »» Delphi [Programming]
Delphi(Delphi list covers using Delphi in applications (C++, Word, Excel, PDAs) as well as information and tips on coding and compiling.) under "Programming"
Need procedure to run/call 'someprog.exe' .
In delphi-en (AT) yahoogroups (DOT) com, "Rob Kennedy" <rkennedy@wrote:Bill Drummond wrote:By sorta like I meant, you could group icons by catagory, ieWindows,Imaging,Programing,Drawing ect. The list will replace theicons.Still don't know what you're talking about. Program Manager
Need procedure to run/call 'someprog.exe' .
In delphi-en (AT) yahoogroups (DOT) com, "Markus " <macnoz@wrote:2/13/07, Bill Drummond <billdrum@wrote:I'm trying to find a windows API call to execute another windowsprogram from my DELPHI program.ShellExecute:CreateProcess:-scroll down the page, this allows you to wait for the cal
Need procedure to run/call 'someprog.exe' .
I'm trying to find a windows API call to execute another windowsprogram from my DELPHI program. I want to replace all mi icons withdrop down lists, sorta like Windows 3.1 did it.
Need procedure to run/call 'someprog.exe' .
By sorta like I meant, you could group icons by catagory, ieWindows,Imaging,Programing,Drawing ect. The list will replace the icons.I can't find a reference to ShellExicute. I'm using Delphi 7.BillWhere did Windows 3.1 use drop-down lists where we use icons today?
Need new Delphi 5 license
Hello All:I find myself in need of another Delphi 5 license. Does anyone have apackage that they are willing to sell for a reasonable price. I amonly interested in purchasing a legal copy of Professional or Enterprise.Thank youjamieHome page:To unsubscribe: delphi-en-unsubscribe (AT) yahoogroups
Need help with GUI plugin
>>I have used class references before across DLLs - my own classes with no>>VCL components with success. ? I know that even to have Delphi long string types seen across DLL's you have to include sharemem.dll. This is due to the reference counting I believe. Same deal with the cl
Need help with GUI plugin
You can't pass class references to DLL's. That is a limitation. You have to use packages for full interoperability. This means compiling with the runtime packages option. That means your product has to make sure all packages needed (including Borland's) are on the users system. Da