Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
1k views

Switch GUI application behavior between SDI and MDI

I currently have an SDI application that is build with Delphi 7, I want the final user to choose the type of interface between SDI and MDI at runtime. my question is how can I change the behavior of ...
4
votes
3answers
942 views

How can I take eclipse out of MDI mode?

Does anyone know of a way to make Eclipse an SDI application rather than an MDI one? SDI - Single document interface, each pane is its own window MDI - Multiple document interface, all of the panes ...
2
votes
1answer
44 views

What is the correct way to access DLL functions in a SDI app?

I have a simple SDI app which works pretty well. Lately I decided to make use some of functions, exported by a DLL. All those DLL functions work with a static memory buffer (which the app must ...
1
vote
3answers
487 views

C# - WinForms - SDI or MDI Approach?

I am creating a Visual C# WinForms application that will contain 4 forms: A "control" form that will have anywhere between 2 buttons and potentially up to 10 or so. So the screen will need to ...
1
vote
2answers
243 views

linux run ffmpeg within c++ code

the O.S. is Linux. I have an old c++ code that writes raw SDI input from a capture device to a file. My intent is to modify this program and redirect the raw video from the SDI source to the stdin of ...
1
vote
2answers
261 views

Organize windows in a SDI Delphi Application

In an Delphi MDI application i can use the Tile,Cascade and ArrangeIcons procedures to organize my child windows, this methods only works when the FormStyle property is set to fsMDIForm, How i can ...
1
vote
2answers
1k views

How do you disable the Maximize button in MFC?

How do you disable the Maximize button/capability in an SDI application?
0
votes
0answers
61 views

Single Document Interface document based cocoa application

Is there a way to create Single Document Interface (SDI) document based cocoa application? I dont want user to open multiple documents at once.
0
votes
1answer
86 views

SDI-display a dialog via a seleted popup menu item

I have a SDI application and I would like to display a dialog after selecting a popup menu item to call it My dialog class is defined as: class Dialog:public CDialogEx {}; and an added function to ...
0
votes
2answers
444 views

can we draw shapes (line,circle , etc.) in dialog-based mfc visual studio 2010?

I want to implement an oscilloscope to display some different frequency via dialog-based MFC visual c++, but as I googling too much , I found out that the only way to drawing shapes in visual c++ is ...
0
votes
3answers
597 views

Directshow, passing a stream to a program like ffmpeg

I am new to DirectShow. I have an ASI/SDI Dectek device, DTU-225, and a relative sdk: http://www.dektec.com/products/USB2/DTU-225/index.asp . In this sdk there is a Directshow filter. I need to pass ...
0
votes
1answer
209 views

MFC SDI Text Editor

I am creating an MFC SDI explorer style application (it has a splitter bar and the right-hand pane is the text-edit area, left-hand pane is the tree-view) My right-hand pane is a CRichEditView. I ...
0
votes
1answer
76 views

how to set the controls right aligned with the view in MFC SDI application

I have created a MFC SDI application, and the view is derived from CFormView, so i can put some controls on the dialog. I have put a groupbox at the right side of the dialog and put some other ...
0
votes
4answers
452 views

How to reduce simple cpp application size? (compiled with RAD Studio 2010 cpp builder)

I am using rad studio 2010 cpp builder. I've created a new SDI application, added a TCppWebBrowser control and a simple button that onclick trigger the .navigate for the TCppWebBrowser, I compiled it ...
0
votes
2answers
210 views

RePaint area (region) in sdi view MFC

I want to ask you one question about SDI MFC application. How can I repaint some area (region) on the view in SDI MFC application but without repaint complete view?
0
votes
2answers
818 views

SDI vs MDI vs TDI vs?

I'm making a small business application and I'm wondering what the best interface would be. The application itself is your run-of-the-mill service ticket tracker. There will be forms for searching ...
0
votes
1answer
769 views

How to change the size of view according to mainframe in SDI framework?

I want to set the size of view according to the size of the mainframe in a SDI framework. That is to say when I change the size of mainframe, the size of view changes accordingly, so does the client ...