Click here to Skip to main content
15,913,773 members
Home / Discussions / C#
   

C#

 
AnswerRe: How do I create different sized toolbar buttons? Pin
Ravi Bhavnani24-Mar-06 5:45
professionalRavi Bhavnani24-Mar-06 5:45 
GeneralRe: How do I create different sized toolbar buttons? Pin
pliu_200024-Mar-06 6:01
pliu_200024-Mar-06 6:01 
GeneralRe: How do I create different sized toolbar buttons? Pin
Ravi Bhavnani24-Mar-06 6:50
professionalRavi Bhavnani24-Mar-06 6:50 
QuestionC# and Windows Services Pin
hung_ngole24-Mar-06 4:24
hung_ngole24-Mar-06 4:24 
AnswerRe: C# and Windows Services Pin
shabonaa29-May-06 6:32
shabonaa29-May-06 6:32 
QuestionC# and 'SQL Server 2005 EE', going from VB to C# ? Pin
Inkimar24-Mar-06 3:48
Inkimar24-Mar-06 3:48 
AnswerRe: C# and 'SQL Server 2005 EE', going from VB to C# ? Pin
ToddHileHoffer24-Mar-06 6:43
ToddHileHoffer24-Mar-06 6:43 
GeneralRe: C# and 'SQL Server 2005 EE', going from VB to C# ? Pin
Colin Angus Mackay24-Mar-06 6:50
Colin Angus Mackay24-Mar-06 6:50 
I don't think that is an accurate translation.

This might be better
string PKvalue = FilterInput.Text; // Filterinput är en textbox
DataRow Rowlocated = this.MyDBDataSet.Person.Rows.Find(Int32.Parse(PKvalue));
if (! RowLocated == null)
{
MessageBox.Show((string)Rowlocated[1]);
}
else{
MessageBox.Show(PKvalue + " record not located");
}


Me == this

CType is a casting operator of some sort (more of a black box that C#'s casting operator as it can do string to int translations also)

ColinMackay.net
Scottish Developers are looking for speakers for user group sessions over the next few months. Do you want to know more?

AnswerRe: C# and 'SQL Server 2005 EE', going from VB to C# ? Pin
Dave Doknjas24-Mar-06 15:11
Dave Doknjas24-Mar-06 15:11 
QuestionRe: C# and 'SQL Server 2005 EE', going from VB to C# ? Pin
Inkimar25-Mar-06 5:45
Inkimar25-Mar-06 5:45 
QuestionUsing LinearGradientBrush Pin
JuanAlbertoMD24-Mar-06 3:44
JuanAlbertoMD24-Mar-06 3:44 
AnswerRe: Using LinearGradientBrush Pin
Ed.Poore24-Mar-06 7:44
Ed.Poore24-Mar-06 7:44 
GeneralRe: Using LinearGradientBrush Pin
mav.northwind24-Mar-06 8:53
mav.northwind24-Mar-06 8:53 
GeneralRe: Using LinearGradientBrush Pin
Ed.Poore24-Mar-06 9:02
Ed.Poore24-Mar-06 9:02 
GeneralRe: Using LinearGradientBrush Pin
JuanAlbertoMD27-Mar-06 5:30
JuanAlbertoMD27-Mar-06 5:30 
QuestionNode Dragging. Please Help! Pin
zaboboa24-Mar-06 3:27
zaboboa24-Mar-06 3:27 
AnswerRe: Node Dragging. Please Help! Pin
Robert Rohde24-Mar-06 20:11
Robert Rohde24-Mar-06 20:11 
QuestionHelp with DataGridView Pin
mrkeivan24-Mar-06 3:14
mrkeivan24-Mar-06 3:14 
AnswerRe: Help with DataGridView Pin
Office Lineman24-Mar-06 7:18
Office Lineman24-Mar-06 7:18 
Generalthat doesn't work man Pin
mrkeivan24-Mar-06 11:17
mrkeivan24-Mar-06 11:17 
AnswerRe: that doesn't work man Pin
Office Lineman24-Mar-06 11:59
Office Lineman24-Mar-06 11:59 
QuestionChanging MaxLocksPerFile Registy Setting in C#.NET Pin
beatle1124-Mar-06 2:59
beatle1124-Mar-06 2:59 
AnswerRe: Changing MaxLocksPerFile Registy Setting in C#.NET Pin
HakunaMatada24-Mar-06 22:23
HakunaMatada24-Mar-06 22:23 
AnswerRe: Changing MaxLocksPerFile Registy Setting in C#.NET Pin
CengBrothers16-Aug-18 5:48
CengBrothers16-Aug-18 5:48 
QuestionImage editor in C# Pin
jerzy.michalski@telemobile.pl24-Mar-06 2:40
jerzy.michalski@telemobile.pl24-Mar-06 2:40 

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.