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

    Why isnt RowFilter working?

    HELP! I've been banging my head for hours on this. It seems that my dataview has no filter being applied after I've set the RowFilter property. I have the following: Dim daTransaction as DataAdapter Dim dsTransaction as DataSet 'Fill Transaction table of dsTransaction...
  2. Draug

    Bound Textbox - Database update problem

    Greetings, I have a textbox that is bound to a dataset. The dataset is populated by a data adapter which pulls data from a table in the database. When I change the value in the textbox, I cannot get that change to be recorded in the database. It looks to me like what I have done should work...
  3. Draug

    Textboxes - Similar event to TextChanged?

    Greetings, Is there an even similar to TextChanged that I can use that will fire when a textbox value has been updated? Let me explain the situation, and why I dont think TextChanged is adequate. I have numerous pairs of textboxes. One box for a metric value, and one for the corresponding...
  4. Draug

    Change Color in a Single Row of a Datagrid

    Greetings, I have a datagrid that is linked to a Datasource. When a record contains null in one of its fields, I want to highlight the whole row for that record in Red. Does anyone have an example to do such a thing? Thanks, Draug
  5. Draug

    DataGrid Formatting

    Greetings, I am new to VB, but have managed to slog my way through the formatting of a datagrid, mostly due to the information I have captured from many posts in this forum. Let me express my thanks to all those that offer words of wisdom here. I have my Grid looking pretty much how I would...
  6. Draug

    Bound Combo Box help

    Greetings, I have a combo box that is linked to a lookup table of possible values. The table looks as follows: ID | DESCRIPTION 01 | Inactive 02 | Suspended 03 | Active ...| ... Now, my combo box retrieves both colomns, but the first colomn (ID which is the Primary Key) is set to a width of...
  7. Draug

    Seting Focus to Text Box after MsgBox displayed?

    Greetings, On a certain form, I have a text that a user can enter a code into. In the after_Update function for that box, the code entered is used in a query, of which, the result populates a name field for the code entered. If no name is returned by the query, then the code entered is...
  8. Draug

    PreparedStatement/Parameter Error

    Greetings, The code below creates a runtime Null Pointer Exception. Can anyone tell me why? If I replace the ':well' and ':attach' with '?', everything works fine, but I dont think I should have to do that. //////////////////////////////////////////////////////////// queryString =...
  9. Draug

    PreparedStatement & parameter Passing.

    Greetings, I am attempting to build valid SQL using prepared statements and SQL parameter passing. PreparedStatement has a method called setString which assigns values to parameters of a prepared statement. According to the Jbuilder Java docs, there should be two implementations of this...
  10. Draug

    Connection to File DSN in Java

    Greetings, I have succesfully connected to the SQL Server data source using a System DSN. Is it possible to use a File DSN? If so, how is it done? Does anyone have an example of the syntax? Thanks, Draug
  11. Draug

    How to disable left mouse button click?

    Hi, Using IE5+, I am attempting to disable the left mouse button across the whole page. I thought that having the code below would work. I know that the function is called when I left click and the onMouseDown event is raised. But, if I click on a button or element of the page that has an...
  12. Draug

    Greetings, First, is it possible

    Greetings, First, is it possible to change the cursor (in IE5+) to one that is not built in to the browser? Either with Javascript, or with Cascading Style Sheets??? I know how to change the cursor using the style="CURSOR: 'wait'" attribute. And I can change the cursor using style...
  13. Draug

    Changing Cursor to a custom icon with a StyleSheet.

    Greetings, I know how to change the cursor in a CSS. However, it only seems to work if the cursor that I am changing to is one of the dozen or so standard ones. I want to change the cursor to the combination of an hourglass and the pointer. This is the cursor that Windows displays when an...
  14. Draug

    Refreshing target frame at the time the form is submitted

    Hi, I have a frameset. One of the frames is populated with servlet results that are based on a form in one of the other frames. The servlet takes a long time to run. I want to refresh the target frame as soon as the submit button is pressed, so the screen is in its default load-up state...
  15. Draug

    Why won't the cursor change over a drop down box?

    I have: A frame that contains a form. In this form there are push buttons, options buttons, and drop down boxes. I am trying to change the mouse cursor over each of these items. It changes on all of the elements except the drop down boxes. This is what I use: var elemArray =...
  16. Draug

    Cursor change across ALL of the Frames.

    Hi, I have a page with a number of different frames. One of the frames is filled in with a servlet that is called from a different frame. When the servlet is running on the server, and the webpage is waiting for the HTML from the servlet, the cursor displayed in that frame is a combination of...
  17. Draug

    How can a cursor be changed consistently across frames?

    Hi, I have a multiframe page. Frame A contains of a form in which the user enters data. This data is submitted to the server using the POST method. The server does some querying on the database and displays the results in Frame B. When the form is submitted, the cursor becomes an hour glass...
  18. Draug

    Hiding tables by changing DIV attributes

    Hi, I have a series of tables that I can use javascript to hide. I can do that for each table as follows: document.all.myTable.style.visibility = "hidden" My question is, can I do the same with DIV's? It makes sense to me that you should be able to do that like follows...
  19. Draug

    "Access Denied" after servlet call

    Hi, I have a page with 2 frames. One frame has a form in which a user enters search choices. doPost() is used to accept those choices and generate the output based on them. This output is displayed in the other frame, and is a list of links. When I try to reference those links, I get an...
  20. Draug

    I have XSL file that applies stylin

    I have XSL file that applies styling to my XML data. Inside the XSL, there are variables. There are also some Javascript scripts inside the XSL file. How do I access the XSL variables inside the JS scripts? Thanks, Draug

Part and Inventory Search

Back
Top