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 strongm 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: dead7
  • Order by date
  1. dead7

    format a field in a query string

    I have this field where it concatenates a bunch of fields with tabs between then. The DIAGNOSIS field I need to format to a certain way using this !@@@\.@@ basically putting a period 3 characters in. claimline: [DESCBETOS]![BETOSDESC] & Chr(9) & [ARGUMENT_CLAIM_LINE]![FROM_DATE] & Chr(9) &...
  2. dead7

    Loop Until gets to last record

    I am using ado access 2003, dao will not work I keep getting errors on that part
  3. dead7

    Loop Until gets to last record

    How do I say Loop Until I get to last record, I want to loop thru the records copying and pasting in to other app and stop when it gets to the last record I have this Dim stAppName As String Dim lngRetval As Long Dim dblRandomVariable As Double dblRandomVariable =...
  4. dead7

    slow a code down

    caution, where do I put that in my code
  5. dead7

    clear clipboard

    How do I in VBA clear the clipboard contents. Clipboard.clear keeps throwing the error object not found
  6. dead7

    slow a code down

    I have this code and it runs this winbatch program. I want it to loop thru the records in this subform. But its running to fast, I thought the timerinterval would slow it down but it is not working. Also when the code gets to the last line when I want it to stop where theres a false (its a check...
  7. dead7

    Controlbox on a form

    I want a made control box on a form with the next previous last and first record buttons, which I can do. but between them I would a txtbox that has the current record number and one for the total records like Record |< < 1 >| >| >* of 4 I need a text box that gives me the current record...
  8. dead7

    Crieria in Messagebox

    How can get a criteria or refrence to be in a msgbox.
  9. dead7

    Copy a string to the Clipboard

    I need to copy a string to the clipboard in vbcode, so it can be retrieved later in my code to go to the clipboard and get it.
  10. dead7

    Accessing the clipboard thru VB

    How can I access the clipboard thru vbcode to see if there is something on there or its null.
  11. dead7

    convert a date to a string

    I have a date field that need to be converted to a string in a public function. Does anyone know how to do that, [DATE]. I am getting a data type mismatch. or can I reference a field from a form in a public function like dim forms!formname!fieldname as string, probably not?
  12. dead7

    Concatenate with tab character between columns

    Can I concatenate columns in a database with a tab between each column. If so is there a special tab charater to use. sort like this column1<tab>column2<tab>column3
  13. dead7

    Is sapiSleep a system routine

    Can you confirm that sapiSleep is a system routine? like in this example... Sub sSleep(lngMilliSec As Long) If lngMilliSec > 0 Then Call sapiSleep(lngMilliSec) End If End Sub
  14. dead7

    VB Code for Setting Timer

    I need code for setting the timer in visual basic, a sample will do.
  15. dead7

    IsOpen function

    I need a code that tells whether a form is open if its open then I want to close it. ie if Isopen(frmR) then close end if this isopen does not work
  16. dead7

    Connect Access to an Imaging Program

    I need to connect Access to an Imaging program, which we have not selected yet. I have a database with a primary key field in every table that ww want to link to a folder and list of documents for the key field and have if retrieved in the viewer. Basically we'll have a form were the primary key...
  17. dead7

    Take away the X to Close an Access Database

    Can you take away the X in the top right corner to close a database?
  18. dead7

    Can Not Delete a record

    I can not delete a record out of a table that has turned into what looks chinese writing. I get this error "The search key was not found in any record" This seems to be happening quite a bit. Is there a fix for this?
  19. dead7

    Need to Show only the FIRST record in a filtered form

    How do you only show the first record in a filtered form if you get back 2 records that are the same.

Part and Inventory Search

Back
Top