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. leit0050

    Old versions of builder

    Oh Man! There was a lot I discovered with this project that won't work in Codegear 2007. It is nearly complete now. First off, the Borland Database Engine is horrible. Switching to ADO was the best bet. I also ran into truble with Report Printer Pro, now Rave reports because they had...
  2. leit0050

    Model View does not work

    Hello, Does anyone know how to force a model view refresh? Someone told me that in visual studio you can delete a few files and that will force the app to refresh. Is there anything similar in builder? For normal projects, I get a nice refresh button. However, since this was an upgrade...
  3. leit0050

    String Evaluate/Modify is Killing me

    Thank you for getting back to me. That does seem to help some but it still doesn't work. If I just try to type in "cat" and do modify, the evaluate/modify window will show "cat". However, in the local variables window, it will show the string containing {""}. If I click on evaluate, the...
  4. leit0050

    String Evaluate/Modify is Killing me

    OK, I have C++ builder 2007 and the evaluate modify is driving me insane! I know I can do cntrl F7 on any integer value, click evaluate, type in the new value and do modify and everything is perfect. For some reason, I cannot do the same thing for a string. For example if I have a...
  5. leit0050

    ADO exception catch

    hello, I am migrating from BDE to ADO. I have the following BDE Code try { Session->GetTableNames(database->DatabaseName, "", false, false, TableList); if (TableList->IndexOf(TableName) >= 0) { retVal = true; } } catch(EDBEngineError &e) { } delete TableList; return retVal...
  6. leit0050

    MDI FormShow Event and Constructor order of execution

    Hi, I don't think I phrased the question quite right...because I posted the wrong information. The MDI function OnShow is called which is aliased as the event FormShow in my program. For an MDI program, when is OnShow called? Also, I don't even see anywhere in the program where they use...
  7. leit0050

    MDI FormShow Event and Constructor order of execution

    Hello, OK, so I am upgrading from a program that was built on C++ builder 4 and I am using builder 2007. I am curious that I may have something wrong with the settings in my IDE because this program is behaving differently than the original. Essentially, I am working with an MDI...
  8. leit0050

    ->Height property and->width property

    Hi, I have confirmed that ->Height and ->Width are indeed the sizes of the windows. My problem is coming from a different location which I will make a new post for.
  9. leit0050

    ->Height property and->width property

    K, Let me dig into it and see what I come up with. So far, the debugger is doing strange things unless I'm not using it properly (which is a possibility :) ).
  10. leit0050

    ->Height property and->width property

    Hi, This should be a very basic question. On a groupbox on the form, for example TGroupBox *GroupBox1; if I do someVar = GroupBox1->Height; I should get the value of the height of the goupbox as drawn on the form, correct? This is confusing me because I'm upgrading a project that uses...
  11. leit0050

    General SQL Error, out of memory

    You cannot just substitute one for the other, there is some overhead associated with the change.
  12. leit0050

    Access violation rtl100.bpl

    Hello, I've been working on a package from an old legacy project. To my understanding, the package creates a red colored button...maybe more. I had to change the package to get it to build. Once that was done, I installed the package by using Component->Install Packages and added the...
  13. leit0050

    2007 debugger always prompts for .pas

    Hi, I know I didn't have the files for 2007 but somehow this has gone away. I've changed several things to get it there though....
  14. leit0050

    General SQL Error, out of memory

    Hi, Thanks for the help. Actually, what was causing the error was that I was using an old project that used driver MSACCESS. This became outdated post access 97. The BDE is very cumbersome now when I think that it should not be. It appears to currently require you to setup a...
  15. leit0050

    General SQL Error, out of memory

    Hi, Sure, I'll also provide a little more background info. Basically, this was an old access 97 database. I now have access 2003 on my machine. I left the database alone and get this error. If I upgrade the database, I still get the same error. The database is not very large at all...
  16. leit0050

    General SQL Error, out of memory

    Hello, My project is using the BDE (borland database engine) and when I get to the point where the database object is set Database->Connected = true; an exception is thrown by the debugger that states 'General SQL error. Out of Memory.' does anyone know what this means? The alias...
  17. leit0050

    2007 debugger always prompts for .pas

    Thank you that will really help me out.
  18. leit0050

    2007 debugger always prompts for .pas

    No, I've searched for them all and I do not have this set. I do have other pas files however. This is an old legacy project and I don't know if it would be referencing these somehow. How would I check?
  19. leit0050

    2007 debugger always prompts for .pas

    Hello, I'm trying to debug an old project. When I add a break point the program will execute up to that breakpoint fine. At that point if I do trace, step over, or step into I get prompted for several *.pas files. Google leads me to believe *.pas is a pascal/delphi extension. Why would...
  20. leit0050

    Please Help VCL35.bpi and VCLx35.bpi

    This I all understand. Here is my question. How do I change and where do I change what package it is looking for. Under project, options, packages it doesn't list this, only the correct vcl and vclx libraries! Is there somewhere else that this is supposed to change? I am using several...

Part and Inventory Search

Back
Top