Search results

  1. B

    "Object variable or With block variable not set" error??

    Hi, I have an Access 2000 db and I have a form (called "Progress") that displays progress while code from another form is doing a large amount of processing. I update this form by calling some of its Public subs, for example: [Forms]![Progress].Setup min, max, step 'where Setup is a Public...
  2. B

    Dealing with Access 2000 "not responding"??

    Hi again... I posted this question to a couple of other forums and some wonderful person suggested using DoEvents() This works like a charm, and I thought I'd post the answer back here in case anyone comes across this my post when they are having similar problems....
  3. B

    Dealing with Access 2000 "not responding"??

    Hi there, I have been having the hardest time with displaying a progress bar in Access 2000. My "progress bar" is actually just slightly modified version of the non-control progress bar sample posted here: http://www.access-programmers.co.uk/forums/showthread.php?t=69362 (I am so grateful...
  4. B

    Inserting a line into a text file in alphabetical order

    hi bjackson... I did just as you said and it worked perfectly! Thanks so much for the advice :)
  5. B

    Inserting a line into a text file in alphabetical order

    Hi, I was wondering if anyone knows off-hand a good algorithm to insert something in alphabetical order? I have a text file that has information on each line in alphabetical order. Sometimes additional info needs to be added, and needs to be written to the right line to keep everything in...
  6. B

    Problem with EOF when there are returns or spaces at the end of the file

    Thank you so much Wayne!! That worked perfectly, I really appreciate your help :)
  7. B

    Problem with EOF when there are returns or spaces at the end of the file

    Hi there, I am doing an access db and here is my problem: I have text files that are all in this format: "some kind of text" filename "some more text" filename2 "blah blah" filename3 ... I have to go through these files line...
  8. B

    SELECT from text that contains characters other than letters...??

    Hi again, I'd asked this question in a couple of other forums, and someone answered and I thought I'd post it here too, incase anyone ever reads this and wonders. The solution to my problem is this: "SELECT Speechfiles.Name FROM Speechfiles WHERE InStr(Speechfiles.Text, 'aero#')>0" Thanks.
  9. B

    SELECT from text that contains characters other than letters...??

    Hi There, I have a table in an Access db that stores information about speech files. One of the fields in this table is called "Text" and it contains the phrase spoken in that particular speechfile. These phrases often have characters such as the "#" sign at the end to indicate what tone of...
  10. B

    Populate combo box with values not stored in a table?

    Thanks so much RichO and Pat!!! I appreciate the help so much. I can finally move on from my little stumbling block :) Thanks a million!
  11. B

    Populate combo box with values not stored in a table?

    Hi all, I am brand new to these forums, pls forgive me if this thread is in the wrong place. I have a combo box on a form that I want to fill with values when the form is opened, but the values are not stored in any table (and they change based on info in other tables, so it wouldn't be...
Back
Top Bottom