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 Rhinorhino 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: daveonion
  • Content: Threads
  • Order by date
  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 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...
  3. 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...
  4. 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...
  5. 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
  6. 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
  7. 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
  8. 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...
  9. 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...
  10. daveonion

    Editing XML node issue

    Hi, I have an xml file (a subset is pasted below) which is created by exporting data from a dataset, i am trying to edit a certain Node based upon a criteria, the syntax used to find the node is as follows Dim nod As XmlNode = xd.SelectSingleNode("/Questions/[ColumnKey='" &...
  11. daveonion

    Dynamically creating stored procedure based on table

    Hi, I have created a stored procedure whose purpose it is to create a stored procedure based upon the table name passed into it. Basically what it should do is create an update delete and insert stored procedure for that table. see the code below. The problem i have is as soon as i put a...
  12. daveonion

    Multiselect ListView Without ctrl

    Hi, I am creating an app which will be touch screen, I have a listview and i want the user to be able to select, deselect items by clicking once on each item. The problem is currently you have to hold ctrl down to select multiple does anybody know how to do it without ctrl. Thanks in advance
  13. daveonion

    OnclientClick Databinder.Eval problem

    Hi, I have a javafunction which I am trying to pass a parameter using databinder.eval onclientclick of a button in a gridview, however i cant seem to get the correct syntax. See below OnClientClick= 'return confirmClose("<%#Databinder.Eval(Container.DataItem, "Recieved")%>");' Please advise...
  14. daveonion

    Role to enable the adding of users

    Hi, i was wondering if anyone could tell me what server role i should give a user to enable them to add user's to the server using the default schema (dbo). Thanks in advance
  15. daveonion

    Create user stored procedure using username as schema

    Hi I know this is a security problem but i am unsure which access i need to give the account, basically im running the stored procedure as below, exec('CREATE USER ' + '[' + @Login +']' + ' FOR LOGIN [' + @Login + '] WITH DEFAULT_SCHEMA=[dbo]'), however when a user runs it it will create the...
  16. daveonion

    Executing create user procedure schema problem

    Hi, I know this is a security problem but i am unsure which access i need to give the account, basically im running the stored procedure as below, exec('CREATE USER ' + '[' + @Login +']' + ' FOR LOGIN [' + @Login + '] WITH DEFAULT_SCHEMA=[dbo]'), however when a user runs it it will created the...
  17. daveonion

    Running Stored Procedure security error

    Hi, I have created a page which runs a stored procedure on sql server, this works on my local pc but once published i get an execute permission denied error, the page is set up to use integrated windows authentication so i am unsure why i dont have the required permissions. Am i missing...
  18. daveonion

    Checkboxlist not being picked up as control

    Hi I have wrote a simple function to clear all fields, in essence to reset the form, as below For Each ctl As Control In parent.Controls If ctl.Controls.Count > 0 Then ResetControlValues(ctl) Else Select Case (ctl.GetType().ToString())...
  19. daveonion

    Printing using registerclientscriptblock

    Hi, I copied a function to print out any control passed into it, however it uses Response.Write which after doing some research i discovered it is not compatible with Ajax update panels, i researched some more and discovered that you should now use registerclientscriptblock, however i am...
  20. daveonion

    Advice on opening Modal Window

    Hi, Just after some advice really on the best method to open a modal form based upon a value selected in a dataview. The modal form will open and populate with the data based upon what id is selected in the datagrid. I am reasonably new to asp.net however I have come from a windows vb.net...

Part and Inventory Search

Back
Top