What do you think about Windows 7? Write a review or a how-to about Microsoft's newest product and earn unlimited points!

 

Having problems asking a question? Have a general question about Experts Exchange? Let us know!

 
Time Tested Delphi Programming Solutions: 176 - 200 of 7752
 
Okay, i have this forum at http://www.workshop-alex.org/ which is quite uninteresting. It's just for experimental purposes anyway. You can have a look, even register but don't think it's a ver...
What I need is a program that logs the files being accessed from my computer over a network. These are the files you see when looking at: Computer Managment -> Shared Folders -> Open Files   o...
Hi Everybody,  I'm using DELPHI 7, my problem is how to add images inside TimageList? I need to add JPG images and BMP too.. the image size is Width=100 and Height=100. By the way, how c...
I need to save a table to a file. I'm using ClientDataSet1.SaveToFile procedure, the problem is when the table has many records I get a "Insufficient memory for this operation" error message. ...
Can a comma delimited file, (*.csv) be viewed through delphi?  If so, what components, settings, and code are used?
the following code raise the runtime error (abstract error )  whats the problem ? var Txt:Tstrings; begin Txt:=Tstrings.create; Txt.add('some text'); // Error raised here Txt.free end;
I need this header converter to pascal so I can use it in delphi. It is an import library for some of the functions ntdll.dll (The windows 2000/XP native API). As an alternative, if you hav...
Hi! I've been using Delphi 2009 and am now testing Delphi 2010. When trying to compile a project, for some reason I get a "Missing operator or semicolon" error in the file attached, and can't...
If I have the Handle of a Window, how can I get the name of that window Seems like their ought to be a function called GetWindowName(Hwnd);  But I can't find it if there is.
Is there a command analogous to sleep() in Delphi 1.0?
Hi, it seems that I really have problems with Delphi... This is my situation:   ds := DataSet.Create;   ds.ReadXml('myFile.xml');   DataGridXML.DataSource := ds.Tables[0];   DataGrid...
For a program I need TUTIL32.DLL ver. 5.10. It's not on Inprise/devsupport, whre can I download it from. Joern
Hi Experts I'm trying to download a CSV file with a web browser controll in .NET. The thing is I want to by pass the File download Dialogbox and directly save the file to the file system. I...
Is there a function available just like the Sleep(..) in C? Besides Timer can we write a function to delay acurrately time?
INTRODUCTION ____________ In a recent question, I raised a question about whether or not a string variable is like a PChar variable.  My understanding was that they are different and that st...
How can I get integer value from Trackbar1.Position?
Hi all, I am new to Delphi but am migrating from VB.  It is a big change.  I have a program that pulls Zip files from a CD (it gets this list from a Access 97 Database) and puts then in a d...
I've converted a Microsoft DDE server sample application from C++ to Delphi. My Delphi DDE server works well in Windows9x connecting to Excel 97. But it does not work with Windows XP connect...
Hi ! Has anyone already used delphi 7 & openCV ? i would like to implement something like the blobtrack sample which is provided with openCV in delphi.
I have the following code in a compiled delphi dll.   library wavelet; uses   SysUtils,math,Windows; type      aa1=array[0..1000000] of single;      ar=^ aa1; var   MyArr:ar; ...
I'm trying to insert the ' character into a string, but how do I escape it so delphi does not read it as a string terminator? IE: string := 'This is a 'test' string.' String would then r...
How do I immediatly terminate a Delphi application in formCreate? application.terminate does not immediatly termiantes an application.
Ok, so I'm getting very frustrated with something that should be simple. Combining an AnsiString and a ShortString. Sounds simple? Let's start with the short string definition:   TFileR...
Anyone got a working example of a dll hook, basically i would like to do something like get the handle of a program (at runtime) and then process the messages like wm_close or mouse click and ...
Hi experts, I need to encrypt string in MD5. I have Indy10 installed. Got IDHash and IdHashMessageDigest in the uses and have tried different codes and none have done anything. Could ...