Questions tagged [sdi]

Questions concerning implementation of Single-Document Interface (SDI) may have this tag.

90 questions
0
votes
1 answer

Move tables backup to local

I had a dropped a database by mistake, but I still have the 3 extensions of my tables inside the database (MYD, MYI and sdi), when I move these files to "/usr/local/var/mysql/MY_DATABASE" inside MacOs, and I go into phpMyadmin or MySQL, I could not…
newCoder
  • 25
  • 3
0
votes
1 answer

How can i auto resize MFC SDI formview?

I'm making a MFC SDI project. There is a main view which i want to maximize, but I don't know how to do it. (I succeeded to maximized main frame window, but failed to maximized the formview like below image.) [enter image description here][2] BOOL…
0
votes
0 answers

Error When Using Case When On SAP HANA : SAP DBTech JDBC: [403]: internal error: Error opening the cursor

I have the query like this.. SELECT sum(wms_trx."trans_net_amt") as "TRANS_AMT_FCY", wms_trx."trans_type_cd", CASE WHEN "trans_type_cd" IN (SELECT "ref_value" FROM "B_VIRTUAL"."man_upload_ref") THEN '1' ELSE '0' END as…
0
votes
1 answer

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 view class named OnCallDlg does something as…
0
votes
1 answer

SAP HANA Smart Data Integration

I'm fairly new to HANA's SDI functionality. Essentially I am trying to create a flow graph that will copy data from a virtual table to a physical table. I can set my data source as the virtual table, however when I try to set the physical table as…
Jae
  • 49
  • 1
  • 8
0
votes
1 answer

Access from View to modal dialog in SDI mfc application

I am a beginner at programming, and I should create an application for my final thesis. My app is created as SDI in MFC. I made a modal dialog that is opened from View. In the dialog, after button push, a measuring device should be connected to the…
Rado
  • 1
  • 2
0
votes
0 answers

Clientarea of Windows MFC SDI application frozen after returning from STRG-ALT-ENTF

I am using Visual Studio 2017 and I have created an MFC SDI Application with Direct2D for drawing. So I am listening to ON_REGISTERED_MESSAGE(AFX_WM_DRAW2D, &CIGUIDEView::OnDraw2d) messages for painting into the client area of the application. It…
0
votes
3 answers

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 the output generated by this filter to ffmpeg,…
cicvsalba
  • 61
  • 1
  • 7
0
votes
0 answers

How stop click event on CHtmlView drived class?

In SDI application on right pain view on a FormView I am showing HTML preview using ChtmlView Navigate function. When I open doc/docx file in HTML preview then it was editable. I want to prevent click event so no one can edit this. How can I stop…
A_kumar
  • 401
  • 1
  • 4
  • 12
0
votes
1 answer

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 controls inside the groupbox, such as edit box etc.…
Carlos Liu
  • 2,348
  • 3
  • 37
  • 51
0
votes
1 answer

MFC modeless dialog with style child

I have SDI structure program and I want to create CDialog with child style and use CFormView as its parent. Because I want to use CFormView as a "containter". Now I encounter two problems. I can not set setmunu to CDialog (because of the dialog…
candivan
  • 1
  • 1
0
votes
1 answer

How to set the height and width of the CDockable pane

I want to set the height and the width of the dockable panes. I tried passing the value in the CRect parameter to the OnCreate function but that didnt work. can anybody help in resolving this
0
votes
1 answer

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 area. How can I do this? Thank you
user26404
  • 1,371
  • 4
  • 27
  • 38
0
votes
2 answers

Multiple Documents/Views in MFC Splitter Window

I currently have an MFC SDI program that displays data in Open GL. I am trying to modify the program to display multiple data files at once using splitter windows. In other words, if there are four splitter windows, each with display a different…
JRGlide
  • 1
  • 1
0
votes
1 answer

Update Database MFC C++ ODBC CRecordset

I'm Developing a MFC application (SDI) to update, add and delete a table in the database called security. The problem is after updating one row in the table, the row is Updated ( i verified) then when I do another action (updating another row or…