|
20.sorry!...i just want to...
|
|
|
|
|
cwj_ wrote: !...i just want to...
you just want to propose her?? this wouldn't be right forum for that... try lounge
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
just her is far away from me,it's a large problem! I miss her very much!!!
|
|
|
|
|
So, why wasting time on a C++ forum? GOTO China and all the best!
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
CPallini wrote: GOTO China
Some may argue: that the use of goto statements being used improperly, far outweighs the slight benefit that they offer in the few instances where their use is preferred.
You need to google first, if you have "It's urgent please" mentioned in your question.
_AnShUmAn_
|
|
|
|
|
_AnsHUMAN_ wrote: Some may argue: that the use of goto statements being used improperly, far outweighs the slight benefit that they offer in the few instances where their use is preferred.
Someone (else) may argue: using properly a goto possibly discriminate a good coder from a 'Senior Software Developer'...
Software bumpers are for sissies.
--the Klingon programmer
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
I am getting this error
ntdll!ExpInterlockedPopEntrySListFault in C:\WINDOWS\system32\ntdll.dll from Microsoft Corporation has caused an access violation exception (0xC0000005) when trying to read from memory location 0x73656c69 on thread 0
I am not knowing what is the cause
|
|
|
|
|
VKupunaram wrote: I am not knowing what is the cause
We neither. So, if you want to fix the problem, use your debugger to analyze what could be wrong in your code (check where the code crashed, use breakpoints to inspect variables before the crash, use the call stack, ...)
|
|
|
|
|
Really I don't see any flaw in your answer.
[added]
Ok, now Mr.Univoter is balanced a bit.
[/added]
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
CPallini wrote: Really I don't see any flaw in your answer.
I guess it's because I didn't reply with something like: "The error is on line 34 in the MyFile.cpp file. You have to replace the '.' with a '->'. " .
CPallini wrote: Ok, now Mr.Univoter is balanced a bit.
Thanks
|
|
|
|
|
CPallini wrote: Really I don't see any flaw in your answer.
humm!m there is no flaw in question but there would be multiple defect in application !
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
Philosophical mood today?
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
Did you use of debugger and can you show your code that it generates this error to us?
Of one Essence is the human race
thus has Creation put the base
One Limb impacted is sufficient
For all Others to feel the Mace
(Saadi )
|
|
|
|
|
Hello All,
I develop code in vc++,win32. Now my next part is to make GUI in very short period. If i use C# to make GUI and backend code in vc++.Is it possible.And Please tell good things and bad things if i use like that .and more from you .
Thanks .
|
|
|
|
|
If your code is in win32 [dll] you can write a RCW[Runtime Callable Wrapper] for the exposed functions and then use them in C#. Alternatively you can also use Interop
Interop is for calling raw DLL exported functions.
RCW (Runtime Callable Wrapper) is used to expose COM objects to .NET classes - ie., to make COM objects callable by .NET code.
You need to google first, if you have "It's urgent please" mentioned in your question.
_AnShUmAn_
|
|
|
|
|
ashish8patil wrote: I develop code in vc++,win32. Now my next part is to make GUI in very short period.
You may also use MFC for this task.
ashish8patil wrote: If i use C# to make GUI and backend code in vc++.Is it possible.
Yes.
ashish8patil wrote: And Please tell good things and bad things if i use like that .and more from you .
Well, if you're a C++ developer, then you've to learn C# enough to make the GUI and at least about Platform Invoke [^] (alternatively COM interop [^]), such tasks are, of course, time-consuming.
The good things, I suppose, come from the experience gained about mixing the two worlds.
Eventually you may also conside to develop both GUI and core modules using C# (i.e go manged!).
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
ashish8patil wrote: I develop code in vc++,win32. Now my next part is to make GUI in very short period.
You may opt to use MFC instead, which allows you to build dialog based applications, doc/view applications, ActiveX controls, etc., all with the help of wizards and existing templates. Give it a shot and you won't be disappointed.
ashish8patil wrote: If i use C# to make GUI and backend code in vc++
You should not be doing such a thing unless it is absolutely necessary.
It is a crappy thing, but it's life -^ Carlo Pallini
|
|
|
|
|
Rajesh R Subramanian wrote: ashish8patil wrote:
If i use C# to make GUI and backend code in vc++
You should not be doing such a thing unless it is absolutely necessary.
IMHO, I am doing this only !
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
As others also wrote, the use of a MFC-GUI is the fastest and easiset way to get a nice GUI working with C++. Making a C#-GUI (and C++ Code) is an option with leeds to more works, and is only fine if you need some C#-Features.
Press F1 for help or google it.
Greetings from Germany
|
|
|
|
|
ashish8patil wrote: If i use C# to make GUI and backend code in vc++.Is it possible.And Please tell good things and bad things if i use like that .and more from you
It wouldn't be wrong choice if you design your GUI in C# and use unmanaged coding at back hand.
Only question is, how you are integrating between two....?
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
.Net Com Ineroperability..?
can please tell me good way..?
|
|
|
|
|
you have flexibility of designing good gui using c#, which unmanaged vc++ doesn't provide you..
you one more way, if you know little bit of managed vc++, just write wrapper on your unmanged function using this.!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
Sorry Alok Sir I not get you. And is there any way i can run my gui in c#.net and whole back-end code will run in c++ (means it will not use CLR when backend code will run). Thanks for your reply.
|
|
|
|
|
Hello Sir,
Can you please tell me what is diff between "pinvoke for win32.dll " and "com interop" .which one is better.
|
|
|
|
|
Hello friend,
I am working on financial application.
I am using VC++.net VS 2008.
I want to avoid shutdown/restart/logoff while my application is storing the user data, authorisation/authentification or file/fund transfer.
I want to abort shutdown,restart or logoff if any third application call ExitWindow, ExitWindoEx with the SX_FORCE or user run the command on command promt "shutdown -l".
I know one way by Windows notification WM_ENDSESSION and WM_QURYENDSESSION return FALSE,but this is not working in "FORCE shutdown" or "shutdown -l".
Please give me a suggestion.
Waiting for the positive reply.
Thank you.
abhi
|
|
|
|