Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
~21.8K People Reached

24 Posted Topics

Member Avatar for happygeek

It's 32-bit. I have some expensive applications that will not run on 64-bit systems. Also, the industrial controls folks (automated plant operations) paniced when Microsoft talked about eliminating XP and forcing everyone to move to 64-bit OS's. They said that for them that would be equivalent to another Y2K.

Member Avatar for XP78USER
6
10K
Member Avatar for golden1prince

I know, this is an old thread, but it just helped me out. I'm keeping an old Compaq Win98 laptop alive so I can take it on trips so I can off-load my photographs to it. Thanks.

Member Avatar for Michealruggles
0
509
Member Avatar for m610

My first Java post, as I am finally trying to learn a little Java, and am doing it the hard way, which is by trying to read other people's code, using Google, and the ww3 web site. It's not that difficult to learn what individual commands and all do, but …

Member Avatar for masijade
0
379
Member Avatar for killhha
Member Avatar for Turtle85
0
307
Member Avatar for m610

This must be an old problem whose solution must have been posted many times, but I can't figure out how to phrase it for Google. Anyway, I have a TPanel-like component that has a TLabel-like component on it, and the TLabel thingy fills the whole client area of the TPanel …

Member Avatar for m610
0
120
Member Avatar for revski

I can't say what the best method would be. I'm looking into that myself now except I want to use a dot grid like you see on forms at design time. I'm going to look at the code for TForm to see how Delphi did it. You might try that. …

Member Avatar for m610
0
237
Member Avatar for m610

How to do it? I'm using *.dir in my filter and this does the job of getting OpenDialog to display only directories, but it seems I still have to select a file to select a directory. Is it possible to use the OpenDialog to select a directory? Using ExtratFilepath does …

Member Avatar for BitFarmer
0
4K
Member Avatar for m610

I've had this problem on several versions of WIndows, Win 2000 for sure, Win NT I think, and also XP. I use Desktop Explorer in a Mac style to copy, delete, and move files around. Each folder opens in a new window, and I drag icons around. Problem is, after …

0
104
Member Avatar for m610

I guess I should be embarrassed to ask this, but Help seems to be misleading to me, so it's not my fault. ;) I'd like to enter a series of binary numbers in a component I am working on. Delphi's Help (see below) says all I need to do is …

Member Avatar for weinelb
0
1K
Member Avatar for WABUno

Odd. I print to mine all the time and don't do anything special because it is a USB printer. Likewise, printing to network printers or even Acrobat works using code similar to yours, except of course for the content. Could it be something else, like page offsets, or line/font color, …

Member Avatar for WABUno
0
140
Member Avatar for BorlandNoob

I guess we missed your 30 min deadline. How about defining a set of characters that are all vowels, consonants, punctuation, etc., then running through the string and check is each character is in any of these sets? Check the syntax, but it would go something like: Vowels=[A,E,I,O,U]; for i:=1 …

Member Avatar for m610
0
97
Member Avatar for turbomen

Delphi has a function called Power that does this. Are you interested in only working with integers? You could always do something like for i:=0 to n do X:=X*X; Write(IntToStr(X));

Member Avatar for m610
0
91
Member Avatar for killhha
Member Avatar for FlamingClaw
0
1K
Member Avatar for m610

I've got a project where I need to draw a a series of bitmaps then save each as a frame in an AVI video, but the drawing process takes too long to reliably do this at the frame rates I want the video to have (25-30 fps). I've seen and …

0
56
Member Avatar for anandkrishnantc

In Delphi the font height in included as a property of TFont. H := -Font.Height; And is related to the font size (points) and the ppi of your screen. Check Delphi Help's info on TFont. Unless I missed something. This seems to be a basic concept. No offense.

Member Avatar for m610
0
201
Member Avatar for satrix36

I'm guessing you were getting an access violation error, which usually means you are trying to access properties of an object that has not yet been created. Has form2 been created already but has been hidden or visible:=false? For encryptions, depends on how secure you need it to be. Some …

Member Avatar for malditcha87
0
563
Member Avatar for m610

I'm having a little trouble shutting down a thread that might or might not be executing when the program closes. The thread, actually there are two of them, is started in an OnTimer event, and in OnDestroy I stop the timers then I want to close the threads. The thread …

Member Avatar for m610
0
324
Member Avatar for anandkrishnantc

Or a simple try... except...end block such as [code="Delphi]function IsInteger(MyString:string):boolean; begin try Result:=true; strtoint(MyString); except Result:=false; end; end;[/Code] IntToStrDef sounds easier. ;)

Member Avatar for anandkrishnantc
0
178
Member Avatar for m610

I've got a lot of text to display in an app I am working on. I know that this eats of resources so I'd like to put them somewhere else, like maybe a file that I stuff into the resource file, if that is possible. Also, I'm thinking to the …

Member Avatar for jsosnowski
0
159
Member Avatar for m610

I'd like to be able to send a text message to a person from the program I am working on. I've been researching on the web and found a few code examples that according to the comments sometimes worked and sometimes didn't. I've also found some very capable looking software …

Member Avatar for LizR
0
109
Member Avatar for m610

A day or so ago I got thoroughly stuck solving a frustrating problem in my little program that somehow has grown to 14000+ lines of new code. It turned out to be an issue where creating a from would change my data before I could display it in the form. …

Member Avatar for m610
0
420
Member Avatar for m610

I'm finally getting around to using COM+ in Delphi 6 Pro, and I need a little help. My COM+ components palette has a TCOMAdminCatalog component, but it seems to be missing the other two, TCOMAdminCatalogCollection and TCOMAdminCatalogObject. How can I get them back? Did I ever have them? I've got …

Member Avatar for ebi1
0
231
Member Avatar for ashikkalam123

Won't using a negative number make the start menu open up just before you click it? ;) There are so many things that one can adjust in Windows that it is a shame that these aren't offered during Windows install, starting with basic things like the desktop style, some explorer …

Member Avatar for tiger86
0
173
Member Avatar for m610

After using my computer for a while (desktop) Explorer starts acting up and sometimes will crash and restart itself. By acting up, what usually happens is that when I open up a Window in Explorer parts of the menu might be missing, or not all of the window is painted, …

Member Avatar for caperjack
0
81

The End.