Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 157 results for
sdi
- Page 1
Printing a 2D Array in MFC SDI
Programming
Software Development
13 Years Ago
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
13 Years Ago
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
13 Years Ago
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
13 Years Ago
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
17 Years Ago
by gaasha
I made an
SDI
application. I want to invoke it by clicking a button …
Visual Studio 2008, SDI, Mouse
Programming
Software Development
14 Years Ago
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
14 Years Ago
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
13 Years Ago
by Z33shan
Thanks Ancient :)
Re: 2D array printing in MFC SDI
Programming
Software Development
13 Years Ago
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
13 Years Ago
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
17 Years Ago
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
17 Years Ago
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
17 Years Ago
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
17 Years Ago
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
14 Years Ago
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
18 Years Ago
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
20 Years Ago
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
17 Years Ago
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
18 Years Ago
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
16 Years Ago
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
20 Years Ago
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
19 Years Ago
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
19 Years Ago
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
18 Years Ago
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
17 Years Ago
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
17 Years Ago
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
17 Years Ago
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
16 Years Ago
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
16 Years Ago
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
16 Years Ago
by e_pech
Hey! I'm working with MFC (
SDI
) and I have 3 views in the window (TreeView, FormView …
1
2
3
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC