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 TouchToneTommy 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: *

  • Users: ZoneVM
  • Content: Threads
  • Order by date
  1. ZoneVM

    Code Completion Slow

    And I mean really slow. I've searched and found links pointing to an article at bcbdev, but the link is dead and I haven't been able to find the content anywhere else. Does anyone know what the secret is to making code completion work in less than 10 seconds or so? Thanks!
  2. ZoneVM

    Clicking too fast for database update...

    I'm having an issue where I am trying to keep a database up to date with a form, i.e. when a user clicks an item on a check list, the database is updated. The problem is that when a user checks and unchecks a box too fast, the form and the database do get out of sync, and an exception is...
  3. ZoneVM

    Progress Form

    In my C++ Builder 6 application, I have a form which performs lengthy computations / work and reports status back to the user. The user has the option to cancel as well. What I'm shooting for is something like the "Compiling..." dialog that pops up when you run a project from the IDE. My form...
  4. ZoneVM

    Customizing Components

    I'm looking for a bit of a nudge in the right direction... I have a need for a ListBox where each item can be a different color. Ideally, each item could have a glyph of some sort attached to it as well, just a little symbol sort of thing that would reflect the status of the item at a glance...
  5. ZoneVM

    Choosing a DB...

    Which DB to use... -------------------------------------------------------------------------------- I am developing a desktop app for commercial purposes. I am using C++ Builder / Delphi. I need to use a database that: 1. plays well with C++ Builder - I plan on using ADO 2. has reasonable...
  6. ZoneVM

    EInvalidOperation on ShowModal()

    I get an EInvalidOperation exception thrown when I call the showModal() method of one of my forms. The form is not in my auto-create list, i.e. I create this form using f = new myForm(args....) and then I call: f->ShowModal(); Everything used to work fine until I added a TDateTimePicker...
  7. ZoneVM

    Exception problem

    I have the following method in my code: bool TDefineEventForm::isValidTime(String time) { try { if (time.Length() < 7) { return false; } time = time.Trim(); int colPos = time.AnsiPos(":"); String hr = time.SubString(0,colPos-1); String...
  8. ZoneVM

    Newbie Newline question

    I'm new to Borland C++ Builder, not so new to programming... I'm trying to create multiline formatted output in a memo box, but it doesn't recognize the escape characters. How does one do this? Also, and more directly my problem I think... I don't have a good reference for finding things out...

Part and Inventory Search

Back
Top