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 bkrike 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
  • Content: Threads
  • 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

    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 =...
  3. dead7

    clear clipboard

    How do I in VBA clear the clipboard contents. Clipboard.clear keeps throwing the error object not found
  4. 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...
  5. 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...
  6. dead7

    Crieria in Messagebox

    How can get a criteria or refrence to be in a msgbox.
  7. 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.
  8. 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.
  9. 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?
  10. 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
  11. 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
  12. dead7

    VB Code for Setting Timer

    I need code for setting the timer in visual basic, a sample will do.
  13. 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
  14. 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...
  15. 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?
  16. 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?
  17. 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.
  18. dead7

    Open a form only if recordcount &gt; 1

    Trying to have a form open only if the recordcount is > 1. does this look right or am I off base. The field Im concerned with is a claim# field. If there is more than one claim then an additional form should open if theres more than one claim, thats why Im using the recordcount. If...
  19. dead7

    Stop form from saving Rec or Undoing

    I have a form that when you open it it saves the record, How can I stop it from doing that if I dont want the record saved I tried If IsNull([BENE_NAME]) Then Me.Undo End If Is there a save record false or maybe onclose event to say dont save the current record unless a field is filled in
  20. dead7

    reports more than 2 or more pages

    How Can I build a report that is bigger than the allowed 22" in the detail. I have a bunch of detail that is only in label boxes and some pages only have labels on it.

Part and Inventory Search

Back
Top