Click here to Skip to main content
15,900,906 members
Home / Discussions / C#
   

C#

 
GeneralRe: SaveFileDialog on Vista not creating files???!! Pin
Paul Conrad24-Dec-07 19:37
professionalPaul Conrad24-Dec-07 19:37 
GeneralSNTP Request Object Pin
Skippums20-Dec-07 8:59
Skippums20-Dec-07 8:59 
AnswerRe: SNTP Request Object Pin
Skippums21-Dec-07 5:02
Skippums21-Dec-07 5:02 
GeneralCounting the new items in the database Pin
s3rro20-Dec-07 7:56
s3rro20-Dec-07 7:56 
GeneralRe: Counting the new items in the database Pin
Not Active20-Dec-07 8:47
mentorNot Active20-Dec-07 8:47 
GeneralRe: Counting the new items in the database Pin
s3rro20-Dec-07 9:15
s3rro20-Dec-07 9:15 
GeneralCapturing the Print Event in C# Pin
VivyG20-Dec-07 5:52
VivyG20-Dec-07 5:52 
GeneralRe: Capturing the Print Event in C# Pin
Not Active20-Dec-07 6:29
mentorNot Active20-Dec-07 6:29 
GeneralBest way to read XML Pin
netJP12L20-Dec-07 5:41
netJP12L20-Dec-07 5:41 
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 

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.