View previous topic :: View next topic |
Author |
Message |
reckless
Joined: 24 Jan 2008 Posts: 390 Location: inside tha debugger
|
Posted: Thu Apr 22, 2010 9:14 am Post subject: Qoole99 NET version |
|
|
after a thread in engine compilation
ftp://90.184.233.166:21/Qoole99.NET.7z
compiled with mp support and managed mfc.NET optimized with the intel compiler.
unstable code needs some workout used mfc42 originally uses mfc90 now so you need that NET version if you dont allready have it
install original Qoole99 and overwrite the files with mine.
i included the qlepack |
|
Back to top |
|
 |
Chip

Joined: 21 Jan 2009 Posts: 314 Location: Romania
|
Posted: Thu Apr 22, 2010 4:00 pm Post subject: Re: Qoole99 NET version |
|
|
reckless wrote: | after a thread in engine compilation
ftp://90.184.233.166:21/Qoole99.NET.7z
compiled with mp support and managed mfc.NET optimized with the intel compiler.
unstable code needs some workout used mfc42 originally uses mfc90 now so you need that NET version if you dont allready have it
install original Qoole99 and overwrite the files with mine.
i included the qlepack |
That's great! I intend to do some tests with it and fix the outstanding bugs.
What do I need for this .NET version to compile? I have .NET framework 3.1 or 4 for Windows 7. Is that enough? _________________ My Projects: Quake 1 Mods | OpenQuartz 2 | ChipQuake |
|
Back to top |
|
 |
reckless
Joined: 24 Jan 2008 Posts: 390 Location: inside tha debugger
|
Posted: Fri Apr 23, 2010 1:11 am Post subject: |
|
|
yup  |
|
Back to top |
|
 |
reckless
Joined: 24 Jan 2008 Posts: 390 Location: inside tha debugger
|
Posted: Fri Apr 23, 2010 4:05 am Post subject: |
|
|
Picked up a continuation someone made called QooleAID
still buggy with newer runtimes unfortunatly
Code: | STDMETHODIMP CFileDialog::XFileDialogEvents::OnFolderChanging(IFileDialog *, IShellItem *)
{
METHOD_PROLOGUE(CFileDialog, FileDialogEvents)
return S_OK; // triggers an access violation ?!?
} |
called from
Code: | class EXPORT_GUIUTIL CSelectFolderDialog : public CFileDialog
{
DECLARE_DYNAMIC(CSelectFolderDialog)
public:
virtual int DoModal();
CSelectFolderDialog(char *title = NULL,
BOOL bShowFilesInDir = FALSE,
LPCSTR lpcstrInitialDir = NULL,
DWORD dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
LPCTSTR lpszFilter = NULL,
CWnd* pParentWnd = NULL);
~CSelectFolderDialog();
static WNDPROC m_wndProc;
virtual void OnInitDone();
virtual void OnFolderChange();
void SetSelectedPath(LPCSTR lpcstrPath);
CString GetSelectedPath() const;
void SetTitle(CString cstrTitle);
protected:
//{{AFX_MSG(CSelectFolderDialog)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
BOOL m_bShowFilesInDir;
CString m_cstrPath;
CEdit *m_pEdit;
CString m_cstrTitle;
}; |
Code: | void CSelectFolderDialog::OnFolderChange()
{
if(::IsWindow(GetParent()->m_hWnd))
{
m_pEdit->SetWindowText(GetFolderPath());
}
}
|
maybe someone better at c++ knows what causes this ? |
|
Back to top |
|
 |
Chip

Joined: 21 Jan 2009 Posts: 314 Location: Romania
|
|
Back to top |
|
 |
reckless
Joined: 24 Jan 2008 Posts: 390 Location: inside tha debugger
|
|
Back to top |
|
 |
Chip

Joined: 21 Jan 2009 Posts: 314 Location: Romania
|
Posted: Wed May 12, 2010 11:45 pm Post subject: |
|
|
reckless wrote: | ftp://90.184.233.166:21/Qoole99.7z
sorry forgot to post it  |
Thanks! _________________ My Projects: Quake 1 Mods | OpenQuartz 2 | ChipQuake |
|
Back to top |
|
 |
|