Questions concerning implementation of Single-Document Interface (SDI) may have this tag.
Questions tagged [sdi]
90 questions
0
votes
1 answer
How to change the title/caption of MFC SDI documentless application
I can't find a working solution to change the title of my MFC SDI application. I don't use document/view. I need to change the title according to internal state of the applicaiton.
I've tried CMainFrame::SetWindowText from my main app module in…

bialix
- 20,053
- 8
- 46
- 63
0
votes
1 answer
how to disable message box "Fail to create Empty Document " Message box in MFC SDI application
I am using VS2010 for my MFC SDI application.
In MainFrame Class in OnCreate(LPCREATESTRUCT lpCreateStruct) function I am opening one dialog box and on IDCANCLE replay from the Dialog box I want to close my application.
I am using following code for…

A B
- 1,461
- 2
- 19
- 54
0
votes
3 answers
How to place image using SDI application when the dialog first appears?
I am developing MFC based SDI application using CFormView class in VC++. My problem is that I need to load image when the dialog initially appears. How to place image in an SDI application..I know for dialog based applications it can be done using…

Ferin Jose
- 45
- 1
- 2
- 9
0
votes
2 answers
c++ builder MDI / SDI or other approach?
i wanna make a windows database application with c++ builder. The idea is to have a static menu of 6 icons at the top (i need this to be constant in every screen) while the rest of the screen will host all user interactions and data regarding with…

apo
- 69
- 2
- 9
0
votes
2 answers
CTreeCtrl - changing its position without moving the whole area
Helloes and thank you for reading :)
I am writing an application in MFC/SDI. I split the window in two views. The one on the left is derived from CTreeView, the one on the right from CView. I also created an invisible splitter to part them. Here's…

olasia
- 38
- 5
0
votes
2 answers
How to extract SCTE104 packet from VANC stream
my task is to extract SCTE104 packets out of the SDI. from some of the readings i've done, the packets should be in the VANC stream, provided by the BLACKMAGIC SDI card.
during run-time, i can spot AFD + CEA708 packets, but no SCTE-104 to be seen…

igal k
- 1,883
- 2
- 28
- 57
0
votes
1 answer
QUADRO SDI SDK helps to work on Gpu memory without Host memory?
I will have quadro 4000 with SDI IO cards and with this i want to process video camera output with gpu(cuda) but the main problem is; this is real time process so i don't want to send data to host memory because of latency i want to always process…

Horizon
- 75
- 3
- 11
0
votes
1 answer
Text Box MFC SDI won't appeark
I am trying to add a text box to my form (down the road I wanted to pass data entered from this box to the Document for storage), but I am having trouble getting the text box to work.
Bellow is the code that I have tried. Why is my text box not…

Zzz
- 2,927
- 5
- 36
- 58
0
votes
1 answer
String passing between functions in VC++ SDI application
I am doing an project in SDI. I have two functions name sendtext(CString str) and
displaytext(CString inr) both in different class.
I have a pointer name pView to send the string str to function "displaytext".
The problem is after some operations…

maxer zaurak
- 3
- 2
0
votes
1 answer
Which is efficient.? Opening Forms inside a panel (or) a MDI container
I had designed my application by using the concept SDI, That is Single Document Interface. The structure of my app is explained below,
My Application consist of mainly two forms,
Login Form
Main Form
Login Form:
Obviously, Login Form will be…

Rajaprabhu Aravindasamy
- 66,513
- 17
- 101
- 130
0
votes
1 answer
Image Loading in Device context of SDI(MFC VC++)
How to load Images from disk to Device context of and SDI MFC application. I want to choose images from existing folder at runtime.

Aakash
- 7
- 6
0
votes
1 answer
this pointer value changed in MFC SDI application
Now I have the following MFC SDI application code,this code comes from my view class:
void CNew_demo_appView::OnItemUpdate()
{
// TODO: Add your command handler code here
int i=this->GetListCtrl().GetSelectionMark();//get the selected item…

Minghao Ni
- 185
- 1
- 9
0
votes
1 answer
Joining encoded video frames
I am trying to convert a video stream(SDI card) using DNxHD codec in c++. SDKs are available from both sides. So the task I am actually left with is taking the frames from stream and converting them one by one using the DNxHD sdk. But how do we join…

Prakash
- 823
- 12
- 28
-1
votes
2 answers
How to get state of checkbox of one class in another class vc++ mfc
I am developing MFC based SDI application in VC++ derived from CFormView class.In my dialog I have a checkbox. When this check box is clicked or not I want to get the state of this check box in main class say CDemoView.cpp and use that particular…

Ferin Jose
- 45
- 1
- 2
- 9
-1
votes
2 answers
Assistance needed in Visual Studio MFC SDI Application
I am a newbie to visual Studio MFC stuffs. Im in a urgent need of creating a small application. I need a help im stuck with this and issue i have a text file which have the following data.
A-A1,A2
where A is root node and A1 A2 are the…

maxer zaurak
- 3
- 2