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 SkipVought 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: Edd
  • Order by date
  1. Edd

    Problems updating a RecordSet!

    It sounds like the SELECT isn't finding the record that you are looking for. Try: rs.Open "Select * from Landlord where Landlord_Name='" & Trim(cboName.Text) & "'", adoconnection, adOpenDynamic, adLockOptimistic If Not rs.EOF Then rs!Landlord_Name = cboName.Text...
  2. Edd

    MSSTDFMT.DLL Class Registery problem

    I ran into that problem a while back. Try this: 1. Make sure the dll (MSSTDFMT.DLL) is on the system that you need to run your application on. 2. Run this shell command from within your app that calls regsvr32.exe followed by the dll name, so: [code]shell "C:\winnt\system32\regsvr32.exe...
  3. Edd

    Internet Transfer Control: Cannot get "POST" to work.

    I am trying to "POST" some XML stuff to a webserver, using the Internet Transfer control. When running the Execute command, with "POST"... the StateChanged event never occurs. Here is a portion of the code that I have: Inet1.Protocol = icDefault Inet1.AccessType =...
  4. Edd

    Highlight single cell in MSFlexgrid

    Try using the RowSel and ColSel properties. Adding the following code:[code] MSFlexGrid1.RowSel = 0 MSGFlexGrid1.ColSel = 0 [\code] will set cell (0,0) to be "Selected" and therefore highlighted.
  5. Edd

    How do I display a Word Document on my VB Form?

    Thank you. I'll try that.
  6. Edd

    How do I display a Word Document on my VB Form?

    I'm trying to open and display an existing Word document without starting the Word application. I simply want to display it as read-only in a window on my form. I would like to keep the Word formatting. I have tried reading the file line by line using Input, but since it's not a text file...
  7. Edd

    A Newbie Question

    When displaying the form using form.show, make sure to specify it as being modeless as in the following: Sub main() frmMain.Show (vbModeless) End Sub If vbModal is used, the form will not show on the task bar.
  8. Edd

    ADODC recordsource: changing the case of my strings!?

    (:I Yeah - I did mean: [code].RecordSource = pc_select[\code] I will try using Ucase to make sure the field entry gets capitalized, but it still doesn't make sense to me why the string in pc_select didn't match what was in .RecordSource. Thanks for the tips!
  9. Edd

    ADODC recordsource: changing the case of my strings!?

    I'm using the ADO data control. I build a string for my SELECT statement to look up a user name, such as: pc_select="SELECT * FROM user WHERE username='" & UCASE(username) & "'" I then assign pc_select to .recordsource: pc_select=.recordsource When running the program with...
  10. Edd

    Foxpro 2.0 problem with NT4.0

    I've recently upgraded from NT3.51 to NT4.0.  Now when I start my old Foxpro 2.0 application, I get the errors "Source Not Available" and "Too Many Files Open".  Any help/information would be greatly appreciated!

Part and Inventory Search

Back
Top