Userdlg uses constraints (better for wxMotif). Also added Id for cvs
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5748 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -6,6 +6,7 @@
|
|||||||
// Created: 19991127.mj10777
|
// Created: 19991127.mj10777
|
||||||
// Copyright: (c) Mark Johnson
|
// Copyright: (c) Mark Johnson
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
|
// RCS-ID: $Id$
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
//-- 1)
|
//-- 1)
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
@@ -110,7 +111,7 @@ BEGIN_EVENT_TABLE(UserDialog, wxDialog)
|
|||||||
layout->width.Absolute(75);
|
layout->width.Absolute(75);
|
||||||
m_OK->SetConstraints(layout);
|
m_OK->SetConstraints(layout);
|
||||||
|
|
||||||
m_Label1 = new wxStaticText(this, -1, _("User name:"));
|
m_Label1 = new wxStaticText(this, -1, _("User ID:"));
|
||||||
layout = new wxLayoutConstraints;
|
layout = new wxLayoutConstraints;
|
||||||
layout->left.SameAs(m_OK, wxLeft);
|
layout->left.SameAs(m_OK, wxLeft);
|
||||||
layout->top.SameAs(m_OK, wxBottom, 10);
|
layout->top.SameAs(m_OK, wxBottom, 10);
|
||||||
@@ -207,19 +208,26 @@ bool BrowserDB::OnStartDB(int Quite)
|
|||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
// Connect to datasource
|
// Connect to datasource
|
||||||
//---------------------------
|
//---------------------------
|
||||||
DlgUser p_Dlg(pDoc->p_MainFrame, "Username and Password", wxPoint(100, 100), wxSize(340, 170));
|
DlgUser p_Dlg(pDoc->p_MainFrame, "Username and Password");
|
||||||
p_Dlg.s_DSN = ODBCSource;
|
p_Dlg.s_DSN = ODBCSource;
|
||||||
p_Dlg.s_User = UserName;
|
p_Dlg.s_User = UserName;
|
||||||
p_Dlg.s_Password = Password;
|
p_Dlg.s_Password = Password;
|
||||||
p_Dlg.OnInit();
|
p_Dlg.OnInit();
|
||||||
|
p_Dlg.Fit();
|
||||||
|
|
||||||
|
bool OK = FALSE;
|
||||||
if (p_Dlg.ShowModal() == wxID_OK)
|
if (p_Dlg.ShowModal() == wxID_OK)
|
||||||
{
|
{
|
||||||
(pDoc->p_DSN+i_Which)->Usr = p_Dlg.s_User;
|
(pDoc->p_DSN+i_Which)->Usr = p_Dlg.s_User;
|
||||||
(pDoc->p_DSN+i_Which)->Pas = p_Dlg.s_Password;
|
(pDoc->p_DSN+i_Which)->Pas = p_Dlg.s_Password;
|
||||||
UserName = p_Dlg.s_User;
|
UserName = p_Dlg.s_User;
|
||||||
Password = p_Dlg.s_Password;
|
Password = p_Dlg.s_Password;
|
||||||
|
OK = TRUE;
|
||||||
}
|
}
|
||||||
p_Dlg.Destroy();
|
p_Dlg.Destroy();
|
||||||
|
|
||||||
|
if (OK)
|
||||||
|
{
|
||||||
//---------------------------
|
//---------------------------
|
||||||
strcpy(ConnectInf.Dsn, ODBCSource); // ODBC data source name (created with ODBC Administrator under Win95/NT)
|
strcpy(ConnectInf.Dsn, ODBCSource); // ODBC data source name (created with ODBC Administrator under Win95/NT)
|
||||||
strcpy(ConnectInf.Uid, UserName); // database username - must already exist in the data source
|
strcpy(ConnectInf.Uid, UserName); // database username - must already exist in the data source
|
||||||
@@ -247,6 +255,7 @@ bool BrowserDB::OnStartDB(int Quite)
|
|||||||
wxLogMessage(_("-I-> BrowserDB::OnStartDB(%s) : End "),ODBCSource.c_str());
|
wxLogMessage(_("-I-> BrowserDB::OnStartDB(%s) : End "),ODBCSource.c_str());
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
} else return FALSE;
|
||||||
}
|
}
|
||||||
//--------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------
|
||||||
bool BrowserDB::OnCloseDB(int Quite)
|
bool BrowserDB::OnCloseDB(int Quite)
|
||||||
|
@@ -6,6 +6,7 @@
|
|||||||
// Created: 19991127.mj10777
|
// Created: 19991127.mj10777
|
||||||
// Copyright: (c) Mark Johnson
|
// Copyright: (c) Mark Johnson
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
|
// RCS-ID: $Id$
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
//-- Zu tun in browsedb.h
|
//-- Zu tun in browsedb.h
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
@@ -7,6 +7,7 @@
|
|||||||
// Created: 19991127
|
// Created: 19991127
|
||||||
// Copyright: (c) Mark Johnson
|
// Copyright: (c) Mark Johnson
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
|
// RCS-ID: $Id$
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
//-- all #ifdefs that the whole Project needs. ------------------------------
|
//-- all #ifdefs that the whole Project needs. ------------------------------
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
@@ -6,6 +6,7 @@
|
|||||||
// Created: 19991127
|
// Created: 19991127
|
||||||
// Copyright: (c) Mark Johnson
|
// Copyright: (c) Mark Johnson
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
|
// RCS-ID: $Id$
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
// Define a new application type
|
// Define a new application type
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
@@ -4,9 +4,9 @@
|
|||||||
// Author: Mark Johnson
|
// Author: Mark Johnson
|
||||||
// Modified by: 19990929.mj10777 a reuseable DBGrid
|
// Modified by: 19990929.mj10777 a reuseable DBGrid
|
||||||
// Created: 19990929
|
// Created: 19990929
|
||||||
// RCS-ID:
|
|
||||||
// Copyright: (c)
|
// Copyright: (c)
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
|
// RCS-ID: $Id$
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
//-- all #ifdefs that the whole Project needs. ------------------------------
|
//-- all #ifdefs that the whole Project needs. ------------------------------
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
@@ -4,9 +4,9 @@
|
|||||||
// Author: Mark Johnson
|
// Author: Mark Johnson
|
||||||
// Modified by: 20000126.mj10777
|
// Modified by: 20000126.mj10777
|
||||||
// Created:
|
// Created:
|
||||||
// RCS-ID:
|
|
||||||
// Copyright: (c) Mark Johnson
|
// Copyright: (c) Mark Johnson
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
|
// RCS-ID: $Id$
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
class mjDoc;
|
class mjDoc;
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
// Author: Mark Johnson
|
// Author: Mark Johnson
|
||||||
// Modified by:
|
// Modified by:
|
||||||
// Created: 19991129
|
// Created: 19991129
|
||||||
// RCS-ID:
|
/// RCS-ID: $Id$
|
||||||
// Copyright: (c) Mark Johnson, Berlin Germany, mj10777@gmx.net
|
// Copyright: (c) Mark Johnson, Berlin Germany, mj10777@gmx.net
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
@@ -6,6 +6,7 @@
|
|||||||
// Created: 19991129
|
// Created: 19991129
|
||||||
// Copyright: (c) Mark Johnson
|
// Copyright: (c) Mark Johnson
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
|
// RCS-ID: $Id$
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
class mjDoc; // Declared in Doc.h file
|
class mjDoc; // Declared in Doc.h file
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
@@ -6,6 +6,7 @@
|
|||||||
// Created: 19991105
|
// Created: 19991105
|
||||||
// Copyright: (c) Mark Johnson
|
// Copyright: (c) Mark Johnson
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
|
// RCS-ID: $Id$
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
//-- all #ifdefs that the whole Project needs. ------------------------------
|
//-- all #ifdefs that the whole Project needs. ------------------------------
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
@@ -29,42 +30,126 @@
|
|||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
#include "dlguser.h"
|
#include "dlguser.h"
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
DlgUser::DlgUser(wxWindow *parent, const wxString& title, const wxPoint& pos, const wxSize& size, const long WXUNUSED(style) ) :
|
DlgUser::DlgUser(wxWindow *parent, const wxString& title) :
|
||||||
wxDialog(parent, ID_DIALOG_DSN, title, pos, size, wxDEFAULT_DIALOG_STYLE|wxDIALOG_MODAL)
|
wxDialog(parent, ID_DIALOG_DSN, title)
|
||||||
{
|
{
|
||||||
SetBackgroundColour("wheat");
|
SetBackgroundColour("wheat");
|
||||||
wxButton *but1 = new wxButton(this, wxID_OK, "OK", wxPoint(55,110), wxSize(80, 30));
|
|
||||||
wxButton *but2 = new wxButton(this, wxID_CANCEL, "Cancel", wxPoint(210,110), wxSize(80, 30));
|
wxLayoutConstraints* layout;
|
||||||
(void)new wxStaticText(this, -1,_("User ID"), wxPoint(20, 40), wxSize(50, 20),wxALIGN_LEFT);
|
SetAutoLayout(TRUE);
|
||||||
(void)new wxStaticText(this, -1,_("Password"), wxPoint(20, 80), wxSize(50, 20),wxALIGN_LEFT);
|
|
||||||
|
// m_Dsn = new wxStaticText(this, -1, "", wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE);
|
||||||
|
// layout = new wxLayoutConstraints;
|
||||||
|
// layout->centreX.SameAs(this, wxCentreX);
|
||||||
|
// layout->top.SameAs(this, wxTop,10);
|
||||||
|
// layout->height.AsIs();
|
||||||
|
// layout->width.AsIs();
|
||||||
|
// m_Dsn->SetConstraints(layout);
|
||||||
|
|
||||||
|
m_Label1 = new wxStaticText(this, -1, _("User ID:"));
|
||||||
|
layout = new wxLayoutConstraints;
|
||||||
|
layout->left.SameAs(this, wxLeft, 10);
|
||||||
|
layout->top.SameAs(this, wxTop, 10);
|
||||||
|
layout->height.AsIs();
|
||||||
|
layout->width.Absolute(75);
|
||||||
|
m_Label1->SetConstraints(layout);
|
||||||
|
|
||||||
|
m_UserName = new wxTextCtrl(this, -1, "");
|
||||||
|
layout = new wxLayoutConstraints;
|
||||||
|
layout->left.SameAs(m_Label1, wxRight, 10);
|
||||||
|
// layout->top.SameAs(m_Label1, wxTop);
|
||||||
|
layout->centreY.SameAs(m_Label1,wxCentreY);
|
||||||
|
layout->width.Absolute(200);
|
||||||
|
layout->height.AsIs();
|
||||||
|
m_UserName->SetConstraints(layout);
|
||||||
|
|
||||||
|
|
||||||
|
m_Label2 = new wxStaticText(this, -1, _("Password:"));
|
||||||
|
layout = new wxLayoutConstraints;
|
||||||
|
layout->left.SameAs(m_Label1, wxLeft);
|
||||||
|
layout->top.SameAs(m_Label1, wxBottom, 10);
|
||||||
|
layout->height.AsIs();
|
||||||
|
layout->width.SameAs(m_Label1, wxWidth);
|
||||||
|
m_Label2->SetConstraints(layout);
|
||||||
|
|
||||||
|
m_Password = new wxTextCtrl(this, -1, "", wxDefaultPosition, wxDefaultSize, wxTE_PASSWORD);
|
||||||
|
layout = new wxLayoutConstraints;
|
||||||
|
layout->left.SameAs(m_UserName, wxLeft);
|
||||||
|
layout->width.SameAs(m_UserName, wxWidth);
|
||||||
|
// layout->top.SameAs(m_Label2, wxTop);
|
||||||
|
layout->centreY.SameAs(m_Label2,wxCentreY);
|
||||||
|
layout->height.AsIs();
|
||||||
|
m_Password->SetConstraints(layout);
|
||||||
|
|
||||||
|
m_OK = new wxButton(this, wxID_OK, _("Ok"));
|
||||||
|
layout = new wxLayoutConstraints;
|
||||||
|
layout->left.SameAs(this, wxLeft, 10);
|
||||||
|
layout->top.SameAs(m_Label2, wxBottom,10);
|
||||||
|
layout->height.AsIs();
|
||||||
|
layout->width.Absolute(75);
|
||||||
|
m_OK->SetConstraints(layout);
|
||||||
|
|
||||||
|
m_Cancel = new wxButton(this, wxID_CANCEL, _("Cancel"));
|
||||||
|
layout = new wxLayoutConstraints;
|
||||||
|
layout->left.SameAs(m_OK, wxRight, 10);
|
||||||
|
layout->top.SameAs(m_OK, wxTop);
|
||||||
|
layout->height.AsIs();
|
||||||
|
layout->width.SameAs(m_OK, wxWidth);
|
||||||
|
m_Cancel->SetConstraints(layout);
|
||||||
|
|
||||||
|
m_OK->SetDefault();
|
||||||
|
m_UserName->SetFocus();
|
||||||
|
|
||||||
|
|
||||||
|
s_User = "";
|
||||||
|
s_Password = "";
|
||||||
|
|
||||||
|
Layout();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// wxButton *but1 = new wxButton(this, wxID_OK, "OK", wxPoint(55,110), wxSize(80, 30));
|
||||||
|
// wxButton *but2 = new wxButton(this, wxID_CANCEL, "Cancel", wxPoint(210,110), wxSize(80, 30));
|
||||||
|
// (void)new wxStaticText(this, -1,_("User ID"), wxPoint(20, 40), wxSize(50, 20),wxALIGN_LEFT);
|
||||||
|
// (void)new wxStaticText(this, -1,_("Password"), wxPoint(20, 80), wxSize(50, 20),wxALIGN_LEFT);
|
||||||
// but1->SetFocus();
|
// but1->SetFocus();
|
||||||
but1->SetDefault();
|
// m_OK->SetDefault();
|
||||||
}
|
}
|
||||||
|
|
||||||
void DlgUser::OnInit()
|
void DlgUser::OnInit()
|
||||||
{
|
{
|
||||||
wxString Temp; Temp.Printf(_(">>> %s <<< "),s_DSN.c_str());
|
wxString Temp; Temp.Printf(_(">>> %s <<< "),s_DSN.c_str());
|
||||||
(void)new wxStaticText(this, -1, Temp, wxPoint(10, 10), wxSize(300, 20),wxALIGN_CENTRE );
|
SetTitle(Temp);
|
||||||
tc_User = new wxTextCtrl(this, ID_USER, s_User, wxPoint(75, 35), wxSize(200, 25), 0, wxDefaultValidator);
|
|
||||||
tc_Password = new wxTextCtrl(this, ID_PASSWORD, s_Password, wxPoint(75, 75), wxSize(200, 25),wxTE_PASSWORD, wxDefaultValidator);
|
m_UserName->SetLabel(s_User);
|
||||||
tc_User->SetFocus();
|
m_Password->SetLabel(s_Password);
|
||||||
|
|
||||||
|
// (void)new wxStaticText(this, -1, Temp, wxPoint(10, 10), wxSize(300, 20),wxALIGN_CENTRE );
|
||||||
|
// tc_User = new wxTextCtrl(this, ID_USER, s_User, wxPoint(75, 35), wxSize(200, 25), 0, wxDefaultValidator);
|
||||||
|
// tc_Password = new wxTextCtrl(this, ID_PASSWORD, s_Password, wxPoint(75, 75), wxSize(200, 25),wxTE_PASSWORD, wxDefaultValidator);
|
||||||
|
// tc_User->SetFocus();
|
||||||
}
|
}
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
BEGIN_EVENT_TABLE(DlgUser, wxDialog)
|
BEGIN_EVENT_TABLE(DlgUser, wxDialog)
|
||||||
EVT_BUTTON(wxID_OK, DlgUser::OnOk)
|
EVT_BUTTON(wxID_OK, DlgUser::OnOk)
|
||||||
EVT_BUTTON(wxID_CANCEL, DlgUser::OnCancel)
|
EVT_BUTTON(wxID_CANCEL, DlgUser::OnCancel)
|
||||||
END_EVENT_TABLE()
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
void DlgUser::OnOk(wxCommandEvent& WXUNUSED(event) )
|
void DlgUser::OnOk(wxCommandEvent& WXUNUSED(event) )
|
||||||
{
|
{
|
||||||
canceled = FALSE;
|
//canceled = FALSE;
|
||||||
s_User = tc_User->GetValue();
|
s_User = m_UserName->GetValue();
|
||||||
s_Password = tc_Password->GetValue();
|
s_Password = m_Password->GetValue();
|
||||||
EndModal(wxID_OK);
|
EndModal(wxID_OK);
|
||||||
}
|
}
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
void DlgUser::OnCancel(wxCommandEvent& WXUNUSED(event) )
|
//void DlgUser::OnCancel(wxCommandEvent& WXUNUSED(event) )
|
||||||
{
|
// {
|
||||||
canceled = TRUE;
|
// canceled = TRUE;
|
||||||
EndModal(wxID_CANCEL);
|
// EndModal(wxID_CANCEL);
|
||||||
}
|
// }
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@@ -6,6 +6,7 @@
|
|||||||
// Created: 19991105
|
// Created: 19991105
|
||||||
// Copyright: (c) Mark Johnson
|
// Copyright: (c) Mark Johnson
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
|
// RCS-ID: $Id$
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
// DlgUser
|
// DlgUser
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
@@ -19,14 +20,18 @@
|
|||||||
class DlgUser: public wxDialog
|
class DlgUser: public wxDialog
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
bool canceled;
|
// bool canceled;
|
||||||
wxString s_DSN, s_User, s_Password;
|
wxString s_DSN, s_User, s_Password;
|
||||||
wxTextCtrl *tc_User, *tc_Password;
|
// wxTextCtrl *tc_User, *tc_Password;
|
||||||
|
wxStaticText *m_Label1, *m_Label2;
|
||||||
|
wxTextCtrl *m_UserName, *m_Password;
|
||||||
|
wxButton *m_OK, *m_Cancel;
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
DlgUser(wxWindow *parent, const wxString& title, const wxPoint& pos, const wxSize& size,const long style = wxDEFAULT_DIALOG_STYLE);
|
DlgUser(wxWindow *parent, const wxString& title);
|
||||||
void OnInit();
|
void OnInit();
|
||||||
void OnOk(wxCommandEvent& event);
|
void OnOk(wxCommandEvent& event);
|
||||||
void OnCancel(wxCommandEvent& event);
|
// void OnCancel(wxCommandEvent& event);
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
DECLARE_EVENT_TABLE()
|
DECLARE_EVENT_TABLE()
|
||||||
};
|
};
|
||||||
|
@@ -7,6 +7,7 @@
|
|||||||
// Created: 19990808
|
// Created: 19990808
|
||||||
// Copyright: (c) Mark Johnson
|
// Copyright: (c) Mark Johnson
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
|
// RCS-ID: $Id$
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
//-- all #ifdefs that the whole Project needs. ------------------------------
|
//-- all #ifdefs that the whole Project needs. ------------------------------
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
@@ -6,6 +6,7 @@
|
|||||||
// Created: 19990808
|
// Created: 19990808
|
||||||
// Copyright: (c) Mark Johnson
|
// Copyright: (c) Mark Johnson
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
|
// RCS-ID: $Id$
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
//-- Some Global Vars ------------------------------------------------------
|
//-- Some Global Vars ------------------------------------------------------
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
// Author: Mark Johnson
|
// Author: Mark Johnson
|
||||||
// Modified by: 19990806.mj10777
|
// Modified by: 19990806.mj10777
|
||||||
// Created: 19991010
|
// Created: 19991010
|
||||||
// RCS-ID:
|
// RCS-ID: $Id$
|
||||||
// Copyright: (c) Mark Johnson, Berlin Germany, mj10777@gmx.net
|
// Copyright: (c) Mark Johnson, Berlin Germany, mj10777@gmx.net
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
@@ -264,7 +264,7 @@ void PgmCtrl::OnUserPassword()
|
|||||||
// wxMessageBox(SaveDSN);
|
// wxMessageBox(SaveDSN);
|
||||||
int i, rc=0;
|
int i, rc=0;
|
||||||
//-------------------------------------------
|
//-------------------------------------------
|
||||||
DlgUser p_Dlg(this, "Username and Password", wxPoint(100, 100), wxSize(340, 170));
|
DlgUser p_Dlg(this, "Username and Password");
|
||||||
//-------------------------------------------
|
//-------------------------------------------
|
||||||
for (i=0;i<pDoc->i_DSN;i++)
|
for (i=0;i<pDoc->i_DSN;i++)
|
||||||
{
|
{
|
||||||
@@ -274,22 +274,26 @@ void PgmCtrl::OnUserPassword()
|
|||||||
p_Dlg.s_User = (pDoc->p_DSN+i)->Usr;
|
p_Dlg.s_User = (pDoc->p_DSN+i)->Usr;
|
||||||
p_Dlg.s_Password = (pDoc->p_DSN+i)->Pas;
|
p_Dlg.s_Password = (pDoc->p_DSN+i)->Pas;
|
||||||
p_Dlg.OnInit();
|
p_Dlg.OnInit();
|
||||||
|
p_Dlg.Fit();
|
||||||
//--------------------
|
//--------------------
|
||||||
// Temp0.Printf("i(%d) ; s_DSN(%s) ; s_User(%s) ; s_Password(%s)",i,p_Dlg.s_DSN,p_Dlg.s_User,p_Dlg.s_Password);
|
// Temp0.Printf("i(%d) ; s_DSN(%s) ; s_User(%s) ; s_Password(%s)",i,p_Dlg.s_DSN,p_Dlg.s_User,p_Dlg.s_Password);
|
||||||
// wxMessageBox(Temp0);
|
// wxMessageBox(Temp0);
|
||||||
|
bool OK = FALSE;
|
||||||
if (p_Dlg.ShowModal() == wxID_OK)
|
if (p_Dlg.ShowModal() == wxID_OK)
|
||||||
{
|
{
|
||||||
(pDoc->p_DSN+i)->Usr = p_Dlg.s_User;
|
(pDoc->p_DSN+i)->Usr = p_Dlg.s_User;
|
||||||
(pDoc->p_DSN+i)->Pas = p_Dlg.s_Password;
|
(pDoc->p_DSN+i)->Pas = p_Dlg.s_Password;
|
||||||
(pDoc->db_Br+i)->UserName = (pDoc->p_DSN+i)->Usr;
|
(pDoc->db_Br+i)->UserName = (pDoc->p_DSN+i)->Usr;
|
||||||
(pDoc->db_Br+i)->Password = (pDoc->p_DSN+i)->Pas;
|
(pDoc->db_Br+i)->Password = (pDoc->p_DSN+i)->Pas;
|
||||||
|
OK = TRUE;
|
||||||
}
|
}
|
||||||
p_Dlg.Destroy();
|
p_Dlg.Destroy();
|
||||||
|
if (!OK) return;
|
||||||
//--------------------
|
//--------------------
|
||||||
goto Weiter; // We have what we want, leave
|
break; // We have what we want, leave
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Weiter:
|
|
||||||
//-------------------------------------------
|
//-------------------------------------------
|
||||||
SaveDSN.Empty();
|
SaveDSN.Empty();
|
||||||
}
|
}
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
// Author: Mark Johnson
|
// Author: Mark Johnson
|
||||||
// Modified by: 19990806.mj10777
|
// Modified by: 19990806.mj10777
|
||||||
// Created: 19991010
|
// Created: 19991010
|
||||||
// RCS-ID:
|
// RCS-ID: $Id$
|
||||||
// Copyright: (c) Mark Johnson, Berlin Germany, mj10777@gmx.net
|
// Copyright: (c) Mark Johnson, Berlin Germany, mj10777@gmx.net
|
||||||
// Licence: wxWindows license
|
// Licence: wxWindows license
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
@@ -1,3 +1,5 @@
|
|||||||
|
// RCS-ID: $Id$
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
//-- all #includes that the whole Project needs. ----------------------------
|
//-- all #includes that the whole Project needs. ----------------------------
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
Reference in New Issue
Block a user