Printing a 2D Array in MFC SDI Programming Software Development by Z33shan … Two questions to ask. i'm working on MFC SDI, i'm less familiar to MFC. i found that… a way to print a string in MFC SDI is: [CODE]pDC->DrawText( " mc Test …but i have to print a 2D array in MFC SDI. so 1: how can i prind 2D array in… MFS SDI? 2: i have included a Dialog Box aswell. … 2D array printing in MFC SDI Programming Software Development by Z33shan hello :) i'm using MFC SDI, & i'm less familiar to it. i need to … know, how can i print a 2D-Array in MFC SDI? 2: i've included a Dialog Box aswell. but how… Re: 2D array printing in MFC SDI Programming Software Development by Z33shan Ancient, i'm working with graphs (points & lines) in SDI. in my "xyzView.cpp", i need to print …a 2D array within SDI, where my graphs are visible. as i can print a… Re: 2D array printing in MFC SDI Programming Software Development by Ancient Dragon … know, how can i print a 2D-Array in MFC SDI? Similar to the way you would with cout but you… Calling an SDI app from a Dialog Programming Software Development by gaasha I made an SDI application. I want to invoke it by clicking a button … Visual Studio 2008, SDI, Mouse Programming Software Development by iXmerof … new at C++, but I have to do it on SDI. My idea is to make something like this one: [url… MFC SDI help Programming Software Development by dungdragon88 Can anyone tell me the difference between MFC SDI withi Document/View architecture and MFC without Document/View architecture Re: 2D array printing in MFC SDI Programming Software Development by Z33shan Thanks Ancient :) Re: 2D array printing in MFC SDI Programming Software Development by Ancient Dragon Forgot to mention that CString has a Format() method which works very similar to sprintf() that you can use to format int to strings. Re: 2D array printing in MFC SDI Programming Software Development by Ancient Dragon >>does "cout" of iostream works? No. You have to create the strings and use DrawText() to display them where you want them. How big is that 2d array? Now many columns and how many rows. Lets say the array is declare as [icode]int array[5][2];[/icode] Then create the string something like this: [code] CString line; for(int row … Re: Calling an SDI app from a Dialog Programming Software Development by WolfPack Seems like a link error to me. Have you properly included the object files of the TypingEditor project to your current project. Re: Calling an SDI app from a Dialog Programming Software Development by Ancient Dragon You can't invoke one executable program (*.exe) from another by merly including a header file and calling new to create an instance of it. You have to use CreateProcess(), ShellExecute() or another similar function to launch an instance of that program. Re: Calling an SDI app from a Dialog Programming Software Development by gaasha Hi there! Sorry for late response. I had other assignments with earlier deadlines. Can u please tell me how to use CreateProcess() or ShellExecute() process with my project. I haven't got any help on these methods as I am using Visual C++ 6 Bible. Re: Calling an SDI app from a Dialog Programming Software Development by Ancient Dragon >> I haven't got any help on these methods Sure you do -- just use google and see [URL="http://msdn2.microsoft.com/en-us/library/ms682425.aspx"]MSDN[/URL] Re: MFC SDI help Programming Software Development by Ancient Dragon [URL="http://msdn.microsoft.com/en-us/library/4x1xy43a(v=vs.80).aspx"]Here [/URL]is explaination of Document View archeture. The difference without Document/View is that the MFC project does not contain a CDocument-derived class. All the data objects will have to be contained within the CView or some other class. Putting files in Jlist Programming Software Development by eeeman …nameDir.mkdir(); //creates directory File fileo = new File("H:/SDI/MileStoneMyWorkSpace/MileStoneMyWorkSpace/users/" + name + ".dat"); … null; try{ reader = new BufferedReader( new FileReader("H:\\SDI\\MileStoneMyWorkSpace\\MileStoneMyWorkSpace\\users\\" + name + ".dat")); … Printing in visual C + + Programming Software Development by freesoft_2000 … need help on a single document interface (sdi) i have created. I created the sdi using the CRichEditView as its base class…:\hello.rwe is opened or shown by default in the sdi. basically my question is how do i load that file… into sdi on the program's initialization. I really hope someone can… Clipboard Question Programming Software Development by gaasha I want my SDI app to return the entered-text to the caller …that seems feasible to me is via clipboard. Now SDI app writes the entered text to the clipboard when its…the text of clipboard is shown as soon as the SDI window is shown, i.e. it doesn't wait …for the SDI app to close and then show the content. Rather whatever… whats this BUg mean, it stopped me in my tracks Programming Software Development by eeeman …Duplicate definition of class milestonemyworkspace.ListFiles, defined in H:\SDI\MileStoneMyworkspace\MileStoneMyWorkSpace\src\milestonemyworkspace\ListFiles.java and also defined …in H:\SDI\MileStoneMyworkspace\MileStoneMyWorkSpace\src\milestonemyworkspace\listFiles.java. The bugs says… Help Needed : MFC change ICON Programming Software Development by koushal.vv Hi , I am working with MFC SDI application, when i open any project [ SDI ] default icon gets loaded [ ie MFC icon ] , i am… OnInitUpdate Programming Software Development by JimJake I have built a SDI project in Visual C++ called HelloSDI. I used a book … C# : Client windows in client windows Programming Software Development by Joe Diamond … MDI, I just used it to get this to work.... SDI would be fine if I could get #(@!$ child windows to… MFC File I/O Philosophy questions/clarifications Programming Software Development by Drowzee … input and creating multiple views based on single document, thus SDI is appropriate. Current Status: Annoyed. Have gone through crashcourse on… Really really strugglisng with Jlist Programming Software Development by eeeman … gui to display all the files in my directory H:\SDI\MileStoneMyworkspace\MileStoneMyWorkSpace\users\abimar How can I do this. If… doc/view archecture question Programming Software Development by complete I have an MFC SDI application and I want to send a message from the MainFrm class to the View class. How do you get a view class from an associate MainFrm class in MFC? a question abuot VC++ 6 Programming Software Development by heav_yduty Hi! I try to make a simple internet browser. I use document SDI and base class CHtmlView. And the problem is that I don't know how to make an address bar like in IE. Maybe somebody can help me? Sorry for my English (I mean "a question about VC++6") , I am from Russia. Serializing in Visual C++ Programming Software Development by noraantonia … press the save as button from the menu in my sdi application (document-view) and i save my work. but when… how to clear/erase the content of a window in visual c++? Programming Software Development by noraantonia …. I work in visual c++ in a document/view arhitecture (SDI application) and i draw some stuff with some opengl functions… how to clear/erase the content of the window in visual c++ 6.0? Programming Software Development by noraantonia …. I work in visual c++ in a document/view arhitecture (SDI application) and i draw some stuff with some opengl functions… MFC and FormView Programming Software Development by e_pech Hey! I'm working with MFC (SDI) and I have 3 views in the window (TreeView, FormView …