Click here to Skip to main content
15,888,286 members
Home / Discussions / C#
   

C#

 
GeneralRe: Video in mpeg Pin
Heath Stewart9-Feb-05 14:53
protectorHeath Stewart9-Feb-05 14:53 
Generalmultithreading Pin
Titli8-Feb-05 18:59
Titli8-Feb-05 18:59 
GeneralRe: multithreading Pin
Dave Kreskowiak9-Feb-05 6:25
mveDave Kreskowiak9-Feb-05 6:25 
QuestionHow to get Paragraph leading? Pin
sachinkalse8-Feb-05 18:23
sachinkalse8-Feb-05 18:23 
AnswerRe: How to get Paragraph leading? Pin
sachinkalse9-Feb-05 13:29
sachinkalse9-Feb-05 13:29 
GeneralI'm having trouble adding records to Access Pin
Bill Prada8-Feb-05 17:09
Bill Prada8-Feb-05 17:09 
GeneralRe: I'm having trouble adding records to Access Pin
Luis Alonso Ramos8-Feb-05 19:00
Luis Alonso Ramos8-Feb-05 19:00 
GeneralRe: I'm having trouble adding records to Access Pin
bprada9-Feb-05 4:22
bprada9-Feb-05 4:22 
Thanks for the quick response.

Here is a snippet:
I've read the text word and am trying to put a one Char string in each field.


switch (nCharCount)
{

case 3:
cmd.CommandText = "INSERT INTO 3 VALUES ca[0], ca[1], ca[2]";
cmd.ExecuteNonQuery();
break;

case 4:
cmd.CommandText = "INSERT INTO 4 VALUES ca[0], ca[1], ca[2], ca[3]";
cmd.ExecuteNonQuery();
break;

case 5:
cmd.CommandText = "INSERT INTO 5 VALUES ca[0], ca[1], ca[2], ca[3], ca[4]";
cmd.ExecuteNonQuery();
break;

case 6: /* The first word in Nouns.txt has 6 letter so I am trying different thinggs here */
try
{
OleDbDataAdapter myAdapter = new OleDbDataAdapter();
DataSet ds = new DataSet("six");
myAdapter.Update(ds, "C:\\Keep\\Gloss\\Working Data\\Gloss.mdb.6");
cmd.CommandText = "INSERT INTO '6' (1, 2, 3, 4, 5, 6) VALUES ('cA[0].String()', cA[1].ToString(), cA[2].ToString(), cA[3].ToString(), cA[4].ToString(), cA[5].ToString()";
cmd.ExecuteNonQuery();

}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
break;



I hope this shows what I am doing wrong

Best Regards,
Bill Prada
GeneralRe: I'm having trouble adding records to Access Pin
Luis Alonso Ramos9-Feb-05 5:10
Luis Alonso Ramos9-Feb-05 5:10 
GeneralRe: I'm having trouble adding records to Access Pin
Luis Alonso Ramos9-Feb-05 5:21
Luis Alonso Ramos9-Feb-05 5:21 
Generali got stuckup with my first C# program Pin
nagarajuepuri8-Feb-05 15:39
nagarajuepuri8-Feb-05 15:39 
GeneralRe: i got stuckup with my first C# program Pin
Daniel Turini8-Feb-05 15:58
Daniel Turini8-Feb-05 15:58 
GeneralRe: i got stuckup with my first C# program Pin
nagarajuepuri8-Feb-05 16:09
nagarajuepuri8-Feb-05 16:09 
GeneralRe: i got stuckup with my first C# program Pin
S. Senthil Kumar8-Feb-05 18:13
S. Senthil Kumar8-Feb-05 18:13 
GeneralRe: i got stuckup with my first C# program Pin
Mr.Cooper9-Feb-05 1:18
Mr.Cooper9-Feb-05 1:18 
GeneralRe: i got stuckup with my first C# program Pin
nagarajuepuri9-Feb-05 6:09
nagarajuepuri9-Feb-05 6:09 
GeneralRe: i got stuckup with my first C# program Pin
Dave Kreskowiak9-Feb-05 6:22
mveDave Kreskowiak9-Feb-05 6:22 
GeneralDon't display form icon Pin
.gonad8-Feb-05 15:32
.gonad8-Feb-05 15:32 
GeneralRe: Don't display form icon Pin
Mr.Cooper9-Feb-05 1:20
Mr.Cooper9-Feb-05 1:20 
GeneralRe: Don't display form icon Pin
.gonad10-Feb-05 14:35
.gonad10-Feb-05 14:35 
GeneralCard Selection Screen Pin
Bob Bonser8-Feb-05 15:29
Bob Bonser8-Feb-05 15:29 
QuestionHow do I find out if a file is signed or not? Pin
ethanwa8-Feb-05 14:54
ethanwa8-Feb-05 14:54 
Questionfast way to find the index of the first letter in a richTextBox? Pin
ektoras8-Feb-05 13:53
ektoras8-Feb-05 13:53 
AnswerRe: fast way to find the first letter in a richTextBox? Pin
Christian Graus8-Feb-05 14:02
protectorChristian Graus8-Feb-05 14:02 
GeneralRe: fast way to find the first letter in a richTextBox? Pin
ektoras8-Feb-05 14:17
ektoras8-Feb-05 14:17 

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.