Click here to Skip to main content
15,888,351 members
Home / Discussions / C#
   

C#

 
AnswerRe: catastrophic failure in using activex Pin
Dave Kreskowiak16-Jul-06 2:17
mveDave Kreskowiak16-Jul-06 2:17 
GeneralRe: catastrophic failure in using activex Pin
pardis18-Jul-06 0:56
pardis18-Jul-06 0:56 
GeneralRe: catastrophic failure in using activex Pin
pardis18-Jul-06 1:04
pardis18-Jul-06 1:04 
GeneralRe: catastrophic failure in using activex Pin
Dave Kreskowiak18-Jul-06 1:38
mveDave Kreskowiak18-Jul-06 1:38 
Questionhi friends! Pin
kh.pakdaman16-Jul-06 0:06
kh.pakdaman16-Jul-06 0:06 
AnswerRe: hi friends! Pin
Ravi Bhavnani16-Jul-06 5:24
professionalRavi Bhavnani16-Jul-06 5:24 
AnswerRe: hi friends! Pin
Fahad Ali16-Jul-06 13:06
Fahad Ali16-Jul-06 13:06 
QuestionRe: hi friends! Pin
paulcortez16-Jul-06 18:58
paulcortez16-Jul-06 18:58 
Hi...
You mentioned that your working on c# and i'm currently strugling on this language. Can you help me?

I'm trying to convert this code from vb to c#:
Private Shared mFormDefInstance As frmBillingAll
Private Shared mInitializingDefInstance As Boolean
Public Shared Property defInstance() As frmBillingAll
Get
If mFormDefInstance Is Nothing OrElse mFormDefInstance.IsDisposed Then
mInitializingDefInstance = True
mFormDefInstance = New frmBillingAll
mInitializingDefInstance = False
End If
defInstance = mFormDefInstance
End Get
Set(ByVal Value As frmBillingAll)
mFormDefInstance = Value
End Set
End Property

Here's my convertion
Private static frmFloatDialog floatDialog = new frmFloatDialog();
Private static bool mInitializingDefInstance;
Public static Property defInstance() As frmBillingAll --> I dont know how to convert this thing...
Get
If mFormDefInstance Is Nothing OrElse mFormDefInstance.IsDisposed Then
mInitializingDefInstance = True
mFormDefInstance = New frmBillingAll
mInitializingDefInstance = False
End If
defInstance = mFormDefInstance
End Get
Set(ByVal Value As frmBillingAll)
mFormDefInstance = Value
End Set
End Property

I could convert some of it but I think I done it wrongly...
Do you have an idea on how to call other MDIchild by another MDIchild?
I tried using formName.show() but its not working.

Please advice...
thankz....

AnswerRe: hi friends! Pin
PlayByTheRules16-Jul-06 23:16
PlayByTheRules16-Jul-06 23:16 
QuestionHow can I Map other web?? Pin
dabuskol16-Jul-06 0:03
dabuskol16-Jul-06 0:03 
AnswerRe: How can I Map other web?? Pin
Gavin Roberts17-Jul-06 2:11
Gavin Roberts17-Jul-06 2:11 
Questionunsure about running apps of different cd's... Pin
Anthony Mushrow15-Jul-06 15:04
professionalAnthony Mushrow15-Jul-06 15:04 
AnswerRe: unsure about running apps of different cd's... Pin
led mike15-Jul-06 16:23
led mike15-Jul-06 16:23 
GeneralRe: unsure about running apps of different cd's... Pin
Jun Du15-Jul-06 16:46
Jun Du15-Jul-06 16:46 
GeneralRe: unsure about running apps of different cd's... Pin
S. Senthil Kumar16-Jul-06 6:17
S. Senthil Kumar16-Jul-06 6:17 
GeneralRe: unsure about running apps of different cd's... Pin
led mike16-Jul-06 19:59
led mike16-Jul-06 19:59 
Questionerror in database program in vs2005 . Pin
hdv21215-Jul-06 13:43
hdv21215-Jul-06 13:43 
AnswerRe: error in database program in vs2005 . Pin
led mike15-Jul-06 16:31
led mike15-Jul-06 16:31 
GeneralRe: error in database program in vs2005 . Pin
hdv21215-Jul-06 21:15
hdv21215-Jul-06 21:15 
GeneralRe: error in database program in vs2005 . Pin
Stefan Troschuetz15-Jul-06 22:25
Stefan Troschuetz15-Jul-06 22:25 
QuestionPrnScr Pin
TAREQ F ABUZUHRI15-Jul-06 10:56
TAREQ F ABUZUHRI15-Jul-06 10:56 
AnswerRe: PrnScr Pin
Paul Conrad15-Jul-06 11:05
professionalPaul Conrad15-Jul-06 11:05 
AnswerRe: PrnScr Pin
Robert Rohde15-Jul-06 11:09
Robert Rohde15-Jul-06 11:09 
AnswerRe: PrnScr Pin
Ravi Bhavnani15-Jul-06 12:48
professionalRavi Bhavnani15-Jul-06 12:48 
QuestionArranging a web page to print it. Pin
orentuil15-Jul-06 10:20
orentuil15-Jul-06 10:20 

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.