Have a look at http://groups.google.co.uk/group/alt.msdos/browse_thread/thread/5e091f642ec1ba25/207b3a6c28787c69?lnk=st&q=%22not+a+DOS%2F16M+executable%22&rnum=1&hl=en#207b3a6c28787c69 i.g. google for "not a DOS/16M executable"
"Normal is getting dressed in clothes that you buy for work and driving through traffic in a car that you are still paying for - in order to get to the job you need to pay for the clothes and the car, and the house you leave vacant all day so you can afford to live in it." - Ellen Goodman
Wow - not only is this not a C++/CLI question, it doesn't look like a C++/programming question at all.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
Sounds like a problem with the executable's (PE) header to me... Peace!
-=- James
Please rate this message - let me know if I helped or not! * * * If you think it costs a lot to do it right, just wait until you find out how much it costs to do it wrong!
Avoid driving a vehicle taller than you and remember that Professional Driver on Closed Course does not mean your Dumb Ass on a Public Road!
See DeleteFXPFiles
Maybe the guys of [Operating Systems / SysAdmin] can help you. :)
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.
My purpose of process hiding is, in my company have some computer that have time period for using so i develop software(VB.NET 2005) for automatic shutdown computer if it has been turn on befor xx:xx A.M. or after xx:xx P.M. and i need to hide this software process from process viewer. But if it can't perhaps i need to hide task manager from end-user. :-DThank for all suggestion. TooLeeDiN
Check if your Oracle database is up and running, and you don't get the same error when you log on to it normally. I used to get silly errors like this when the log allocated space ran out. TMF
TooLeeDiN wrote: Dim x As New LCOtherInfo(x) You need to pass a string in here, you're passing in x, which is also the name of the variable you're trying to create. Christian Graus - Microsoft MVP - C++
hi there,wonderful guys. i think i have to commend everyone in this judicious group for doing a nice and pleasing job. hello,is there any body in this group who could assist me to use c++ and vb in writing program on clock which will be functioning exactly the way clock work. pls i need respond to this question on time for the completion of a project i have at hand now, you can as well email me for my better understanding. thanks.
I use to try!!! I create public : void displayOutput(CString output); ++++++++++++++++++++++++++++++++++++++++++++ void displayOutput(CString output) { SetWindowText(output); } When i include CxxxView.h in other class GetDocument function of CxxxView class away error.
pretranslatemessage is an option Bryce --- To paraphrase Fred Dagg - the views expressed in this post are bloody good ones. --
Publitor, making Pubmed easy. http://www.sohocode.com/publitor
Our kids book :The Snot Goblin
This is the code: selected=SendMessage(GetDlgItem(hdlg,IDC_LIST1),LB_GETCURSEL,0,0); SendMessage(GetDlgItem(hdlg,IDC_LIST1),LB_DELETETEXT,selected,0); gabby
The asin() function returns the arcsine as a double.
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
Try something like this... // *************************************** // Example: Dynamic Multidimensional Array // *************************************** // We want both array dimensions to be allocated dynamically and // to be able to reference an element as x[i][j] // Here's how to do it... // *********** // MFC Version // *********** // Array of ints typedef CArray CIntArray; // Array of arrays of ints typedef CArray CMultiIntArray; void TraceDynamicArray(const unsigned int rows, const unsigned int columns) { CMultiIntArray aTest; // Allocate number of rows aTest.SetSize( rows ); // For each row for (int row = 0; row < aTest.GetSize(); row++) { // Allocate number of columns aTest[row].SetSize( columns ); // For each column for (int column = 0; column < aTest[row].GetSize(); column++) { // Assign a value aTest [row] [column] = 10 * row + column; // Trace it afxDump << aTest [row] [column] << "\t"; } afxDump << "\n"; } } In your case you need to have // Array of CString typedef CArray CStringArray; // Array of arrays of CString typedef CArray CMultiStringArray; Kevin