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 Mike Lewis 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: *

  1. dlstapleford

    Professional File System (PFS) database

    No, I didn't get an answer yet but I got a copy of the program. Just haven't had time to work with it. I'll post if I find an answer to my question.
  2. dlstapleford

    Please help with Type Mismatch error!

    I tried both ways. I did get it to work with an alteration but I don't know what the ramifications are. I changed: "Dim rstClone As Recordset" To: "Dim rstClone As Object" Do you know why it works now and didn't then?
  3. dlstapleford

    Please help with Type Mismatch error!

    This code is from a book but when I try to use it, I get a type mismatch error every time. I did call the function as described below. The error occurs on the line that says, "Set rstClone = frm.RecordsetClone" Public Function DisableEnable(frm As Form) 'To call the function set the...
  4. dlstapleford

    Where did the shape control go?

    Isn’t there any shape control in VB.Net now?
  5. dlstapleford

    How to change the boarder width of a textbox or other control?

    Does anyone know how to change the boarder width of a textbox or other control? This would be for Windows forms not web related forms.
  6. dlstapleford

    How to export PFS and import into Access 2000?

    Does anyone know how to export a Professional File System (PFS) database (a 12 or more year old database program) to a comma or tab separated value file or some other database format that Access 2000 can read? I am unfamiliar with the database and its files. I haven’t even seen it yet but I...
  7. dlstapleford

    Professional File System (PFS) database

    Does anyone know how to export a Professional File System (PFS) database (a 12 or more year old database program) to a comma or tab separated value file or some other database format that Access 2000 can read? I am unfamiliar with the database and its files. I haven’t even seen it yet but I...
  8. dlstapleford

    How to click a control on another form?

    How can I click a button on a subform form from a button on the main form? For instance if I click Delete on the main form, I want it to also run the code in the OnClick event for a button located in a subform.
  9. dlstapleford

    Dynamically change the placement of control(s) on a report

    Does anyone know a way to dynamically change the placement of control(s) on a report based on data from the report source? For instance, if the field “Side” had the value “Right” then the textbox control “Name” would print on the right (say, at 3.75”)? If, in the next record read, the field...
  10. dlstapleford

    Generic Search

    In this example it would display the full name of all the records that contain "smith" as the last name or is part of the last name.
  11. dlstapleford

    Generic Search

    I guess I need to be more specific. In the textbox someone would type in something like “Smith” then tab over and select the field within which to search. One would select the field via a combo box that would list field names from a table. The result would display in a listbox.
  12. dlstapleford

    Generic Search

    Does anyone have any ideas for the code behind this scenario? I would like a text box in which one would type a search criteria and then next to it a combo with a list of fields to search on.
  13. dlstapleford

    Application inside width?

    I know how to get the inside width of my form but how can I get the inside with of the application window. Basically, when the form is maximized, what will be it's width?
  14. dlstapleford

    resize to entire screen

    I work with these properties: Me.WindowHeight Me.WindowWidth Me.InsideHeight Me.InsideWidth I use them to dynamically move and size controls when the form is maximized. WindowHeight and WindowWidth sounds like what you want.

Part and Inventory Search

Back
Top