Click here to Skip to main content
15,893,594 members
Home / Discussions / C#
   

C#

 
QuestionControl Hardware through Software Pin
thund3rstruck22-Jul-08 4:00
thund3rstruck22-Jul-08 4:00 
AnswerRe: Control Hardware through Software Pin
stancrm22-Jul-08 4:05
stancrm22-Jul-08 4:05 
GeneralRe: Control Hardware through Software Pin
thund3rstruck22-Jul-08 4:15
thund3rstruck22-Jul-08 4:15 
GeneralRe: Control Hardware through Software Pin
Luc Pattyn22-Jul-08 4:22
sitebuilderLuc Pattyn22-Jul-08 4:22 
GeneralRe: Control Hardware through Software Pin
thund3rstruck22-Jul-08 4:43
thund3rstruck22-Jul-08 4:43 
GeneralRe: Control Hardware through Software Pin
Luc Pattyn22-Jul-08 5:20
sitebuilderLuc Pattyn22-Jul-08 5:20 
AnswerRe: Control Hardware through Software Pin
Alex@UEA22-Jul-08 5:02
Alex@UEA22-Jul-08 5:02 
QuestionHow to remove a AddIn from VStudio 2008 Pin
Tomerland22-Jul-08 3:37
Tomerland22-Jul-08 3:37 
AnswerRe: How to remove a AddIn from VStudio 2008 Pin
Rob Siklos22-Jul-08 8:30
Rob Siklos22-Jul-08 8:30 
QuestionProblem in Remoting Pin
stancrm22-Jul-08 3:33
stancrm22-Jul-08 3:33 
QuestionLogConsole? Recommendations? Pin
tkrn22-Jul-08 2:36
tkrn22-Jul-08 2:36 
AnswerRe: LogConsole? Recommendations? Pin
Mustafa Ismail Mustafa22-Jul-08 3:05
Mustafa Ismail Mustafa22-Jul-08 3:05 
AnswerRe: LogConsole? Recommendations? Pin
wurzel_cidermaker22-Jul-08 4:29
wurzel_cidermaker22-Jul-08 4:29 
QuestionEvent handling in C# Pin
TheComputerMan22-Jul-08 2:13
TheComputerMan22-Jul-08 2:13 
AnswerRe: Event handling in C# Pin
Mustafa Ismail Mustafa22-Jul-08 2:31
Mustafa Ismail Mustafa22-Jul-08 2:31 
AnswerRe: Event handling in C# Pin
Dave Doknjas22-Jul-08 13:20
Dave Doknjas22-Jul-08 13:20 
Questionsocket programming Pin
AlexPizzano22-Jul-08 1:43
AlexPizzano22-Jul-08 1:43 
AnswerRe: socket programming Pin
stancrm22-Jul-08 1:46
stancrm22-Jul-08 1:46 
AnswerRe: socket programming Pin
nelsonpaixao22-Jul-08 13:15
nelsonpaixao22-Jul-08 13:15 
QuestionC++ code to access .NET component Pin
Sitaram Sukumar22-Jul-08 1:35
Sitaram Sukumar22-Jul-08 1:35 
AnswerRe: C++ code to access .NET component Pin
stancrm22-Jul-08 1:43
stancrm22-Jul-08 1:43 
QuestionGeneral Question of thread Pin
Mogaambo22-Jul-08 1:21
Mogaambo22-Jul-08 1:21 
AnswerRe: General Question of thread Pin
N a v a n e e t h22-Jul-08 1:38
N a v a n e e t h22-Jul-08 1:38 
AnswerRe: General Question of thread Pin
Guffa22-Jul-08 2:09
Guffa22-Jul-08 2:09 
QuestionRefreshing DatagridView Pin
Yosh_22-Jul-08 1:16
professionalYosh_22-Jul-08 1:16 
hi all,
i filter a datagrid with respect to a texbox input. It filters fine. But how do i bring back the original data into the grid when the textbox is empty?
code below:
//This is in the textchanged event of txtQS<br />
<br />
if (txtQS.Text.Trim != "") {<br />
TMSDataSet.LASTIDNOREFFDataTable dt = new TMSDataSet.LASTIDNOREFFDataTable();<br />
LASTIDNOREFFTableAdapter.Fill(dt);<br />
DataView dv = new DataView(dt);<br />
dv.RowFilter = "lastmonth = " + txtQS.Text;<br />
LASTIDNOREFFDataGridView.DataSource = dv;<br />
LASTIDNOREFFDataGridView.Refresh();<br />
}<br />
else <br />
     LASTIDNOREFFTableAdapter.Fill(TMSDataSet.LASTIDNOREFF);<br />

Thanx.

He who goes for revenge must first dig two graves.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.