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 strongm 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. daveonion

    Default click event to all textboxes

    Hi, I have about 80 textboxes and when either is clicked I want to run a function passing through the textbox name. Is there a way to specify (without going into each individual textbox click event and entering the function) a global/default event for all of the text boxes. Thanks in advance
  2. daveonion

    Show adodb recordset in form

    Hi The thing is I don't have a query I'm using an ado record set directly from Sql Thanks
  3. daveonion

    Show adodb recordset in form

    Hi yeah I'm good thanks. Maybe in my post I was nt so clear, I have already tried setting the record set to the adodb record set, however I don't want to add the fields as the source could change. What I'm basically after is a replication of a .net datagrid
  4. daveonion

    Show adodb recordset in form

    Hi I have an adodb recordset which is a query on a table in sql server. I can loop through the recordset fine and view each individual field but what I actually want to do is just view it as a grid ie datagrid or datasheet. I can't seem to work out how to do this using Access, is it possible...
  5. daveonion

    Show data from adodb recordset in subform grid

    Hi, I haven't used access for a long long long time, but anyways what I am attempting to do is use a subform as datagrid and then show the data returned as a adodb recordset in the grid. The sql script will change so the user will basically be deciding which table they want to view. Is there...
  6. daveonion

    Windows Combobox search text that contains

    Hi, Does anyone know how to do a contains search on the the windows combobox as opposed to only retrieving those that start with the characters i.e. the auto append property. For instance currently if you type ap then it would return apple as it begins with ap but it wouldnt retrieve sap...
  7. daveonion

    Adding file to specific directory when publishing

    Hi, I am publishing an application, however when it is installed on a pc i want an additional xml file to be installed to the shared documents folder, i can't remember how to do it, can anyone advise. Thanks
  8. daveonion

    Tabtip.exe causes crash

    Hi I have vb.net application running on a touch screen which uses the Tabtip.exe. When that process is running the application crashes, has anyone else experienced this problem? Thanks
  9. daveonion

    WIndows XP Tablet

    Hi i'm just wandering if anyone has used windows XP tablet edtion. I have created an application which works fine on PC's with xp installed however on the tablet PC it hangs and appears to cause a cache leek, has anyone else out there ever come across this issue. Thanks in advance
  10. daveonion

    Application freezes on one PC

    Hi, The really strange thing is that this was working on that PC originally, but now as soon as the user clicks a datagrid the machine just stops working... I'll check the service packs etc. thanks
  11. daveonion

    Application freezes on one PC

    Hi tcsbiz, thanks for replying, i'm just wandering if you know of a way of debugging the application on the actual client pc. thanks
  12. daveonion

    Application freezes on one PC

    Hi, I have a windows application which is constantly freezing on one PC (running windows xp, we are using vb.net 2008) and then crashes, The event log returns the following error:- event viewer .net runtime 2.0 error reporting eventtype clr20r3 I was just wandering if anyone has experienced...
  13. daveonion

    Enabling Textbox In Datalist Client Side

    Hi jbenson001, I could be mistaken but the actual items within the datalist don't appear to have a childid property, when i debug the function and look at the properties available there is no childid property, please advise further. thanks
  14. daveonion

    Enabling Textbox In Datalist Client Side

    Hi Seaport thanks for all your help, my javascript is extremely rusty, the final solution is as follows function enableTextBox(obj) { var idCheckbox = obj.id; var idTxt=idCheckbox.replace("DL_Check","Txt_Dos"); var txt = document.getElementById(idTxt); if (txt.disabled ==...
  15. daveonion

    Enabling Textbox In Datalist Client Side

    Hi seaport, thanks again for your help. I think i'm really close now to cracking it as such. When i use 'this' and get look at the id it brings back ""ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolder2_Dl_MildModerate_ctl00_DL_Check" which when i place that directly as the txtid the mentioned...
  16. daveonion

    Enabling Textbox In Datalist Client Side

    Okay i've just realised i had var txt = document.getElementByID(txtid); (ByID) javascript is case sensitive so i change ByID to ById, it now goes past that line but returns a null object for txt.enabled = false, any ideas thanks.
  17. daveonion

    Enabling Textbox In Datalist Client Side

    Hi Seaport thanks for your suggestions I have tried enableTextBox(this), however it still returns the error'object doesnt support this property or method' Please advise further thanks
  18. daveonion

    Enabling Textbox In Datalist Client Side

    Hi I have created a datalist which is bound to a table, but it has 2 additional columns, one is a checkbox the other a textbox. When a user ticks a checkbox i want them to be able to type into the text box however the textbox should be disabled until they tick the checkbox. I have the...
  19. daveonion

    Editing XML node issue

    Hi tsuji, thank you for your help, you are correct as you know what you put works. The problem was me in the xml file i didn't have any status updated as 'Yes' Thanks

Part and Inventory Search

Back
Top