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 Mike Lewis 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. cyprus106

    how do you watch variable contents to debug?

    click on the variable and press Ctrl+F5. That will put the variable you're on in your "Watch List". If you want to watch another variable, press Ctrl+F5 on that too and it will add it as well. Sometimes that variable, however will be out of scope. For example if you've got the following code...
  2. cyprus106

    Dock ACROBAT in form

    Glad you got it taken care of! Watch your dependencies in a program with CppWebBrowser. I've had a lot of trouble in the past with that component and dependencies. Cyprus
  3. cyprus106

    The Handle is Invalid in IBMgr

    I already know WHAT this problem is... The Root Directory that the manager shows, it has a hard time reading. My problem is, it doesn't always do this on all windows machines, not even on all XP machines! I used the same CD to install the same thing on two identical computers sitting next to...
  4. cyprus106

    Any way to get IB to assign a key # automatically?

    Alright I just made a generator for incrementing the number, but I've got myself a problem! The following code generates a SQL error -104 Unexpected end of command CREATE GENERATOR SetKey; SET GENERATOR SetKey TO 100; CREATE TRIGGER GAMES FOR CUSTNUM BEFORE INSERT AS BEGIN NEW.CUSTNUM =...
  5. cyprus106

    Any way to get IB to assign a key # automatically?

    Perfect! Thanks jimbob! One question though, what's "<<sql used to generate the keyNumber value>>"? Cyprus
  6. cyprus106

    Any way to get IB to assign a key # automatically?

    I'm writing a program that uses IBase and I have a field set aside for a key number, but since so many records get deleted and created so often, it's been a real challenge trying to assing it key numbers myself. Is there any way for IB to assign a new record a key automatically in a designated...
  7. cyprus106

    Install older software on Windows XP SP2

    If you could give us a few more details, such as what the error is and if possible, what file is throwing it and we may be able to help further! Cyprus
  8. cyprus106

    Changing a neg # to a positive when selecting?

    I'm trying to show some data, and for a complicated reason, all of the integers in a particular field are negative. They're converted to positive in the program that uses them, but I'm using a SELECT statement to show the numbers, and I need them to be shown as positives (and realistically I'd...
  9. cyprus106

    BorderIcon &quot;Help&quot; button, figure out when it's clicked...

    If you find it let me know, but don't overextend yourself! I've done a few searches for a solution, but I can't find any information even close to this, and I can't remember any time I've heard this discussed before. And trying to use the word "help" in a search just makes it go nuts. Cyprus
  10. cyprus106

    BorderIcon &quot;Help&quot; button, figure out when it's clicked...

    Does anybody know of a way to figure out where/when, the Help TBorderIcon clicks? Or even when it's in "help mode" for lack of a better term. Reason: There's a few panels & things I'd love to have context-sensitive help for, but when the user clicks on it, even though there's a context, it...
  11. cyprus106

    Fastnet - Using a proxy with password

    Well it looks like FastNet is out of business, and I can't seem to find any relative documentation on this subject. I'm trying to log in to the internet using a proxy on a FastNet component (TNMHTTP). The component, however, doesn't have a place to put a user name or password for the proxy. I...
  12. cyprus106

    Grab Stock Market information?

    The thing is... I don't even know where to get the information to display! I remember seeing once a website that broadcasts stock information and anything can run out and grab it. I can't seem to find it now. Cyprus
  13. cyprus106

    Grab Stock Market information?

    Would anybody know how or where or have ANY information on grabbing some market information off of the web and getting it inside of an executable? I really don't even know where to start... Cyprus
  14. cyprus106

    Trim() feature not working??

    I've tried this a dozen ways and I cannot figure out what IB isn't liking about this... Can SOMEBODY please help?? SELECT * FROM BKMASTER WHERE Trim(LEADING ' ' FROM MISB) LIKE '99999'; It's whining about the ' '... I found in InterBase documentation that this is how you're supposed to do...
  15. cyprus106

    Better way of getting a table record?

    As of right now I'm using a SQLDataSet, DataSetProvider and ClientDataSet to grab a SQL table I've got. The table, however, is about 500,000 records, and any time I try to load it with a good old fashioned CommandType = ctTable, it locks down. I have been using a query, "Select * from...
  16. cyprus106

    Dock ACROBAT in form

    Check out QuickReport (A watered-down component set came with Enterprise edition, under the tab QReport. I'm not sure about the other two editions). They have a component for PDFs and they've got fairly good integration in my experience. http://www.qusoft.com/ Cyprus
  17. cyprus106

    I guess this is a rather simple SELECT question...

    I'm just trying to order some data correctly. In that respect, I've got the following SELECT statement... SELECT * FROM BKMASTER WHERE MATKEY='MCCOECO' ORDER BY MEDSTA ASC The thing is, there are only about 5 two-digit options for MEDSTA: NULL, "OE" "OP" "RT", etc. I want any records with...
  18. cyprus106

    bcbie60 will not DIE

    I've got a rather large project and at some point somebody threw in a TCppWebBrowser component (and then removed it sometime). Now when I put the program on test computers it asks for bcbie60.bpl. I didn't want that dependency so I unchecked it from the "Packages" option and took "bcbie" out of...
  19. cyprus106

    How to get version info?

    Good job! I just so happened to need the same thing today and had to do about 3 seconds of looking. Thanks! Cyprus
  20. cyprus106

    How to get embedded IBase Server

    I have a need to release a program (made in C++ Builder) that utilizes InterBase. However, I need the server embedded within the app. I've been using FairCom's c-Tree, which is a snap to embed, so I guess I'm just rusty. I could have sworn all it took was a dll, but I can't find ANY resources...

Part and Inventory Search

Back
Top