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 IamaSherpa 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. ColTomb

    Debug Builder 6.0 Personal

    2ffat, Thanks for your interest and your help. FYI: 1. I re-installed Builder 6.0 and that made no difference. 2. I started over (fortunately I wasn't terribly deep into this project) and it has cured many problems. Another malfunction I had was with defines working. There were probably even...
  2. ColTomb

    Debug Builder 6.0 Personal

    I've got some major problem. That code SHOULD execute with either the shortcut or clicking on the menu item but it doesn't. I get NO code execution with a simple buttonClick, either. Some code works, some code does not. Maybe that's why I cannot debug properly such as F4 "execute to this...
  3. ColTomb

    Debug Builder 6.0 Personal

    Here's a piece from a menu that uses a shortcut that won't execute at all (caption doesn't change): void __fastcall TF1::mnuEditNewSrchClick(TObject *Sender) { Button1->Caption = "HERE"; } //---------------------------------------------------------------------------
  4. ColTomb

    Debug Builder 6.0 Personal

    Sir, Thanks for your assistance. I didn't know about this function of the IDE. It is in FULL DEBUG mode. I've just tried different things and it makes no difference. Yes, the code is being executed (mostly). I can see that a function is being called by the intended results but when I imbed...
  5. ColTomb

    Debug Builder 6.0 Personal

    I can't get it to do much of any debugging. I'd start with F4 (run to cursor) but it doesn't stop. There are a host of other problems, too. Any ideas (maybe I should re-install) ?
  6. ColTomb

    Move to the end of a TDBGrid

    Sir, Many thanks for the tutorial - it has opened up a whole lot of flexibility for me while I re-write my INVOICES program. Last thing: how do you open the "CODE" window when you post a reply ? Cheers !
  7. ColTomb

    Move to the end of a TDBGrid

    Sir, Thanks for your assistance. #1 worked fine (you already knew that!). For #2 I get a "not accessible" error. I've read the help on this error but I don't understand it.
  8. ColTomb

    Move to the end of a TDBGrid

    1. I have a TDBGrid that loads a bunch of records. When it's done, it shows the first record at the top of the window. I wish to code it to move to the last record in the list. I could either set the focus on the last record or move the scroll bar. Suggestions ? 2. When I click on a row, how...
  9. ColTomb

    Dialog Pop-up box/window?

    -after you use the MessageBox you need to clear the original (wrong) text and set the focus back on the edit box for new input: TextBox1->Text = ""; // sets it to 'nothing' TextBox1->SetFocus(); // waits for input at the box (again)
  10. ColTomb

    Moving the Text cursor to a new box.

    After your code enables the next box, try: Perform(WM_NEXTDLGCTL, 0, 0);

Part and Inventory Search

Back
Top