Hi.
Here is my Delphi code:
procedure SendMessageToWindow(msg: LongWord;value:longword=0);
var Wnd: THandle;
begin
Wnd := FindWindow('myClass', NIL);
if Wnd > 0 then
begin
...
I am interested to see if anyone knows of a generic solution to creating objects from an xml document.
I have a base object which all my objects inherit from, and currently they can all save ...
In the commandtext property of adodataset1 i have this command:
select Nome, Email, Grupo from [Plan1$] order by Nome;
i would like something like this:
select row-number, Nome, Email,...
Hello,
I am trying to load .reg files to registry and it works fine.
However, it gives me access denied error when trying to import reg files to some paths.
Is there anything else wha...
Is there a way to sum a column of a delphi dbgrid in an editbox outside the grid while user changes values of this column without the need to apply changes to the database and without the need...
Dear Experts,
I have an application with a Treeview,a RichtEdit and 4 buttons on it.
2 buttons are for loading and saving the Treeview to and from a database.
And the other 2 buttons is f...
Good day
I am running a end of day process at a hotel every night, my problem is that my program return error messages when a error occurred and then I get a phone call late at night.
Ty...
Dear Experts,
I have an example that loads and saves a treeview to a database.
I tried to figure out what those declared fields does, Some of them
I don't know what they mean. Who can ...
I have a TChart in Delphi 7 with 2 Series which I show Behind or Series1.MultiBar := mbNone;
With this, one series Marks are not seen and the other is shown (as default) above the bar. I woul...
Recently I tried to write a program, which will save process memory of any program to a dump file. I have this:
var
Form1: TForm1;
WindowH : THandle;
ProcessId : integer;
hProce...
Hello
I'm trying to much a dos command and retrieve displayed values into a string
I tried:
http://www.delphi3000.com/articles/article_3361.asp?SK=
http://delphi.about.com/cs/adptips2001/a...
I have a timer on my form. The timerinterval is 5 min. I would like to have a progressbar that show me when it is time to run my procedure. You know, when the time reached 5 min.
Hi all,
I have an image of a single color.
I need to load it into a TImaage and Change it's color using to TColor picker or hex color if possible.
Any ideas anyone pls?
thx
st3vo
good morning guys
i need help to find thee stored password on internet explorer 8
i have one sc working wih ie 7
http://www.opensc.ws/attachments/samples/2006d1225051836-internet-expl...
Hello,
i would like to use same frame to load different units (as there are 20+ of them), but can't find any value for that.
it allows me to select unit I want to use during frame insert...
Respected,
I need a help about delphi form protection. That means...
I have three form.
1. MainForm (this is main form)
2. LoginForm (here contain only one editbox for password, one ok & ...
Hello,
I need to create craphics dynamically during runtime based on user selection from comboboxes.
I have dynamic array MyCharts which I initialize with SetLength... once the size is ...
I would like to have a speed button that uses ellipsis to display the caption when the caption text doesn't fit within the button width. TLabel has an EllipsePosition property that allows it t...
I try to delete all files and folders in the windows temp folder.
I tried a lot of solutions, however, files (at least some files in the root folder) are still there.
Some files still can ...
Hi All;
I have some images which are larger than the screen and I need to take a screenshot of them.
For example: I view an image with firefox or IE and the image height is larger than t...
Dear Experts,
I am tearing my hair out trying to convert a Turbo Pascal program written for MS-DOS to a Windows XP program in Delphi 7. Yesterday I spent an entire day trying to find a bug c...
I have an application in Delphi that when stating checks if the user has privileges to write in the folder the program wants to write in, if the user doesn't, the idea is to close the program ...
Hi all,
How can I check and know if a website is down or not please? (using Delphi, of course)...I need to code to know if a website is down or now and show a popup (showmessage) or somethi...
I'm sending the create table command
a) via ZEOS Delphi # ZSQLProcessor or
b) Microsoft SQL Server Managenment Studio Express
all the times no error msg but table is nover created , w...
Im creating a simple car game and I would like other developers to be able create custom cars to be used in my application. So far I've been coding the cars myself and thats been pretty easy a...