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. tman72

    Enhanced Attribute Editor

    Autodesk hasn't been very good at resolving any issues the last couple of years. Their typical respince I've had is they are looking into it or it will be addresses in the next release, but they never do fix it. We are looking at moving away from Autodesk because of their expensive prices and...
  2. tman72

    Regex help

    Are you looking for regular expression help? Try http://regexlib.com/
  3. tman72

    I am trying to separate my App into 4 parts...

    You need to add a reference to the main app in your Proj2 DLL in order to get at the variables and procedures that are in the main app.
  4. tman72

    Money Regex

    Have you looked at Regexlib? You might be able find something someone has already created that will suit your needs.
  5. tman72

    Clear databinding from multiple text boxes

    Nevermind...I should have had my morning coffee earlier then I would have realized to do this... Dim ctl as Control For each ctl In Me.Controls If TypeOf ctl Is TextBox Then ctl.DataBindings.Clear() End If Next
  6. 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...
  7. tman72

    Easy Question about Data Set

    Try going through some tutorials or working through some examples first. Are you looking for someone to write the code for you? That isn't going to happen here.
  8. tman72

    Listbox issues

    Disregard - The problem was a corrupt listbox. I deleted, closed the project and created a new listbox and all is working fine. Thanks anyway.
  9. 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...
  10. tman72

    SID IMAGES

    You need to install the Raster Design Object Enabler for Land Desktop 2007. You can obtain this from the Autodesk website at http://usa.autodesk.com/adsk/servlet/ps/dl/item?siteID=123112&id=7176069&linkID=9240778
  11. tman72

    Access 2007, what is your opinion

    It will probably support VBA but if they made major changes then things may not work properly or may be disabled and the code will need to be re-written. Chances are there are some bugs that need fixing too. Do some testing. See if you applications work. You might find they are okay or they...
  12. tman72

    Database not reading value from DateTimPicker

    Not sure what to tell you. If you can test out your sql statement and it works, then I guess I am at a loss as to what is causing things not to update correctly.
  13. tman72

    Database not reading value from DateTimPicker

    I suspect there may be an issue with your SQL update command that was created by the wizard. Are you only updating records or are you creating new records, deleteing, etc. Each action has it's own command and associated SQL statement, but the wizard doesn't always know how to create them...
  14. tman72

    Database not reading value from DateTimPicker

    how are you inserting the value into the database? Through a data adapter insert/update or through a command you have built in code? Is the database field able to hold date information?
  15. tman72

    How do I sort the functions in my source code?

    For VBA I dowloaded a tool called MZTools and was able to sort all the procedures with it. For vba it was a free download. I seem to remember it was available vb or vb.net for a fee, but it has been a while so I am not sure of the availability or the price.
  16. tman72

    Database not reading value from DateTimPicker

    Try binding to the text property rather than the value.
  17. tman72

    set value in bound datagrid column from text box entry?

    Nevermind, I figured it out. I was trying to get too fancy, but when I broke it down, I got it to work the way I wanted to.
  18. 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...
  19. tman72

    Draw Order - Reordering

    Once you have sent the image to the back, you can simply do a regen and the image will go to the back again. This is an annoyance that Autodesk has yet to fix.
  20. tman72

    'Stand alone' Access in Office 2003 Professional

    You need Office Professional or a full version of Access 2003 in order to install and use the developer extensions. So the answer to your question is no, you would need to purchase the developer extensions. They are part of the visual studio tools for office.

Part and Inventory Search

Back
Top