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

    Load XML (Firefox)

    Hi, I got a question about loading an XML file in javascript. I'm using it to create a table dynamically. Everything's working fine using I.E., the structure file of the XML file has been loaded correctly into firefox as well, since I can see the names of the nodes. It's only the data that seems...
  2. Reinout

    RaiseEvent skipped

    I did a search in the forum but nothing seemed to work for me. Where I want to call the event : Public Class Test Inherits System.Windows.Forms.UserControl Public Event TestEvent() Private sub initPage() RaiseEvent TestEvent() End sub End Class Where I tell the event what to do ...
  3. Reinout

    Custom Comboboxcolumn

    I have a question about a datagrid with custom columns. I built a comboboxcolumn, everything's working fine, accept one thing. Everytime I change a value in a combobox and I remain in the same line of the datagrid, the custom column in the first line shows the same value as the last selected. As...
  4. Reinout

    Remoting proxy has no channel sink ...

    Hello I got an error while trying to call an ExecuteNonQuery on the server, namely : The remoting proxy has no channel sink which means either the server has no registered server channels that are listening, or the application has no suitable client channel to talk to the server. I tried it...
  5. Reinout

    Update dataset from datagrid

    I have 3 datagrids in 1 page, in parent - child_1 - child_1.1 relation. Now I want to save changes in one datagrid when I move to another. I tried this using : Me.BindingContext(dataset.Tables("tablename")).EndCurrentEdit() Call UpdateTable() This won't work though, he sees no changes in the...
  6. Reinout

    Dataview - dataset - datagrid

    Hello I have a problem using datagrids, datasets and dataviews. I fill up a dataset from a table, use it to fill a dataview and the dataview shows in the datagrid. So far so good. Now I'm having some issues while trying to update and insert records. I have to check certain columns because they...
  7. Reinout

    Update XML record

    I'd like to update my XML file. At least 1 field from 1 record. Is this possible without saving the whole file all over? This is my code : private sub getPassword_Click(obj as Object, e as EventArgs) if not (Page.IsValid) Then Msg.Text = "Some required fields are invalid."...
  8. Reinout

    Transfer-encoding: chunked23d 214a

    Sometimes I get this "error" (It just shows up in my screen, but the ddl's are still working) when I select an item in my Dropdownlist. Most of the time it doesn't though. Anyone has had this problem before? private Sub VeranderBrouwer(obj as OBject, e as Eventargs) dim i,j as...
  9. Reinout

    Problem with filling table in DB

    I have a problem filling up a table into my SQL Database. I can write in almost every table, accept from one of them. I'll explain the situation. I have a table, I'll call it X, and another one, let's say Y. I can fill up both without any problem, so I guess my connection to the DB can't be...

Part and Inventory Search

Back
Top