Click here to Skip to main content
15,892,480 members
Home / Discussions / C#
   

C#

 
Questionusing Microsoft.Office.Interop.Word + timeout Pin
Member 769046020-Feb-11 18:26
Member 769046020-Feb-11 18:26 
AnswerRe: using Microsoft.Office.Interop.Word + timeout Pin
Dalek Dave20-Feb-11 22:13
professionalDalek Dave20-Feb-11 22:13 
GeneralRe: using Microsoft.Office.Interop.Word + timeout Pin
Member 769046020-Feb-11 22:15
Member 769046020-Feb-11 22:15 
AnswerRe: using Microsoft.Office.Interop.Word + timeout Pin
Bernhard Hiller21-Feb-11 3:57
Bernhard Hiller21-Feb-11 3:57 
GeneralRe: using Microsoft.Office.Interop.Word + timeout Pin
Member 769046022-Feb-11 18:24
Member 769046022-Feb-11 18:24 
QuestionC# Object Pin
Ramkumar_S20-Feb-11 14:36
Ramkumar_S20-Feb-11 14:36 
AnswerRe: C# Object Pin
_Maxxx_20-Feb-11 15:04
professional_Maxxx_20-Feb-11 15:04 
AnswerRe: C# Object Pin
Henry Minute20-Feb-11 15:12
Henry Minute20-Feb-11 15:12 
You are not setting the applicant property of your sObj which is why I suspect that you are getting the error.

BTW: You will get more help, more quickly, if you:

a) put your code inside <pre> your code goes here </pre> tags. Doing that makes it easier to read.
b) give full information about the problem you are having. e.g. the exact wording of the exception.

In your case I suspect that the error is a 'null reference exception' but I can't be sure.

My suggestion to resolve your problem is below.
C#
static void Main(string[] args)
{
    dtoSourece sObj = new dtoSourece();
    sObj.name = "ram";
    sObj.age = "25";

    jlvformApplicant s = new jlvformApplicant();
    s.firstname = "india";

    sObj.applicant = s;    //<========================================================= NEW CODE

    Console.WriteLine("india=" + sObj.applicant.firstname);//getting error


    Console.ReadLine();
}

Henry Minute

Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”
I wouldn't let CG touch my Abacus!
When you're wrestling a gorilla, you don't stop when you're tired, you stop when the gorilla is.

GeneralRe: C# Object Pin
Ramkumar_S20-Feb-11 15:29
Ramkumar_S20-Feb-11 15:29 
GeneralRe: C# Object Pin
Henry Minute20-Feb-11 16:38
Henry Minute20-Feb-11 16:38 
AnswerRe: C# Object Pin
RobCroll20-Feb-11 19:37
RobCroll20-Feb-11 19:37 
GeneralRe: C# Object Pin
Henry Minute21-Feb-11 3:13
Henry Minute21-Feb-11 3:13 
GeneralRe: C# Object Pin
_Maxxx_22-Feb-11 0:15
professional_Maxxx_22-Feb-11 0:15 
GeneralRe: C# Object Pin
Henry Minute22-Feb-11 2:00
Henry Minute22-Feb-11 2:00 
QuestionDatagridview CellValueCHanged event is not firing Pin
NarVish20-Feb-11 6:27
NarVish20-Feb-11 6:27 
AnswerRe: Datagridview CellValueCHanged event is not firing Pin
Alan N20-Feb-11 11:43
Alan N20-Feb-11 11:43 
GeneralRe: Datagridview CellValueCHanged event is not firing Pin
NarVish20-Feb-11 21:56
NarVish20-Feb-11 21:56 
QuestionQuestion on CrystalReportViewer. [modified] Pin
priyamtheone20-Feb-11 2:54
priyamtheone20-Feb-11 2:54 
QuestionPython And/Or C#? Pin
Said Ali Jalali20-Feb-11 1:36
Said Ali Jalali20-Feb-11 1:36 
AnswerRe: Python And/Or C#? [modified] Pin
#realJSOP20-Feb-11 2:01
mve#realJSOP20-Feb-11 2:01 
AnswerRe: Python And/Or C#? Pin
Bernhard Hiller21-Feb-11 3:53
Bernhard Hiller21-Feb-11 3:53 
QuestionDefaulting and disabling WIA properties Pin
Etienne_12319-Feb-11 22:13
Etienne_12319-Feb-11 22:13 
AnswerRe: Defaulting and disabling WIA properties Pin
Dalek Dave20-Feb-11 0:34
professionalDalek Dave20-Feb-11 0:34 
GeneralRe: Defaulting and disabling WIA properties Pin
Etienne_12320-Feb-11 19:46
Etienne_12320-Feb-11 19:46 
QuestionExtract JSON stringify Pin
July moe19-Feb-11 2:21
July moe19-Feb-11 2:21 

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.