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

C#

 
Questionstart external app, but in a sync way Pin
blackjack215027-Aug-07 2:05
blackjack215027-Aug-07 2:05 
AnswerRe: start external app, but in a sync way Pin
Justin Perez27-Aug-07 2:13
Justin Perez27-Aug-07 2:13 
GeneralRe: start external app, but in a sync way Pin
blackjack215027-Aug-07 2:19
blackjack215027-Aug-07 2:19 
GeneralRe: start external app, but in a sync way Pin
Martin#27-Aug-07 2:32
Martin#27-Aug-07 2:32 
GeneralRe: start external app, but in a sync way Pin
Justin Perez27-Aug-07 2:39
Justin Perez27-Aug-07 2:39 
AnswerRe: start external app, but in a sync way Pin
Spacix One28-Aug-07 10:19
Spacix One28-Aug-07 10:19 
Questioninserting data into a label Pin
lourensG27-Aug-07 1:10
lourensG27-Aug-07 1:10 
AnswerRe: inserting data into a label Pin
Christian Graus27-Aug-07 1:34
protectorChristian Graus27-Aug-07 1:34 
GeneralRe: inserting data into a label Pin
lourensG27-Aug-07 1:43
lourensG27-Aug-07 1:43 
GeneralRe: inserting data into a label Pin
Christian Graus27-Aug-07 1:51
protectorChristian Graus27-Aug-07 1:51 
GeneralRe: inserting data into a label Pin
Justin Perez27-Aug-07 2:14
Justin Perez27-Aug-07 2:14 
AnswerRe: inserting data into a label Pin
mihirhp27-Aug-07 2:17
mihirhp27-Aug-07 2:17 
GeneralRe: inserting data into a label Pin
lourensG27-Aug-07 2:27
lourensG27-Aug-07 2:27 
GeneralRe: inserting data into a label Pin
Justin Perez27-Aug-07 2:42
Justin Perez27-Aug-07 2:42 
QuestionMessaging between objects? Pin
MeLight27-Aug-07 0:57
MeLight27-Aug-07 0:57 
AnswerRe: Messaging between objects? Pin
Colin Angus Mackay27-Aug-07 0:59
Colin Angus Mackay27-Aug-07 0:59 
GeneralRe: Messaging between objects? Pin
MeLight27-Aug-07 3:01
MeLight27-Aug-07 3:01 
Questionmanage a data base since a user interface Pin
almora00727-Aug-07 0:41
almora00727-Aug-07 0:41 
AnswerRe: manage a data base since a user interface Pin
Colin Angus Mackay27-Aug-07 0:51
Colin Angus Mackay27-Aug-07 0:51 
GeneralRe: manage a data base since a user interface Pin
almora00727-Aug-07 0:57
almora00727-Aug-07 0:57 
GeneralRe: manage a data base since a user interface Pin
Colin Angus Mackay27-Aug-07 1:06
Colin Angus Mackay27-Aug-07 1:06 
almora007 wrote:
i have my database table and i dont now how to bind button te permet the user of the application traversing the table.


You can't bind a button to do that. You have to create an event handler for the button and then write the code to traverse the database.

To create an event handler: Double click the button in the designer. Visual Studio will create an event handler if one does not already exist and take you to that code. You then have to fill in the code yourself.

It is up to you how you want to traverse the data. I'm guessing you have a DataSet somewhere with a populated DataTable in it. You need to store a index to the row in the table somewhere and when the button is pressed the index is updated, you can then get the data from the row at the new index and populate your texts boxes and other controls.


-- Always write code as if the maintenance programmer were an axe murderer who knows where you live.

Upcoming FREE developer events:
* Glasgow: Agile in the Enterprise Vs. ISVs, Mock Objects, SQL Server CLR Integration, Reporting Services, db4o ...
* Reading: SQL Bits


My website

GeneralRe: manage a data base since a user interface Pin
almora00727-Aug-07 1:08
almora00727-Aug-07 1:08 
Questioninserting data into a label Pin
lourensG26-Aug-07 23:19
lourensG26-Aug-07 23:19 
AnswerRe: inserting data into a label Pin
Vasudevan Deepak Kumar26-Aug-07 23:43
Vasudevan Deepak Kumar26-Aug-07 23:43 
GeneralRe: inserting data into a label Pin
lourensG26-Aug-07 23:57
lourensG26-Aug-07 23:57 

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.