Click here to Skip to main content
15,891,905 members
Home / Discussions / C#
   

C#

 
GeneralRe: Best way to read XML Pin
J$20-Dec-07 5:54
J$20-Dec-07 5:54 
GeneralRe: Best way to read XML Pin
J4amieC20-Dec-07 6:00
J4amieC20-Dec-07 6:00 
GeneralRe: Best way to read XML Pin
Ed.Poore20-Dec-07 12:28
Ed.Poore20-Dec-07 12:28 
GeneralRe: Best way to read XML Pin
DaveyM6923-Dec-07 22:32
professionalDaveyM6923-Dec-07 22:32 
GeneralDatagridview update problem Pin
NewToAspDotNet20-Dec-07 5:31
NewToAspDotNet20-Dec-07 5:31 
GeneralRe: Datagridview update problem Pin
DotNetXenon20-Dec-07 6:17
DotNetXenon20-Dec-07 6:17 
GeneralRe: Datagridview update problem Pin
NewToAspDotNet20-Dec-07 6:22
NewToAspDotNet20-Dec-07 6:22 
GeneralMS ACCESS / Web + Desktop Application Pin
s3rro20-Dec-07 5:03
s3rro20-Dec-07 5:03 
I have a desktop application, where you have a link to start the web application. The web application uses a ms access db to retrieve data from.
Now what I want to add is, a "next" button on the desktop app, to get the next row on the ms access to be retrieved and printed to the web applications.

right now the web app get the data on page_Load

public void Page_Load(Object sender, EventArgs E)
{
DataAccess da = new DataAccess();

//Choose the table
string sql = " SELECT * FROM readfrm";

DataSet result = da.GetDataSet(sql);
int size = result.Tables[0].Rows.Count;
// string txtName.Text;

txtName.Text = result.Tables[0].Rows[0]["Name"].ToString();


How can I retrieve the next row on db readfrm by a next button on my desktop app ? The reason is desktop app is a small notification window which is trigerred by some event to tell you there are new rows added to the db, and by clicking on it or clicking on next you will see whats new on the db.

Thanks
GeneralRe: MS ACCESS / Web + Desktop Application Pin
J$20-Dec-07 5:40
J$20-Dec-07 5:40 
GeneralActiveDirectory - getting a lit of users in a group Pin
RugbyLeague20-Dec-07 5:01
RugbyLeague20-Dec-07 5:01 
GeneralRe: ActiveDirectory - getting a lit of users in a group Pin
Giorgi Dalakishvili20-Dec-07 5:14
mentorGiorgi Dalakishvili20-Dec-07 5:14 
GeneralRe: ActiveDirectory - getting a lit of users in a group Pin
RugbyLeague20-Dec-07 5:26
RugbyLeague20-Dec-07 5:26 
GeneralRe: ActiveDirectory - getting a lit of users in a group Pin
RugbyLeague20-Dec-07 5:36
RugbyLeague20-Dec-07 5:36 
QuestionString data into byte array without hex conversion Pin
worked on mine20-Dec-07 3:55
worked on mine20-Dec-07 3:55 
GeneralRe: String data into byte array without hex conversion Pin
DannyAdler20-Dec-07 4:53
DannyAdler20-Dec-07 4:53 
GeneralRe: String data into byte array without hex conversion Pin
worked on mine20-Dec-07 5:32
worked on mine20-Dec-07 5:32 
GeneralRe: String data into byte array without hex conversion Pin
DannyAdler20-Dec-07 22:29
DannyAdler20-Dec-07 22:29 
GeneralRe: String data into byte array without hex conversion Pin
DannyAdler20-Dec-07 22:34
DannyAdler20-Dec-07 22:34 
GeneralRe: String data into byte array without hex conversion Pin
J4amieC20-Dec-07 5:58
J4amieC20-Dec-07 5:58 
GeneralExcel Object Pin
gauthee20-Dec-07 3:36
gauthee20-Dec-07 3:36 
GeneralRe: Excel Object Pin
Not Active20-Dec-07 3:42
mentorNot Active20-Dec-07 3:42 
GeneralDLL Pin
anupamwb20-Dec-07 2:55
anupamwb20-Dec-07 2:55 
GeneralRe: DLL Pin
J4amieC20-Dec-07 3:01
J4amieC20-Dec-07 3:01 
GeneralRe: DLL Pin
Luc Pattyn20-Dec-07 10:07
sitebuilderLuc Pattyn20-Dec-07 10:07 
GeneralRe: DLL Pin
Colin Angus Mackay20-Dec-07 3:15
Colin Angus Mackay20-Dec-07 3:15 

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.