Click here to Skip to main content
15,901,283 members
Home / Discussions / C#
   

C#

 
GeneralAscii codes Pin
Anonymous2-Aug-05 20:41
Anonymous2-Aug-05 20:41 
GeneralRe: Ascii codes Pin
Guffa2-Aug-05 21:48
Guffa2-Aug-05 21:48 
GeneralRe: Ascii codes Pin
leppie2-Aug-05 22:31
leppie2-Aug-05 22:31 
GeneralPlease need advice.. Pin
KORCARI2-Aug-05 20:18
KORCARI2-Aug-05 20:18 
GeneralRe: Please need advice.. Pin
Christian Graus2-Aug-05 20:23
protectorChristian Graus2-Aug-05 20:23 
GeneralRe: Please need advice.. Pin
User 16732522-Aug-05 20:41
User 16732522-Aug-05 20:41 
GeneralRe: Please need advice.. Pin
KORCARI2-Aug-05 20:52
KORCARI2-Aug-05 20:52 
GeneralRe: Please need advice.. Pin
V.3-Aug-05 1:13
professionalV.3-Aug-05 1:13 
depends on what you want.
Your DataSet can hold multiple tables.
(eg. query = "Select * from TableOne;Select * from TableTwo";)
When you execute it and Fill the DataSet you'll have two tables in your dataset.
(then you can even set constraints and relations...)
thus:

yourdataset.Tables[0].Whatever;<br />
yourdataset.Tables[1].Whatever;


you can also create a DAL (data access layer which you can reuse.
eg. create a method which takes a query and returns a dataset.

Then you can do something like this:
DataSet myset1 = DalComponent.DoSelect("Select * from TableOne");<br />
DataSet myset2 = DalComponent.DoSelect("Select * from TableTwo");


(don't forget to create a new DataSet in your DoSelect method.

good luck.

No hurries, no worries.
Generalmouse coordinates in mousehover Pin
Rafferty Uy2-Aug-05 19:36
Rafferty Uy2-Aug-05 19:36 
GeneralRe: mouse coordinates in mousehover Pin
mav.northwind2-Aug-05 19:56
mav.northwind2-Aug-05 19:56 
GeneralRe: mouse coordinates in mousehover Pin
Rafferty Uy2-Aug-05 23:23
Rafferty Uy2-Aug-05 23:23 
GeneralExporting Russian Characters to a CSV File Pin
MSJ_PK2-Aug-05 19:30
MSJ_PK2-Aug-05 19:30 
GeneralRe: Exporting Russian Characters to a CSV File Pin
Guffa2-Aug-05 21:56
Guffa2-Aug-05 21:56 
GeneralAccessing &quot;Verb&quot; in Main function Pin
Anonymous2-Aug-05 18:58
Anonymous2-Aug-05 18:58 
GeneralRe: Accessing &quot;Verb&quot; in Main function Pin
Christian Graus2-Aug-05 19:14
protectorChristian Graus2-Aug-05 19:14 
GeneralRe: Accessing &quot;Verb&quot; in Main function Pin
Anonymous2-Aug-05 19:58
Anonymous2-Aug-05 19:58 
GeneralRe: Accessing &quot;Verb&quot; in Main function Pin
Christian Graus2-Aug-05 20:04
protectorChristian Graus2-Aug-05 20:04 
QuestionHow to change date time continuously in a Label? Pin
pubududilena2-Aug-05 18:22
pubududilena2-Aug-05 18:22 
AnswerRe: How to change date time continuously in a Label? Pin
Christian Graus2-Aug-05 18:37
protectorChristian Graus2-Aug-05 18:37 
AnswerRe: How to change date time continuously in a Label? Pin
Mohamad Al Husseiny2-Aug-05 19:26
Mohamad Al Husseiny2-Aug-05 19:26 
GeneralRe: How to change date time continuously in a Label? Pin
pubududilena2-Aug-05 22:03
pubududilena2-Aug-05 22:03 
GeneralRe: How to change date time continuously in a Label? Pin
Guffa3-Aug-05 1:48
Guffa3-Aug-05 1:48 
GeneralRe: How to change date time continuously in a Label? Pin
mikker_1233-Aug-05 8:38
mikker_1233-Aug-05 8:38 
AnswerRe: How to change date time continuously in a Label? Pin
Guffa2-Aug-05 22:04
Guffa2-Aug-05 22:04 
AnswerRe: How to change date time continuously in a Label? Pin
MicrosoftBob4-Aug-05 7:31
MicrosoftBob4-Aug-05 7:31 

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.