Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. kes103

    Code to double click associated file. load program and open file

    Ooops! Solved it. You have to use the ParmStr() function. And the parameter or index for the associated file is 1.
  2. kes103

    Code to double click associated file. load program and open file

    Thank you, TonHu. Could you provide some sample code.
  3. kes103

    Code to double click associated file. load program and open file

    Thank you Prattarat. But, how can I get my program to tell if it was opened by a doubleclick on an associated file?
  4. kes103

    Code to double click associated file. load program and open file

    I would like to find out how to code my program so that it will load an associated file after it is double clicked. That is, after double clicking the file the program loads and then opens the file that was double clicked. I know this must be very basic coding for someone. Thanks in advance for...
  5. kes103

    'System Error. Coe 1410. Class Already Exists.'

    Well, I figured it out or remembered it on my own. The problem is in the include and library files directory in the project options. Needs to be set to find the vcl and object files. I think it is the default settings that work.
  6. kes103

    'System Error. Coe 1410. Class Already Exists.'

    2ffat, were you able to download? If so, any revelations from reviewing the two different sets of files?
  7. kes103

    'System Error. Coe 1410. Class Already Exists.'

    OK, 2ffat, you can download the two (2) different project files here: http://www.kcesco.com/Project1.zip I did some searches and see that other people have experienced the problem, but no explainations or solutions were offered. I don't remember the happening before.
  8. kes103

    'System Error. Coe 1410. Class Already Exists.'

    Thanks, but they are already named differently... automatically... like Edit1, Edit2, etc. Is that what you mean by naming them differently? I think it has something to do with settings. It works until I try to statically link by unchecking the Use Packages box and the Use RTL box. And...
  9. kes103

    'System Error. Coe 1410. Class Already Exists.'

    I have been trying to compile and link w/o using packages. Some programs I have used in the past work fine when I unlick the packages option and use dynamic link options. But lately, I try this and when I put more than one TEdit Box (for example) in the form I get the following messge: Project...
  10. kes103

    COM files

    Can excel COM files be called or otherwise incorporated into a ForTran program? If so, how and would you provide a simple example? Thanks in advance.
  11. kes103

    vcl60.bpl

    Yes, FAQ101-189 has the answer. Sorry, I forgot to check the FAQ's. It is also in chapter 15 of the Developer's Guide.
  12. kes103

    vcl60.bpl

    I compiled a program using bcb6 and copied the executable to another computer and tried to run it, but got a message that program could not be run because the file "vcl60.bpl" could not be found. My question is how do I build or make the program so that it can run without the vcl60.bpl file?
  13. kes103

    Debugging and Access Violations

    What about Code Guard? Do you have that? It might work better than Dr. Watson, but you still have the problem of dealing understanding the log it produces. I don't quite understand it myself. Does anybody know of a reference with information on how to use and understand Code Guard?
  14. kes103

    How declare a variable global to use in two forms?

    Works best for me if I put the global variable(s) right after #pragma hdrstop #include <vcl.h> #pragma hdrstop //------------------------------------------- int GlobalVariable(s); //-------------------------------------------- USERES("Project1.res"); USEFORM("Unit1.cpp", Form1); WINAPI...
  15. kes103

    How declare a variable global to use in two forms?

    butthead, that doesn't seem to work for me.
  16. kes103

    How to print text to a bitmap

    The main problem is that when I either grab the form and shrink it or use the scroll bars to scroll past the text and image, it is all erased. The same thing happens if I click the minimize button. I don't want the user to be able to erase everything that easily. If I use TRichEdit Text I have...
  17. kes103

    How to print text to a bitmap

    Also, when I print or draw to the new form or to a bitmap and then use the scroll bar or resize the form the graphics disappear. How can I prevent this from happening?
  18. kes103

    How declare a variable global to use in two forms?

    It looks like you can also declare the variable(s) in the header file for the form instead of under the event where your main calculations are.
  19. kes103

    How to print text to a bitmap

    Well, yes, that works for now, but I think I would much rather use a bitmap as sort of a print preview type thing. I'm still a little confused on how that is done though. If someone could help me with I would be pleased.
  20. kes103

    How declare a variable global to use in two forms?

    onrdbandit, your approach works for me to bring an EditVariable or a Label, etc. "back" into scope, but how about other variables used in the form class, how can they be brought into scope?

Part and Inventory Search

Back
Top