Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for snurd

My search command is looking for a Part by it's description. The following code works great for an exact match search but I would like a code that will go to the closest match in the recordset. Any help will be appreciated.... Private Sub search_cmd_Click() Dim txtsid As String Dim …

Member Avatar for snurd
0
112
Member Avatar for hinks

hello everyone i need help with a search button for visual basic 6.0 however im getting a run-time error '3077' error Private Sub search_cmd_Click() Dim txtsid As String txtsid = InputBox("Enter The Staff ID In Lowercase", "Staff Search") If txtsid = "" Then Exit Sub If MsgBox("Would You Like To …

Member Avatar for snurd
0
99
Member Avatar for snurd

I need help to write the code to filter a Recordset called Data1 and a Field called AWEIGHT, when loading a form. I tried the following and it does not work. After the form is opened I only want to be able to search the filtered records. An example would …

Member Avatar for snurd
0
235
Member Avatar for snurd

I need to open the Worksheet exactly as in my shortcut target otherwise my other software I'm using can't find it. My Software will only update my cells if my shortcut is open. My Shortcut Target is: "C:\Program Files\Microsoft Office\Office10\EXCEL.EXE" "c:\Batch Records\ShiftRecords" My Shortcut Start in is: "C:\Program Files\Microsoft Office\Office10"

Member Avatar for snurd
0
86
Member Avatar for snurd

VB6.0 The following is how I open the Excel file, what I need to know is how to see if it is already open, and also a new Sub to close the file. [code]Private Sub Command1_Click() 'Place statement here to see if already open, if so then Goto 1 Dim …

Member Avatar for snurd
0
1K
Member Avatar for snurd

VB6.0: Writing an argument to see if an Excel file is already opened before opening the Excel file, because if the file is already opened the Excel file opens as read only. If it's already open I want to skip to the next "goto" label (ie: "File Already Opened"). Thanks, …

Member Avatar for aktharshaik
0
391
Member Avatar for snurd

I know how to open an Excel file with VB but I need help with writing an argument to see if the file is already opened, because if the file is already opened the Excel file opens as read only. If it's already open I want to skip to the …

Member Avatar for snurd
0
108