- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Message Edited by JugoslavDujic on 05-24-2004 04:38 PM
Message Edited by JugoslavDujic on 10-06-2004 03:04 PM
Message Edited by JugoslavDujic on 08-09-2005 01:50 PM
링크가 복사됨
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
logical function XInit(szCmdLine, nCmdShow) use XFT character(*), intent(in):: szCmdLine integer, intent(in):: nCmdShow XInit = XCreateSDIApp(sCaption="My App") end function XInit
type(X_WINDOW), pointer: xQWFrame lret = XBindWindow(GETHWNDQQ(QWIN$FRAMEWINDOW), xQWFrame) lret = XSetHandler(xQWFrame, WM_CLOSE, QWFrame_OnClose)...logical function QWFrame_OnClose(xWnd) result(bOK) !Called when the frame window is to be closed type(X_WINDOW):: xWnd iRet = MessageBox(..."Save Changes?"...) if (iRet = IDYES) then call SaveMyData() !Save data & exit bOK = .true. else if (iRet = IDNO) then bOK = .true. !Just exit else if (iRet = IDCANCEL) then bOK = .false. !Do not exit end if end function
Message Edited by jugoslavdujic on 01-21-2004 05:59 AM
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Jugoslav --
I note that XFT is still offered for CVF (only?). Have you tried to port your Win32 API wrappers to the Intel compiler? This will be the real test of IVF compatibility.
I have purchased the Intel compiler, but haven't had time yet to see whether Intel supports/supplies all the CVF Interface modules and the like. I have commercial products to support andcannot afford any extended period of discovery to find the Intel environment does not duplicate all the CVF features, particularly with respect to Win32 API support.
Best regards,
Paul Curtis
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Message Edited by JugoslavDujic on 05-24-2004 04:42 PM
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
* Support for IVF 9.0
* AppWizard for VS.NET (IVF)
* Enhanced options for AppWizard (toolbar, view window...)
* XFTPrint module (see updated XTabEditor sample)
* XFTCaret module (thanks to Mike Gaitens)
Also, a new release is coming soon. Stay tuned...
Jugoslav
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
B error LNK2001: unresolved external symbol _XFLOGM_mp_DLGEXIT@4
B error LNK2001: unresolved external symbol _XFLOGM_mp_DLGMODAL@8
B error LNK2001: unresolved external symbol _XFLOGM_mp_DLGMODAL@8
B error LNK2001: unresolved external symbol _XFLOGM_mp_DLGSETRETURN@8
B error LNK2001: unresolved external symbol _XFLOGM_mp_DLGSETRETURN@8
B error LNK2001: unresolved external symbol _XFLOGM_mp_PXDLGINIT@12
B error LNK2001: unresolved external symbol _XFTCTRL_mp_XCTLGETCHAR@20
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Also do you have some compiled IVF9 workspace samples. All samples for download were CVF specific and I did not get them succesfully converted to IVF.
Calling convention setting above will probably fix these as well.
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
B error LNK2019: unresolved external symbol __beginthread referenced in function _for__access_threadstor_threads
B error LNK2019: unresolved external symbol __beginthreadex referenced in function __QWGraphWndProc@16
B error LNK2019: unresolved external symbol __beginthreadex referenced in function _WinMain@16
B error LNK2019: unresolved external symbol __endthread referenced in function _for__thread_clean
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
Jugoslav
