Search results

  1. skiphooper

    Saving User Data From App ????

    Hi Everyone, I have written an App that processes data from a scanning program. A Text file. The form has a tabcontrol on it with four ( 4 ) tabs. On tabs 2 thru 4 all the entry information is the starting position in the file then the number of positions for that field. The first tab has the...
  2. skiphooper

    Zip code table available for FREE use?

    I Would love a copy. Thanks for Sharing... Skip Skip.sbb@verizon.net
  3. skiphooper

    Credit Card Validation

    Hi Des, Another nice Sample, Thanks For Sharing Skip
  4. skiphooper

    email Invoice

    Mike, Thanks Again, Great Demo Skip
  5. skiphooper

    Do you need a Combo Box Sample - Free?

    Excellent - Very Useful Thanks Skip [This message has been edited by skiphooper (edited 04-30-2001).]
  6. skiphooper

    Class Modules ???

    Hi Mic, Thanks for the reply, I'll give it a try. Skip
  7. skiphooper

    Class Modules ???

    Hi Everyone, On a tabctl's onchange event there is no option to cancel. My question is this: Can the option to cancel be added to a tabctl ( on the onchange event ) using a Class Module, or is my understanding of what can be done in class modules all wrong. Thanks In Advance Skip P.S...
  8. skiphooper

    max number of check boxes allowed

    Hi In your forms openevent put: Me!optiongroupname.defaultvalue = "" Skip
  9. skiphooper

    max number of check boxes allowed

    Hi, Give this a try: '************************ Dim chkno As Integer 'hold checkbob count Dim Answer As Variant Dim ctl As Control chkno = 0 For Each ctl In Controls If ctl.ControlType = acCheckBox Then If ctl.Value = True Then chkno = chkno + 1 End If...
  10. skiphooper

    Does Acc2k allow tabs within tabs?

    Hi Willy, As far as I know, you cannot put tabs within tabs: As a work around you could create the sub tabs that you want and change the visible property to no. Put a checkbox or whatever else you want on the main page and on the onckick event put code that changes the sub tab pages visible...
  11. skiphooper

    Get last modified date for files.

    Mike, I found this at another site: http://www.mvps.org/access/modules/mdl0051.htm HTH Skip
  12. skiphooper

    Form coding question

    Hi, Try This: ' ************************* Dim chkno As Integer Dim Answer As Variant chkno = 0 If Check01.Value = True Then chkno = chkno + 1 End If If Check02.Value = True Then chkno = chkno + 1 End If If Check03.Value = True Then chkno = chkno + 1...
  13. skiphooper

    Help w/If-Then Statement

    Telco, The on change event occurs when the text portion of a combo box changes. You said you wanted to brind up the table when the user selects the combo box. I think you want you code executed when the user selects it, which should be the on click event. Skip
  14. skiphooper

    connect to access 2 tables

    Damo, If I understand you correctly, the Access/2.0 users need to get data from the Access/2000 App. If that's the case than ( and I could be wrong,) But I think that's not going to happen unless you export the 2000 data, and then import it to your 2.0 app. just like Access/ 95 and 97 can't read...
  15. skiphooper

    connect to access 2 tables

    Damo, Access/2000 supports Access 2.0 file formats for Import, Export, and Link. You should not have much trouble working with it. Once the 2.0 tables are linked you should be able to use it like any other table. here's the Microsoft link for the formats: http://sup...
  16. skiphooper

    Writing to a new Line in a text field

    Hi Anauz, Try adding & Chr(13) & Chr(10) after each line. ( Carriage Return Line Feed ) Skip
  17. skiphooper

    Test for existence of a network drive

    Hi Mike, I'm not sure this will help, but take a look at this site ( especially api section ) http://www.mvps.org/access/ Hope It Helps Skip
  18. skiphooper

    opening form so tabs show

    Hi Vicki, The reason the tabs don't show is because your tab control page size is larger than the screen will allow ( without inserting the vertical scroll bar ). Go in disign view and click on your tab control. You'll see a solid line around the area designated for your control. On the sides...
  19. skiphooper

    Reading text file as Binary

    Hi llkhoutx, Looks like I have my work cut out for me. Thanks for the reply. Skip
  20. skiphooper

    Reading text file as Binary

    Hi Everyone, I have the need to read a text file as binary. It's really a fixed length file, but because of the specs I can't use Input # or Line Input # . Each dept puts the file out according to their own specs. ( I assume it's got something stupid to do with politics ) Anyway...
Back
Top Bottom