Click here to Skip to main content
16,005,141 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to approach the project. please explain....... Pin
Josh Smith16-Aug-06 4:31
Josh Smith16-Aug-06 4:31 
AnswerRe: how to approach the project. please explain....... Pin
Guffa15-Aug-06 13:49
Guffa15-Aug-06 13:49 
GeneralRe: how to approach the project. please explain....... [modified] Pin
Paul Conrad15-Aug-06 14:09
professionalPaul Conrad15-Aug-06 14:09 
GeneralRe: how to approach the project. please explain....... Pin
Guffa15-Aug-06 14:20
Guffa15-Aug-06 14:20 
GeneralRe: how to approach the project. please explain....... Pin
Paul Conrad15-Aug-06 14:29
professionalPaul Conrad15-Aug-06 14:29 
QuestionWindows Service OnStop Pin
Stevef6515-Aug-06 12:52
Stevef6515-Aug-06 12:52 
QuestionDirectInput and Mouse Visibility Pin
0rigin15-Aug-06 12:27
0rigin15-Aug-06 12:27 
Questionobject reference not set to an instance of the object Pin
TWatson4715-Aug-06 12:22
TWatson4715-Aug-06 12:22 
I am trying to pull data from a DB and have it prefill a form when the form is pulled up. Here is a little snippet of code that I am using. I am getting a handling error (in subject line)

public static string[] FormArgs;
public static DESClient.DESClientConnection conn;
private DESClient.DESApplicant applicant;
private string primedln = String.Empty;
int x = 0;
foreach(string arg in FormArgs)
{switch( x )
{case 4:
primedln = arg;
break;}
x += 1;
}
applicant = new DESClient.DESApplicant(conn);
applicant.setAppID(Convert.ToInt32 (primedln) );

lbName.Text = applicant.getLname()+", "+ applicant.getFname()+" "+ applicant.getMname()+".";

lbDLN.Text = applicant.getAppId() +"/"+ address.getState().ToUpper();
static void Main(string[] args)
{
Form1.FormArgs = args;
Application.Run(new Form1());
}

AnswerRe: object reference not set to an instance of the object Pin
Judah Gabriel Himango15-Aug-06 12:45
sponsorJudah Gabriel Himango15-Aug-06 12:45 
GeneralRe: object reference not set to an instance of the object Pin
TWatson4716-Aug-06 5:01
TWatson4716-Aug-06 5:01 
AnswerRe: object reference not set to an instance of the object Pin
Christian Graus15-Aug-06 12:54
protectorChristian Graus15-Aug-06 12:54 
QuestionREGEX and parse date Pin
Saamir15-Aug-06 11:07
Saamir15-Aug-06 11:07 
AnswerRe: REGEX and parse date Pin
Judah Gabriel Himango15-Aug-06 11:45
sponsorJudah Gabriel Himango15-Aug-06 11:45 
GeneralRe: REGEX and parse date Pin
Judah Gabriel Himango15-Aug-06 11:56
sponsorJudah Gabriel Himango15-Aug-06 11:56 
GeneralRe: REGEX and parse date Pin
User 665815-Aug-06 12:30
User 665815-Aug-06 12:30 
AnswerRe: REGEX and parse date Pin
Bitwise Gamgee15-Aug-06 12:29
Bitwise Gamgee15-Aug-06 12:29 
Questioncheck format of date input Pin
rcwoods15-Aug-06 10:41
rcwoods15-Aug-06 10:41 
AnswerRe: check format of date input Pin
Judah Gabriel Himango15-Aug-06 11:47
sponsorJudah Gabriel Himango15-Aug-06 11:47 
GeneralRe: check format of date input Pin
Guffa15-Aug-06 14:43
Guffa15-Aug-06 14:43 
Questionwhy file created event in Windows Servcice fires only once? Pin
Bharat Gadhia15-Aug-06 9:46
Bharat Gadhia15-Aug-06 9:46 
AnswerRe: why file created event in Windows Servcice fires only once? Pin
Ennis Ray Lynch, Jr.15-Aug-06 12:44
Ennis Ray Lynch, Jr.15-Aug-06 12:44 
Questionglobal variable .... Pin
mostafa_h15-Aug-06 9:25
mostafa_h15-Aug-06 9:25 
AnswerRe: global variable .... Pin
Judah Gabriel Himango15-Aug-06 9:54
sponsorJudah Gabriel Himango15-Aug-06 9:54 
GeneralRe: global variable .... Pin
mostafa_h15-Aug-06 10:59
mostafa_h15-Aug-06 10:59 
GeneralRe: global variable .... Pin
Judah Gabriel Himango15-Aug-06 11:50
sponsorJudah Gabriel Himango15-Aug-06 11:50 

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.