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 Chriss Miller 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: DSTR3
  • Content: Threads
  • Order by date
  1. DSTR3

    FindFile By Time

    I'm using C++ with Windows 7. I'm trying FindFirstFile by time, and I want to find a file that is less than 20 seconds old. I have the find part I think, but I am having difficulty doing it by time. any help is appreciated. Thanks. HANDLE hFile; LPFILETIME lpCreationTime, lpLastAccessTime...
  2. DSTR3

    Progress Bar

    I want to run a Progress Bar in VB6. I need it to run for 40 Seconds and then close the Application. I put the Progress Bar on the form, now I'm lost. this isn't tied to any information or code running, Thanks DS
  3. DSTR3

    Copy File

    Hi, I'm new to VB...I'm using VB6. I need a command button to copy a file and place it into another directory... Copy C:\ProServ\DB\PS.mdb to C:\ProServ\BackUp It has to rename the file from PS.mdb to BU.Mdb and overwrite the previous BU.mdb file. Any help appreciated. Thanks DS
  4. DSTR3

    Numeric Alpha Field

    I have a field that contains data like this. 1 1a 1b 2 2a 3 3a 3b 3c etc... I need a DMax statement that will find the highest value of a series, then add the next alpha to it. For instance if I had a 3, the next value would be 3d, if it's 1 then it would be 1c. The Table is called called...
  5. DSTR3

    Setting a TextBox in a Variable

    I'm trying to set the value in a Textbox where the form name changes. I thought this would work. Dim stWhatForm as String Forms!stWhatForm!TxtBox = " & Me.TxtBox1 & " The problem is that the stWhatForm doesn't work. Help is appreciated. Thanks DS
  6. DSTR3

    SQL INSERT Date is Null

    I'm having a problem inserting a record if the date field empty, It only works if there is a Date in the Me.TxtDate, otherwise I get an Error. I tried this but, it doesn't work. Thanks DS CurrentDb.Execute "INSERT INTO Table1 (ID,DateF) " & _ "VALUES(" & Forms!Form1!TxtID & ", " & _ "" &...
  7. DSTR3

    Recordset Question

    I have this Recordset thing that is working but, being new to this I' thinking that this isn't exactly coded correctly. All of the fields are in the same record so I don't need to move to another record so tried taking out the Loop and MoveNext but it doesn't work. How do I code this...
  8. DSTR3

    Referencing a Field in a Table

    I'm trying reference a field in a Table. I think the problem is this... !Active.Value I'm not sure if this is the way to refernce the field. The field is Active in the SecurityDetails Table. If Active is -1 then Ctl is -1 If Active is 0 then Ctl is 0 Ctl is a CheckBox. Thanks DS Dim...
  9. DSTR3

    Saving EMail Attachments

    I'm using the following code to download EMails with VB6, but I can't figure out how to save an attachment. Any help appreciated. Thanks DS ' In general Declarations Dim received As Boolean Dim Message$ Dim sckError Private Sub Winsock1_DataArrival(ByVal bytesTotal As Long)...
  10. DSTR3

    Receive Email, Save

    I'm new to VB6. I need a simple solution to receiving an EMail and saving the attachment to a specfic directory. It has to be a stand alone application that I can bring up from Access. Something simple. Just a Download button and a Cancel button. Any help appreciated. Thank You DSTR3
  11. DSTR3

    Receive EMail

    I need a form in Access with a command button that I can click on that would let me a receive an email and save the attachment to a specified directory. Is this posible? Any help appreciated. Thanks DS
  12. DSTR3

    Set Decimal

    I want to have an unbound field where the decimal is set and the display reads. $0.00 So if I type in 1 I get $0.01 To make it $0.10 I would just type in 0....moving the 1 over. To get $1.00 I would type in another 0....so on and so forth. I need to do this, because I'm using a numberpad...

Part and Inventory Search

Back
Top