Click here to Skip to main content
15,916,835 members
Home / Discussions / C#
   

C#

 
GeneralRe: Bug in java.util.zip.Zipfile Pin
Nish Nishant9-May-04 3:48
sitebuilderNish Nishant9-May-04 3:48 
GeneralRe: Bug in java.util.zip.Zipfile Pin
Kannan Kalyanaraman9-May-04 4:44
Kannan Kalyanaraman9-May-04 4:44 
GeneralRe: Bug in java.util.zip.Zipfile Pin
Heath Stewart9-May-04 9:23
protectorHeath Stewart9-May-04 9:23 
GeneralRe: Bug in java.util.zip.Zipfile Pin
leppie9-May-04 6:20
leppie9-May-04 6:20 
GeneralRe: Bug in java.util.zip.Zipfile Pin
Nish Nishant9-May-04 6:23
sitebuilderNish Nishant9-May-04 6:23 
GeneralRe: Bug in java.util.zip.Zipfile Pin
leppie9-May-04 6:41
leppie9-May-04 6:41 
GeneralTab Order Pin
DougW488-May-04 17:50
DougW488-May-04 17:50 
GeneralRe: Tab Order Pin
leppie8-May-04 19:41
leppie8-May-04 19:41 
GeneralRe: Tab Order Pin
DougW488-May-04 19:45
DougW488-May-04 19:45 
GeneralRe: Tab Order Pin
Heath Stewart8-May-04 20:22
protectorHeath Stewart8-May-04 20:22 
GeneralRe: Tab Order Pin
DougW488-May-04 20:33
DougW488-May-04 20:33 
GeneralA little help.. Pin
Bojan Rajkovic8-May-04 12:21
Bojan Rajkovic8-May-04 12:21 
GeneralRe: A little help.. Pin
leppie8-May-04 19:43
leppie8-May-04 19:43 
GeneralRe: A little help.. Pin
Bojan Rajkovic9-May-04 15:09
Bojan Rajkovic9-May-04 15:09 
GeneralRe: A little help.. Pin
Heath Stewart8-May-04 20:20
protectorHeath Stewart8-May-04 20:20 
GeneralUsing an xsd file for a dataset Pin
MrJJKoolJ8-May-04 11:10
MrJJKoolJ8-May-04 11:10 
GeneralRe: Using an xsd file for a dataset Pin
leppie8-May-04 19:47
leppie8-May-04 19:47 
GeneralDisconnected Datasets Pin
MrJJKoolJ8-May-04 10:02
MrJJKoolJ8-May-04 10:02 
GeneralRe: Disconnected Datasets Pin
Heath Stewart8-May-04 20:18
protectorHeath Stewart8-May-04 20:18 
GeneralRe: Disconnected Datasets Pin
MrJJKoolJ9-May-04 6:44
MrJJKoolJ9-May-04 6:44 
GeneralRe: Disconnected Datasets Pin
Heath Stewart9-May-04 9:27
protectorHeath Stewart9-May-04 9:27 
GeneralDrawing 3D piechart(the 3D depth part) Pin
Alan Zhao8-May-04 9:07
Alan Zhao8-May-04 9:07 
Questiondataset data tostring??? Pin
gman448-May-04 9:07
gman448-May-04 9:07 
AnswerRe: dataset data tostring??? Pin
Heath Stewart8-May-04 20:14
protectorHeath Stewart8-May-04 20:14 
You need to refer to the row data - not the column:
string smtpServer =
  newDataSet1.Settings.Rows[0][newDataSet1.Settings.SmtpServerColumn];
This gets the value in the first row under the SmtpServerColumn (you can also use the name or 0-based index, although using the DataColumn instance will be faster).

I suggest you read the documentation for the DataSet class and related documentation. If you're not familiar with this stuff, simply guessing won't teach you anything. Reading the documentation will help, and may be present you with some alternatives in order to do things more efficiently and with less development time.

 

Microsoft MVP, Visual C#
My Articles
GeneralArrays of Structures in C# .net Beginner Pin
ProgrammerA8-May-04 8:34
ProgrammerA8-May-04 8:34 

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.