No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Example code below : create a dataview based on your dataset, then use the dv.rowfilter method to filter on what is displayed. [code] [COLOR=green]DataView[/COLOR][COLOR=green] Dv = [/COLOR][COLOR=green]new[/COLOR][COLOR=green]DataView[/COLOR][COLOR=green]();[/COLOR] Dv.Table = m_Ds.Tables[[COLOR=green]"results"[/COLOR]]; Dv.RowFilter = [COLOR=green]"panel_key like '"[/COLOR] + textBox1.Text + [COLOR=green]"%'"[/COLOR]; dataGridView1.DataSource = Dv; [/code]
First off, I would convert your dtd to a schema (xsd) file. Everything is so much easier these days in .xsd format. In terms of loading into sql, you have basically 4 options 1) use .net code using the system.xml namespace, create an xmldocument element. 2) use sqlxml 4.0 (bulk …
[quote=vetteman]The last thing I can remember doing before this current problem occured was running spybot. I ran the program and removed the suspect files. Now when my computer sits idle over night, when I try to use it in the morning, everything except outlook express is hung. When I hit …
The End.
FunkeyMonkey