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 derfloh 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: ep1
  • Order by date
  1. ep1

    Import Issue

    Thank you both Bob & Genomon, I went with a scripting function that used TextStream to solve my issue. I was unable to find anything on Allen Browne to fix any corruption and now I will go forward from here. Thank you again, Ep
  2. ep1

    Import Issue

    Genomon, I use memo because text errors out saying missing search key. I wanted Access to read it in the same order as the Text I then grab a flag(Y/N) in position 674 and return back to text form (again hopefully in the same order) with only the Y flag records which happens to be the vast...
  3. ep1

    Import Issue

    I have a text file that has 30K rows of data. I did search the site and I was unable to see that this issue has been discussed previously. The rows have data up to 700 bytes. When I import the file as a single memo field that has a width from 1 to 700 the beginning and end are exactly in...
  4. ep1

    Before update 2115 error on an unbound textbox

    Golom thank you for your attempt but that still results in: Run-time error '2115': "the macro or function set to the BeforeUpdate or ValidationRule property for this field is preventing Microsoft Acess from saving the data in the field." There are no Validation rule(s) or text with this...
  5. ep1

    Before update 2115 error on an unbound textbox

    Code: Private Sub txt_start_BeforeUpdate(Cancel As Integer) Dim strtext As String strtext = Me.txt_start.Value & " " If Len(strtext) = 1 Then Me.txt_start.Value = "01/01/2006" End If End Sub I have a scenario where a user erases the prepopulated date of today (using a format on...
  6. ep1

    How can I move the Taskbar with code?

    I have attempted to find a previous Thread with this question and have failed. Would someone please be kind enough to show me or point me in the right direction to move the Taskbar with code. Thank you for your time, EP1
  7. ep1

    What DLL/Library do I need to reference...

    Thank you all for your help. I was using VBA to build my mini-application I have since switched to VB6 and as you all said those Properties/Methods are included. Thanks again, EP1
  8. ep1

    What DLL/Library do I need to reference...

    Would someone please tell me what DLL/Library I need to reference so that my ComboBox has Properties/Methods of ".ItemData" and ".NewItem"? Thank you kindly for your time, EP1

Part and Inventory Search

Back
Top