blah blah blah is here! blah blah » Close

2
votes
2 answers

Syntax problem in C#

I'm using Visual Studio C# 2010 Express. My code: string clave = txtBuscar.Text.Trim(); dta = new OleDbDataAdapter("Select * from cursos where nombre LIKE '" + clave + "%' || acudiente LIKE '" + clave + "%' || ...

1
votes
1 answers

switch case, find button ID

Hi all! I just started learning this stuff at school, as you might understand im a total noob. I tried for a day, and still can figure it out! This is my code.. ID's and stuff are in Norwegian. knapp = button en, to, tre, fire = one two t ...

0
votes
1 answers

find in a dataset if the next value is the same

Hi, I'm trying to find in a dataset if the next value is the same and if it is take its value in another var. ex. abc 100 200 abc 150 100 abc 100 250 abx 100 230 abv 100 200 abv 150 100 the data set is ordered... and i want t ...

Feedback