Click here to Skip to main content
15,917,795 members
Home / Discussions / C#
   

C#

 
GeneralRe: 3-D pushbutton control Pin
Christian Graus22-Feb-08 13:02
protectorChristian Graus22-Feb-08 13:02 
GeneralRe: 3-D pushbutton control Pin
zqx322-Feb-08 13:25
zqx322-Feb-08 13:25 
GeneralRe: 3-D pushbutton control Pin
Christian Graus22-Feb-08 14:17
protectorChristian Graus22-Feb-08 14:17 
GeneralRe: 3-D pushbutton control Pin
zqx322-Feb-08 14:36
zqx322-Feb-08 14:36 
GeneralRe: 3-D pushbutton control Pin
Christian Graus22-Feb-08 14:53
protectorChristian Graus22-Feb-08 14:53 
GeneralRe: 3-D pushbutton control Pin
zqx322-Feb-08 17:58
zqx322-Feb-08 17:58 
GeneralRe: 3-D pushbutton control Pin
Ravi Bhavnani23-Feb-08 4:59
professionalRavi Bhavnani23-Feb-08 4:59 
GeneralAnybody can help me how to use "search" method in Smart Device Application VB.Net 2003 in c# Pin
daniel293522-Feb-08 11:43
daniel293522-Feb-08 11:43 
Anybody can help with me please?i have been trying this for a week...and can't find any article related to this prob...


listView1.Items.Clear();
conn.Open();

cmd.CommandText = "SELECT * FROM hardwareTable WHERE ID="+searchBox.Text;
SqlCeDataReader rdr = cmd.ExecuteReader();
ListViewItem lvi = null;

while(rdr.Read())
{
lvi = new ListViewItem(rdr.GetInt32(0).ToString());
lvi.SubItems.Add(rdr.GetString(1));
lvi.SubItems.Add(rdr.GetString(2));
lvi.SubItems.Add(rdr.GetString(3));
lvi.SubItems.Add(rdr.GetString(4));
lvi.SubItems.Add(rdr.GetString(5));
lvi.SubItems.Add(rdr.GetString(6));
lvi.SubItems.Add(rdr.GetString(7));
listView1.Items.Add(lvi);
}
listView1.Refresh();
conn.Close();

what is the problem with my CODING???it shows an error when i push my search button..
Question(XNA) Calculate FPS [modified] Please? Pin
MasterSharp22-Feb-08 11:02
MasterSharp22-Feb-08 11:02 
AnswerRe: (XNA) Calculate FPS [modified] Please? Pin
User 665823-Feb-08 1:07
User 665823-Feb-08 1:07 
GeneralBlock windows applications from dotnet webbrowser Pin
ric9422-Feb-08 9:13
ric9422-Feb-08 9:13 
AnswerRe: Block windows applications from dotnet webbrowser Pin
Spacix One22-Feb-08 10:09
Spacix One22-Feb-08 10:09 
GeneralRe: Block windows applications from dotnet webbrowser Pin
ric9422-Feb-08 10:14
ric9422-Feb-08 10:14 
GeneralHelp me with a program. Pin
Alex50122-Feb-08 8:30
Alex50122-Feb-08 8:30 
GeneralRe: Help me with a program. Pin
Skippums22-Feb-08 9:50
Skippums22-Feb-08 9:50 
GeneralRe: Help me with a program. Pin
Christian Graus22-Feb-08 10:24
protectorChristian Graus22-Feb-08 10:24 
GeneralRe: Help me with a program. Pin
Spacix One22-Feb-08 10:35
Spacix One22-Feb-08 10:35 
GeneralProblem with ToolStripTextBox Pin
stancrm22-Feb-08 5:15
stancrm22-Feb-08 5:15 
GeneralRe: Problem with ToolStripTextBox Pin
Judah Gabriel Himango22-Feb-08 6:55
sponsorJudah Gabriel Himango22-Feb-08 6:55 
GeneralRe: Problem with ToolStripTextBox Pin
stancrm24-Feb-08 20:14
stancrm24-Feb-08 20:14 
GeneralRe: Problem with ToolStripTextBox Pin
Judah Gabriel Himango25-Feb-08 11:19
sponsorJudah Gabriel Himango25-Feb-08 11:19 
GeneralRe: Problem with ToolStripTextBox Pin
stancrm25-Feb-08 19:59
stancrm25-Feb-08 19:59 
QuestionHow to dock a form ? Pin
Aravinthan22-Feb-08 4:16
Aravinthan22-Feb-08 4:16 
GeneralRe: How to dock a form ? Pin
Dr. Emmett Brown22-Feb-08 4:55
Dr. Emmett Brown22-Feb-08 4:55 
GeneralRe: How to dock a form ? Pin
Aravinthan22-Feb-08 17:59
Aravinthan22-Feb-08 17:59 

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.