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 SkipVought 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. JonJacobik

    Not all of my records - MSHFlexgrid

    I found the problem. An older version of MSHFLXGD.OCX was found on my development system - dated 6/24/98, when I renamed it, it forced the sytem to use a newer version dated 5/22/00. Now it works just fine. Was their a VB update I missed?
  2. JonJacobik

    Not all of my records - MSHFlexgrid

    I am using MSHflexgrid - but here's the unusual I discovered today. My development machine will only load about 2000 lines, but running on a Win 98, same code loads 9000 lines without blinking. The XP machine simply stops after 2000 records. - in code or compiled. Jon
  3. JonJacobik

    Not all of my records - MSHFlexgrid

    I have flexgrid problem. Code seems to work perfectly, but the flexgrid only loads about 2000 of 11000 records. Is there a property limitting the number of records in a the recordset? Here's the code that makes it all happen: sConnect = "Provider=Microsoft.Jet.OLEDB.4.0;Persist...
  4. JonJacobik

    "Provider can't be found" Message

    Just a note to say thanks. I've fought a very similar problem for about 3 weeks. . .following your directions exactly solved the last problem I had before shipping. . Thanks again. Jon Jacobik Donna Halper & Associates Results2K3 Music Scheduling System
  5. JonJacobik

    Jet / db version?

    After some additional testing, I see that your code works perfectly. Now I need to work through the process of adding tables, etc. It looks like a major job to get it all together. Seems one of my tabledefs coincidentily was called "CAT" and there was a bit of a conflict when I first...
  6. JonJacobik

    Jet / db version?

    Thanks but . . . I get an error when the code executes - meaningless, it reads Error -2147467259
  7. JonJacobik

    Jet / db version?

    I've been using this line to create a new database in my software. It creates a database using Access '97 /Jet 3.5 format. Set plist = CreateDatabase(filename, dbLangGeneral, dbVersion30) What do I need to do to update my database to 2002, 2000, Jet 4?
  8. JonJacobik

    Stop me if I've done this before

    I love one word answers. Thanks.
  9. JonJacobik

    Animation stops when reading db

    Add a DoEvents command to every loop in your db access code.
  10. JonJacobik

    Stop me if I've done this before

    Is there any way a VB6 application can detect if another instince of the program is already running?
  11. JonJacobik

    VB developement platform? Win 98, 2K, XP?

    I've been using a Win 98 platform for my application development with VB6 with the expectation that it will install with less hassel on Win XP or Win 95 platforms. Is it time for me to move forward? Are there any advantages or disadvantages to developing and distributing my application from...
  12. JonJacobik

    Data Report / Problem assigning a Percentage in Textbo (DataField)

    Multiply the variable by 100 to get rid of the decimal num=num*100 a$=left$(str$(num),5) 94007 make it a string, 5 characters long a$=left$(a$,5) get the value of the right most digit and the second digit from the right. Test for rounding. Put it all back together again using as a string...
  13. JonJacobik

    filecopy fails. Any ideas?

    Err is never greater than zero. Try some other technique for you do loop.
  14. JonJacobik

    Getting Window Focus on CR Window

    My application used Crystal Reports (Ver 7) to generate a list of data items - sending the report to a window using the destination=0 property. The report generates correctly but my VB MDI Parent/child forms insist on pusing the CR window to the back and that's useless to the user. Is there...
  15. JonJacobik

    Window position w/ Crystal Reports

    My application used Crystal Reports (Ver 7) to generate a list of data items - sending the report to a window using the destination=0 property. The report generates correctly but my VB MDI Parent/child forms insist on pusing the CR window to the back and that's useless to the user. Is there...
  16. JonJacobik

    A small blemish on my forms

    Thanks. That Picture property was looking for a bmp.
  17. JonJacobik

    A small blemish on my forms

    I suspect the answer is obvious, but I can't figure out what is causing a small icon to appear in the upper left corner of several forms. I can't highlight it, I can't delete it, and it shows through on the finished product. It's a 1/4" square gray icon with 2 green dots, a red dot and a...
  18. JonJacobik

    Progressbar not in a form

    Use a picture box and load graphics that indicate the progress. Load a different picture at 25%, 50% 67%, etc.
  19. JonJacobik

    Break a sting into variables

    STR() assumes it's operating on a number, not a string value - drop the STR and You will should have it working.
  20. JonJacobik

    Methods of accessing Access database data.

    Here are the commands you will need: set db=opendatabase("YourDB.MDB") set opt=opentable("access tablename") additional tables: set xyz=opentable("access tablename") each field is addressed as opt("Fieldname")or xyz("fieldnametoo") You'll...

Part and Inventory Search

Back
Top