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

    Clear databinding from multiple text boxes

    Hello, I have a form with multiple text boxes that are databound. Instead of clearing the databinding from each text box one at a time is there a way to loop through each text box and remove the databinding? It seems silly that I would have to go through like this...
  2. tman72

    Listbox issues

    I have 2 listboxes. The first one is loaded with data. I am loading the second listbox with data selected in the first listbox, using a command button. If I select only one item in the first list box, and click the button, the second listbox with show nothing, but if I select more than one...
  3. tman72

    set value in bound datagrid column from text box entry?

    I have a form with multiple text boxes and a datagrid. On the datagrid, if I click to add a new row, I want the columns to be blank and the user to fill in the values except for one specific column which should be the same for all rows and it is based on a text box on my form. Is this...
  4. tman72

    Report Recordsource

    Is it better to build a query and use that for a recordsource of a report or to set the recordsource using an SQL statement in code in the report's Open event? I use some reports based on queries and others use and SQL statements. Seems they work about the same speed. What are some other...
  5. tman72

    Text Box font color

    I have inherited an app that has different colored text boxes. I discovered this when one of the users of the app changed their desktop theme and some text in the text boxes remain black (which is what I want) while others are not. I checked in design view and some text boxes are set to...
  6. tman72

    Print an external image file?

    I have an application I wrote myself for finding scanned images and would like to be able to print these images from vb .net. (Long story short we are trying to go to electronic record keeping and store the hardcopy paper records off site due to limited space for keeping the originals) They...
  7. tman72

    Populate listbox based on combo box selection ??

    I have an access database of two tables. tbldistrict is one column that lists sales districts. tblreps has 2 columns, salesrep and district for that rep. What I want to do is fill a listbox with sales rep names based on the selection in my combo box for sales district. It's been a while...
  8. tman72

    combo box to find records on unbound form ADO

    I have an unbound form that displays records from an ADO recordset. Is it possible to have a combo box on the form to go to a record selected in the combo box? If so, how? I know how to do it with a bound form and have done it that way many times, but this is new ground for me and I'm lost...
  9. tman72

    Access 2003 forms based on ADO

    In access 2003 are forms based on ADO read only like they were in access 2000 or is this no longer the case?
  10. tman72

    Recommend against Autodesk Map 3D 2005

    In my use of Map 3D 2005, it has repeatedly crashed unexpectedly, at first I could not plot to our HP 1055cm plotter at all. Units that we set up do not hold and you must set them up each time you open the drawing. The service packs have addressed some of the issues, but some issues remain and...
  11. tman72

    VbNullString vs. If Not IsNull

    I'm wondering which method works the best for checking for null string values. Currently I have: If Not IsNull(txtmyvalue) Then 'Do something here Else 'Do something else here End If What is the difference if I did this instead: If (txtmyvalue)<>vbNullString Then 'Do Something here Else 'Do...
  12. tman72

    combo box on unbound form to search for records

    Is it possible to creat a combo box on an unbound form to search for a specific record? I am using Access 2000 and DAO 3.6 Thanks.
  13. tman72

    Service Pack for Autodesk Map 3D 2005

    Autodesk released a service pack for Map 3D 2005. It resolves many issues, including plotter issues for all HP 105* plotters. For more info, check out the autodesk website.
  14. tman72

    Display User's Full name

    I have a function that returns the user's network name, "UserName". When my users enter the database, I have a splash form that displays their network user name on that form. I have a table "tblUsers" with fields "fldUser", "fldFN", and "fldLN" that contains their network names, first name and...
  15. tman72

    Unable to Plot to HP 1055CM - Map 3D 2005

    I am running Win2k, AutoDesk Map 3D 2005 and unable to plot to our HP 1055CM plotter, but everything works fine on our HP 5500. Another user in the office here installed LDT 2005 and is having the same problem. If your plotter is an HP 1055 you may want to think again before upgrading until...
  16. tman72

    Autocad 2005

    Does anyone have input on the latest upgrade to 2005 either negative or positive? Any known bugs or compatibilty issues you have encountered with the new release? Any input is appreciated.

Part and Inventory Search

Back
Top