diff --git a/demos/dbbrowse/help.de/compiler.htm b/demos/dbbrowse/help.de/compiler.htm index d1b8747402..5b3945ef64 100644 --- a/demos/dbbrowse/help.de/compiler.htm +++ b/demos/dbbrowse/help.de/compiler.htm @@ -1,50 +1,50 @@
|
-
---|
+
|
+
---|
Stand: 2000-01-23.01-mj10777
![]() ![]() | ![]() |
---|
wxWindows CVS 21.01.2000 18:00 | Statische Bibliothek nmake -f makefile.vc FINAL=1 |
---|
Mark Johnson, Berlin Germany | Kleine .EXE und stable |
---|
![]() ![]() | ![]() |
+
---|
wxWindows CVS 21.01.2000 18:00 | Statische Bibliothek nmake -f makefile.vc FINAL=1 |
---|
Mark Johnson, Berlin Germany | Kleine .EXE und stable |
---|
![]() ![]() | ![]() |
---|
wxWindows CVS 21.01.2000 18:00 | Statische Bibliothek make -f makefile.g95 |
---|
Mark Johnson, Berlin Germany | Große .EXE und instable |
---|
![]() ![]() | ![]() |
+
---|
wxWindows CVS 21.01.2000 18:00 | Statische Bibliothek make -f makefile.g95 |
---|
Mark Johnson, Berlin Germany | Große .EXE und instable |
---|
![]() ![]() | ![]() |
---|
wxWindows ![]() | ?? |
---|
?? | ?? |
---|
![]() ![]() | ![]() |
+
---|
wxWindows ![]() | ?? |
---|
?? | ?? |
---|
![]() ![]() | ![]() |
---|
wxWindows ![]() | ?? |
---|
?? | ?? |
---|
![]() ![]() | ![]() |
+
---|
wxWindows ![]() | ?? |
---|
?? | ?? |
---|
|
-
---|
+
|
+
---|
Stand: 2000-01-22.01-mj10777
- | - |
---|
- | - |
---|
- | - |
---|
(deutsch) |
-
---|
+
(deutsch) |
+
---|
Stand: 2000-01-23.01-mj10777
Es gibt 2 neue wxDB Funktionen : |
---|
Es gibt 2 neue wxDB Funktionen : | +
---|
wxColInf *wxDB::GetColumns(char *tableName, int *numCols, const char *userID) |
---|
Diese Funktion sichert alle (int numCols) Informationen aus der Tabelle (char *tableName). Es gibt das Ergebnis in eine wxColInf Stuktur (Klasse) |
---|
wxColInf *wxDB::GetColumns(char *tableName, int *numCols, const char *userID) | +
---|
Diese Funktion sichert alle (int numCols) Informationen aus der Tabelle (char *tableName). Es gibt das Ergebnis in eine wxColInf Stuktur (Klasse) |
+
---|
-
int wxDB::GetKeyFields(char *tableName, wxColInf* colInf,int noCols) |
---|
Versucht herauszufinden ob irgend welche (int noCols) Spalten (wxColInf* colInf) aus der Tabelle (char *tableName) ![]() ![]() Diese Funktion wird aus GetColumns() aufgerufen. |
---|
int wxDB::GetKeyFields(char *tableName, wxColInf* colInf,int noCols) | +
---|
Versucht herauszufinden ob irgend welche (int noCols) Spalten (wxColInf* colInf) aus der Tabelle (char *tableName) ![]() ![]() Diese Funktion wird aus GetColumns() aufgerufen. + |
---|
Es gibt 4 neue wxDB Klassen (Strukturen) : |
---|
Es gibt 4 neue wxDB Klassen (Strukturen) : | +
---|
-
wxDbInf |
---|
- Diese Klasse speichert alle ODBC-Informationen für einen Datenbank : - Katalogeintrag (char catalog[128+1]), - Schema (char schema[128+1]) - der Anzahl gefundene Tabellen (int numTables) - und eine Zeiger auf der (wxTableInf* pTableInf) Struktur. - |
---|
wxDbInf | +
---|
+ Diese Klasse speichert alle ODBC-Informationen für einen Datenbank : + Katalogeintrag (char catalog[128+1]), + Schema (char schema[128+1]) + der Anzahl gefundene Tabellen (int numTables) + und eine Zeiger auf der (wxTableInf* pTableInf) Struktur. + |
+
---|
-
wxTableInf |
---|
- Diese Klasse speichert alle ODBC-Informationen für einen Tabelle : - Tabellename (char tableName[DB_MAX_TABLE_NAME_LEN+1]), - Tabelletyp (char tableType[254+1]) - "TABLE", "SYSTEM TABLE" etc. , - Tabellen Bemerkungen (char tableRemarks[254+1]), - der Anzahl gefundene Spalten (int numCols) - und eine Zeiger auf der (wxColInf* pColInf) Struktur. - |
---|
wxTableInf | +
---|
+ Diese Klasse speichert alle ODBC-Informationen für einen Tabelle : + Tabellename (char tableName[DB_MAX_TABLE_NAME_LEN+1]), + Tabelletyp (char tableType[254+1]) - "TABLE", "SYSTEM TABLE" etc. , + Tabellen Bemerkungen (char tableRemarks[254+1]), + der Anzahl gefundene Spalten (int numCols) + und eine Zeiger auf der (wxColInf* pColInf) Struktur. + |
+
---|
-
wxColInf |
---|
- Diese Klasse speichert alle ODBC-Informationen für einen Spalte : - Katalogeintrag (char catalog[128+1]), - Schema (char schema[128+1]) - Tabellename (char tableName[DB_MAX_TABLE_NAME_LEN+1]), - Spaltenname (char colName[DB_MAX_COLUMN_NAME_LEN+1]), - Datentyp (aus SQL) (SWORD sqlDataType), - Datatyp-Name(aus SQL) (char typeName[128+1]), - Spaltengröße(aus SQL) (SWORD columnSize), - Pufferlänge(aus SQL) (SWORD bufferLength), - Dezimalstellen(aus SQL) (short decimalDigets), - numPrecRadix (aus SQL) (short numPrecRadix), - Null-Fähig (aus SQL) (short nullable), - Bemerkungen (char remarks[254+1]), - Datatype (from wxDB) (int dbDataType), - Primärschlüssel (int PkCol) 0=Nein; 1= Erste Schlüssel, 2 = Zweite Schlüssel usw., - Tabllennamen die diese Schlüssel als Fremdschlüssel verwenden (char PkTableName[DB_MAX_TABLE_NAME_LEN+1]), - Foreign-Key (int FkCol) 0=Nein; 1= Erste Schlüssel, 2 = Zweite Schlüssel usw., - Tabellename wo diese Fremdschlüssel als Primärschlüssel (char FkTableName[DB_MAX_TABLE_NAME_LEN+1]), - und eine Zeiger auf der (wxColFor* pColFor) Struktur. - |
---|
wxColInf | +
---|
+ Diese Klasse speichert alle ODBC-Informationen für einen Spalte : + Katalogeintrag (char catalog[128+1]), + Schema (char schema[128+1]) + Tabellename (char tableName[DB_MAX_TABLE_NAME_LEN+1]), + Spaltenname (char colName[DB_MAX_COLUMN_NAME_LEN+1]), + Datentyp (aus SQL) (SWORD sqlDataType), + Datatyp-Name(aus SQL) (char typeName[128+1]), + Spaltengröße(aus SQL) (SWORD columnSize), + Pufferlänge(aus SQL) (SWORD bufferLength), + Dezimalstellen(aus SQL) (short decimalDigets), + numPrecRadix (aus SQL) (short numPrecRadix), + Null-Fähig (aus SQL) (short nullable), + Bemerkungen (char remarks[254+1]), + Datatype (from wxDB) (int dbDataType), + Primärschlüssel (int PkCol) 0=Nein; 1= Erste Schlüssel, 2 = Zweite Schlüssel usw., + Tabllennamen die diese Schlüssel als Fremdschlüssel verwenden (char PkTableName[DB_MAX_TABLE_NAME_LEN+1]), + Foreign-Key (int FkCol) 0=Nein; 1= Erste Schlüssel, 2 = Zweite Schlüssel usw., + Tabellename wo diese Fremdschlüssel als Primärschlüssel (char FkTableName[DB_MAX_TABLE_NAME_LEN+1]), + und eine Zeiger auf der (wxColFor* pColFor) Struktur. + |
+
---|
-
wxColFor |
---|
- Diese Klasse speichert wie diese Spalte als String formatiert werden soll : - Ausgabestring (wxString s_Field), - Formatierte Objekten (TIMESTAMP needs 7) (wxString s_Format[7]), - Formatierte Objekten (wxString s_Menge[7]), - Formatierte Objekten (TT MM YYYY HH MM SS m) (int i_Menge[7]), - Nation (0=timestamp,1=EU,2=UK,3=International,4=US)int i_Nation), - Datatyp (aus wxDB) (int I_dbDataType), - Datatyp (aus SQL) (SWORD i_sqlDataType), - int Format(int Nation, int dbDataType,SWORD sqlDataType,short columnSize,short decimalDigits); - Die Formatierte Objekten bekommen Standardwerte und Format() wird aufgerufen. - Die Programmierer können, wenn sie was besonderes haben wollen , diese Werte Ändern und Format() nochmal aufrufen. - |
---|
Diese Klasse ist eindeutig unterentwickelt ! Es wurde erstmal zur Verwirklichung von DBGrid erstellt. Änderungen sind Wahrscheinlich. (Vorschläge sind Willkommen) |
---|
+
wxColFor | +
---|
+ Diese Klasse speichert wie diese Spalte als String formatiert werden soll : + Ausgabestring (wxString s_Field), + Formatierte Objekten (TIMESTAMP needs 7) (wxString s_Format[7]), + Formatierte Objekten (wxString s_Menge[7]), + Formatierte Objekten (TT MM YYYY HH MM SS m) (int i_Menge[7]), + Nation (0=timestamp,1=EU,2=UK,3=International,4=US)int i_Nation), + Datatyp (aus wxDB) (int I_dbDataType), + Datatyp (aus SQL) (SWORD i_sqlDataType), + int Format(int Nation, int dbDataType,SWORD sqlDataType,short columnSize,short decimalDigits); + Die Formatierte Objekten bekommen Standardwerte und Format() wird aufgerufen. + Die Programmierer können, wenn sie was besonderes haben wollen , diese Werte Ändern und Format() nochmal aufrufen. + |
+
---|
Diese Klasse ist eindeutig unterentwickelt ! Es wurde erstmal zur Verwirklichung von DBGrid erstellt. Änderungen sind Wahrscheinlich. (Vorschläge sind Willkommen) |
+
---|
-
Damit ist wohl alles klar, oder ? |
---|
Damit ist wohl alles klar, oder ? | +
---|
(English) |
-
---|
+
(English) |
+
---|
Stand: 2000-01-23.01-mj10777
![]() |
---|
![]() |
+
---|
How does it work ? |
---|
How does it work ? | +
---|
Basicly you use a 3 Dimentional Dynamic Array |
---|
wxDBInf --> wxTableInf --> wxColInf |
---|
+
Basicly you use a 3 Dimentional Dynamic Array | +
---|
wxDBInf --> wxTableInf --> wxColInf | +
---|
-
Using DBBrowser as the Example, I will try to explain how it works |
---|
Sorry, the rest will have to come later !! |
---|
Using DBBrowser as the Example, I will try to explain how it works | +
---|
Sorry, the rest will have to come later !! | +
---|
+ |
---|
+ |
---|
+ |
---|
- -
Well now, that makes everything clear does't it? |
---|
+ |
---|
+
Well now, that makes everything clear does't it? | +
---|
|
-
---|
+
|
+
---|
Stand: 2000-01-22.01-mj10777
Welche Icons werden für was verwendet ? |
---|
*.xpm sind nicht auf ![]() |
---|
![]() | dbtree.cpp : ODBC Spalte in eine Tabelle (weder Primär- noch Fremdschlüssel) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() | pgmctrl + dbtree.cpp : letzte Baumzweig (nicht angeklickt) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | pgmctrl + dbtree.cpp : letzte Baumzweig (angeklickt) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | gute Frage | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | pgmctrl.cpp : Hauptzweig der ODBC-Datenquellebaum (nicht angeklickt) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | pgmctrl.cpp : Hauptzweig der ODBC-Datenquellebaum (angeklickt) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | pgmctrl.cpp : Hauptzweig der Programm-Einstellungsbaum (nicht angeklickt) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | pgmctrl.cpp : Hauptzweig der Programm-Einstellungsbaum (angeklickt) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | dbtree.cpp : ODBC Primärschlüssel-Spalte in eine Tablle | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | dbtree.cpp : ODBC Fremdschlüssel-Spalte in eine Tablle | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Programm Logo | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | pgmctrl.cpp : Tab Bitmap | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | dbtree.cpp : ODBC Table | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | dbtree.cpp : ODBC View |
Welche Icons werden für was verwendet ? | +
---|
*.xpm sind nicht auf ![]() |
+
---|
![]() | dbtree.cpp : ODBC Spalte in eine Tabelle (weder Primär- noch Fremdschlüssel) |
---|---|
![]() | pgmctrl + dbtree.cpp : letzte Baumzweig (nicht angeklickt) |
![]() | pgmctrl + dbtree.cpp : letzte Baumzweig (angeklickt) |
![]() | gute Frage |
![]() | pgmctrl.cpp : Hauptzweig der ODBC-Datenquellebaum (nicht angeklickt) |
![]() | pgmctrl.cpp : Hauptzweig der ODBC-Datenquellebaum (angeklickt) |
![]() | pgmctrl.cpp : Hauptzweig der Programm-Einstellungsbaum (nicht angeklickt) |
![]() | pgmctrl.cpp : Hauptzweig der Programm-Einstellungsbaum (angeklickt) |
![]() | dbtree.cpp : ODBC Primärschlüssel-Spalte in eine Tablle |
![]() | dbtree.cpp : ODBC Fremdschlüssel-Spalte in eine Tablle |
![]() | Programm Logo |
![]() | pgmctrl.cpp : Tab Bitmap |
![]() | dbtree.cpp : ODBC Table |
![]() | dbtree.cpp : ODBC View |
Alle andere Pictograms werden nicht in DBBrowser verwendet. (sind .png Files) |
+
---|
Hoffentlich wird der Zeit bald kommen, wo man auschlie_lich XPM Dateien verwenden darf. |
---|
Alle andere Pictograms werden nicht in DBBrowser verwendet. (sind .png Files) |
-
---|
Hoffentlich wird der Zeit bald kommen, wo man auschlie_lich XPM Dateien verwenden darf. | -
---|
|
-
---|
+
|
+
---|
Stand: 2000-01-23.01-mj10777
Die wahre Bedeutung der verwendete Pictograms in diese Hilfe Dateien |
---|
Alle Pictograms sind .PNG Dateien (Portable Network Graphics) Ich verwende Paint Shop Pro 5.01 um diese Dateien zuerstellen. |
---|
![]() | Seite ist nicht fertig | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() | GNU Logo : gcc 2.95 Compiler | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | GTK Logo : Grafische Bibliothek in Linux | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | KDE Logo : Grafische System in Linux | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Linux Logo : Linux (Allgemein) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Motif Logo : Grafische Bibliothek in Linux (ist diese Logo korrect ?) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Microsoft VC++ Logo : VC++ 6.0 Compiler | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | ODBC Logo | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Remstar Logo : Remstar ODBC-Klassen (http://www.remstar.com) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Redhat Logo : Linux Vertreiber (http://www.redhat.com / .de) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | SuSE Logo : Linux Vertreiber (http://www.suse.com / .de) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Server Logo | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Windows Logo : Windows (Allgemein) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Windows-NT Logo : Windows-NT speziefisch |
Die wahre Bedeutung der verwendete Pictograms in diese Hilfe Dateien | +
---|
Alle Pictograms sind .PNG Dateien (Portable Network Graphics) Ich verwende Paint Shop Pro 5.01 um diese Dateien zuerstellen. |
+
---|
![]() | Seite ist nicht fertig |
---|---|
![]() | GNU Logo : gcc 2.95 Compiler |
![]() | GTK Logo : Grafische Bibliothek in Linux |
![]() | KDE Logo : Grafische System in Linux |
![]() | Linux Logo : Linux (Allgemein) |
![]() | Motif Logo : Grafische Bibliothek in Linux (ist diese Logo korrect ?) |
![]() | Microsoft VC++ Logo : VC++ 6.0 Compiler |
![]() | ODBC Logo |
![]() | Remstar Logo : Remstar ODBC-Klassen (http://www.remstar.com) |
![]() | Redhat Logo : Linux Vertreiber (http://www.redhat.com / .de) |
![]() | SuSE Logo : Linux Vertreiber (http://www.suse.com / .de) |
![]() | Server Logo |
![]() | Windows Logo : Windows (Allgemein) |
![]() | Windows-NT Logo : Windows-NT speziefisch |
Alle andere Pictograms sind .PNG-Kopien von der DBBrowser-Icons. |
---|
Alle andere Pictograms sind .PNG-Kopien von der DBBrowser-Icons. | -
---|
|
-
---|
+
|
+
---|
Stand: 2000-02-04.01-mj10777 -
Allgemein |
---|
Problem : ![]() | Nur gcc 2.95 Compiler : Assurt failed in file ../../src/msw/fontutil.cpp at line 238: unknown font slant |
---|---|
Lösung : | nicht bekannt |
-
Problem : ![]() | Nur gcc 2.95 Compiler : Assurt failed in file ../../src/msw/fontutil.cpp at line 249: unknown font weight |
---|---|
Lösung : | nicht bekannt |
-
wxHtmlHelpController |
---|
Problem : | Wenn der Hilfe geschlossen wird wenn der Voll-HTML-Seite Modus an ist - sieht man nichts wenn Hilfe wieder gestartet wird. (Seite ist Grau) |
---|
Taste Links-Oben drücken um in die geteilte Seitenmodus wiederzugelangen. |
---|
Allgemein |
---|
Lösung : | unbekannt |
---|
Problem : ![]() | Nur gcc 2.95 Compiler : Assurt failed in file ../../src/msw/fontutil.cpp at line 238: unknown font slant |
---|---|
Lösung : | nicht bekannt |
- -
Problem : | Die Rechteseite (HTLM-Seite) bldttert nicht bei der Verwendung der Maus-Mittelrad. Auf der Linkeseite funktioniert es. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Lösung : | unbekannt |
Problem : ![]() | Nur gcc 2.95 Compiler : Assurt failed in file ../../src/msw/fontutil.cpp at line 249: unknown font weight |
---|---|
Lösung : | nicht bekannt |
- -
Problem : | Warum Funktioniert die Aktulisierungs-Taste (F5) nicht? |
---|---|
Solution : | pDoc->p_Hilfe-> Display("GUp_Mask_Kunden.htm#Sonstiges"); |
- -
Problem : | Wie kann die Hilfe Themenbezogen aufgerufen werden ? Eine bestimmte Seite wird ervffnet |
---|---|
Lösung : | unbekannt |
- -
Problem : | Bilder, die mit HelpView zusehen sind, erscheint nicht wenn OnHelp() aufgerufen wird. |
---|
wxHtmlHelpController |
---|
Logbuch : Warning: No handler found for image type. Warnung: Kein Handler für Bildtyp gefunden Warum kamm diese Text nicht auf Deutsch ? |
---|
Problem : | Wenn der Hilfe geschlossen wird wenn der Voll-HTML-Seite Modus an ist - sieht man nichts wenn Hilfe wieder gestartet wird. (Seite ist Grau) |
---|
Lösung : | Folgende Zeilen in DBBrowser.cpp(MyApp::OnInit()) hinzugefügt: #if wxUSE_LIBPNG wxImage::AddHandler( new wxPNGHandler ); #endif |
---|
Taste Links-Oben drücken um in die geteilte Seitenmodus wiederzugelangen. | +
---|
Lösung : | unbekannt | +
---|
+ +
Problem : | Die Rechteseite (HTLM-Seite) bldttert nicht bei der Verwendung der Maus-Mittelrad. Auf der Linkeseite funktioniert es. |
---|---|
Lösung : | unbekannt |
+ +
Problem : | Warum Funktioniert die Aktulisierungs-Taste (F5) nicht? |
---|---|
Solution : | pDoc->p_Hilfe-> Display("GUp_Mask_Kunden.htm#Sonstiges"); |
+ +
Problem : | Wie kann die Hilfe Themenbezogen aufgerufen werden ? Eine bestimmte Seite wird ervffnet |
---|---|
Lösung : | unbekannt |
+ +
Problem : | Bilder, die mit HelpView zusehen sind, erscheint nicht wenn OnHelp() aufgerufen wird. | +
---|
Logbuch : Warning: No handler found for image type. Warnung: Kein Handler für Bildtyp gefunden Warum kamm diese Text nicht auf Deutsch ? |
+
---|
Lösung : | Folgende Zeilen in DBBrowser.cpp(MyApp::OnInit()) hinzugefügt: #if wxUSE_LIBPNG wxImage::AddHandler( new wxPNGHandler ); #endif |
---|
-
wxGrid (Neue Version) |
---|
Problem : | Wenn wxGrid in wxPaggedWindows verwendet wird, funktioniert die Scrollbars nicht. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Lösung : | 04.02.2000 : mit neue Grid Version gelößt |
wxGrid (Neue Version) | +
---|
Problem : | Wenn wxGrid in wxPaggedWindows verwendet wird, funktioniert die Scrollbars nicht. |
---|---|
Lösung : | 04.02.2000 : mit neue Grid Version gelößt |
-
wxGrid (newe Version) 04.02.2000 |
---|
Problem : | Often : Error: wxGrid::CreateGrid(numRows, numCols) called more than once | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Solution : | in Arbeit |
wxGrid (newe Version) 04.02.2000 | +
---|
Problem : | Often : Error: wxGrid::CreateGrid(numRows, numCols) called more than once |
---|---|
Solution : | in Arbeit |
-
ndchste Problem |
---|
Problem : | irgend etwas taucht schon auf, wie immer. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Lösung : | unbekannt |
ndchste Problem | +
---|
Problem : | irgend etwas taucht schon auf, wie immer. |
---|---|
Lösung : | unbekannt |
|
-
---|
+
|
+
---|
Stand: 2000-01-22.01-mj10777
TODO |
---|
TODO | +
---|
|
-
---|
+
|
+
---|
Stand: 2000-01-22.01-mj10777
Blau (CCFFFF) |
---|
Gelb (FFFFAA) | Hellgelb (FFFFE0) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Hellgrün <TH BGCOLOR=#CCFFCC> Hintergrundsfarbe für diese teil der Tabelle | <BODY BGCOLOR=#C6DFC6> Seitehintergrundsfarbe |
Blau (CCFFFF) | +
---|
Gelb (FFFFAA) | Hellgelb (FFFFE0) |
---|---|
Hellgrün <TH BGCOLOR=#CCFFCC> Hintergrundsfarbe für diese teil der Tabelle | <BODY BGCOLOR=#C6DFC6> Seitehintergrundsfarbe |
Gold <TR BGCOLOR=#FFF777> Hintergrundsfarbe für die Gesamte Tabelle |
+
---|
Rosa (FFBBBB) |
---|
Gold <TR BGCOLOR=#FFF777> Hintergrundsfarbe für die Gesamte Tabelle |
-
---|
Rosa (FFBBBB) | -
---|
|
-
---|
+
|
+
---|
Stand: 2000-01-22.01-mj10777
DBBrowser xx |
---|
xx = Sprache | cz, de, fr, pl und std (englisch) |
---|
DBBrowser xx | +
---|
xx = Sprache | cz, de, fr, pl und std (englisch) | +
---|
Zur Zeit gibt es für Tschechisch (cz), Französch (fr) und Polnisch (pl) keine Hilfe Texte Alles wurde aber dafür vorbereitet und der lokale wird gesetzt. |
+
---|
DBBrowser wird diese Einstellung solange verwenden bis sie geändert werden (also auch nach Programm Neustart). (wxConfigBase) In "Programm Einstellungen" kann man (zur Zeit nur) zwischen englisch und deutsch hin und her umschalten. |
---|
Zur Zeit gibt es für Tschechisch (cz), Französch (fr) und Polnisch (pl) keine Hilfe Texte Alles wurde aber dafür vorbereitet und der lokale wird gesetzt. |
-
---|
DBBrowser wird diese Einstellung solange verwenden bis sie geändert werden (also auch nach Programm Neustart). (wxConfigBase) In "Programm Einstellungen" kann man (zur Zeit nur) zwischen englisch und deutsch hin und her umschalten. |
-
---|
|
-
---|
+
|
+
---|
Stand: 2000-01-22.01-mj10777 -
Allgemein |
---|
Funktion : | Wann wird es Möglich mehr als eine DSN / DBGrid Fenster aufzumachen? |
---|---|
Zeitplan : | bald, da es für mich wichtig ist. |
- -
DBGrid |
---|
Funktion : | Unterstützung für Neue, Löschen und Ändern eines Datensatz. |
---|---|
Zeitplan : | Irgenwann Während meine jetztige Projekt. |
- -
DBGrid |
---|
Funktion : | Wann werden Datensätze erst dann eingelesen wenn benötigt wird (Scrolling) ? |
---|---|
Zeitplan : | Diese Funktion in für wxGrid geplannt. Ich hoffe bald. |
- -
DBTree |
---|
Funktion : | Wann kann DBBrowser eine wxDB und wxTable .cpp/.h Dateien erstellen ? |
---|---|
Zeitplan : | Die Funktionen OnDBClass(); OnClass() und OnClassAll(); sind dafür vorbereitet.. Für mich ist es nicht so wichtig. Irgend jemand wird es schon machen (vielleicht für wxStudio ?) |
- -
24.01.2000 : George Tasker |
---|
Have USER NAME and PASSWORD text widgets, or a menu item to enter them. | -25.01.2000 - done but must be tested - |
---|
Rather than have the "40 DSN's found" message at the end of the log book, Put that in the status bar of the frame. | -24.01.2000 - Done - |
---|
Make the grid cells READ-ONLY, since this is a browser (unless you want to make it an editor too -- good idea!) | -25.01.2000 - done : right mouse click on any grid lable and on popupmenu clicken - |
---|
Sort the DSNs in alphabetical order before putting them in the tree | -26.01.2000 - done - | +
---|
Allgemein |
---|
Have program settings available from a TOOLS / OPTIONS menu | -Willdo - |
---|
Funktion : | Wann wird es Möglich mehr als eine DSN / DBGrid Fenster aufzumachen? |
---|---|
Zeitplan : | bald, da es für mich wichtig ist. |
-
neue Funktion |
---|
Funktion : | irgend etwas taucht schon auf, wie immer. | ||||||
---|---|---|---|---|---|---|---|
Zeitplan : | unknown |
DBGrid | +
---|
Funktion : | Unterstützung für Neue, Löschen und Ändern eines Datensatz. |
---|---|
Zeitplan : | Irgenwann Während meine jetztige Projekt. |
+ +
DBGrid | +
---|
Funktion : | Wann werden Datensätze erst dann eingelesen wenn benötigt wird (Scrolling) ? |
---|---|
Zeitplan : | Diese Funktion in für wxGrid geplannt. Ich hoffe bald. |
+ +
DBTree | +
---|
Funktion : | Wann kann DBBrowser eine wxDB und wxTable .cpp/.h Dateien erstellen ? |
---|---|
Zeitplan : | Die Funktionen OnDBClass(); OnClass() und OnClassAll(); sind dafür vorbereitet.. Für mich ist es nicht so wichtig. Irgend jemand wird es schon machen (vielleicht für wxStudio ?) |
+ +
24.01.2000 : George Tasker | +
---|
Have USER NAME and PASSWORD text widgets, or a menu item to enter them. | +25.01.2000 - done but must be tested | +
---|
Rather than have the "40 DSN's found" message at the end of the log book, Put that in the status bar of the frame. | +24.01.2000 - Done | +
---|
Make the grid cells READ-ONLY, since this is a browser (unless you want to make it an editor too -- good idea!) | +25.01.2000 - done : right mouse click on any grid lable and on popupmenu clicken | +
---|
Sort the DSNs in alphabetical order before putting them in the tree | +26.01.2000 - done | +
---|
Have program settings available from a TOOLS / OPTIONS menu | +Willdo | +
---|
neue Funktion |
---|
Funktion : | irgend etwas taucht schon auf, wie immer. |
---|---|
Zeitplan : | unknown |
(deutsch) |
-
---|
+
(deutsch) |
+
---|
Stand: 2000-01-23.01-mj10777
Es gibt 2 neue wxDB Funktionen : |
---|
Es gibt 2 neue wxDB Funktionen : | +
---|
Beschreibung der neue GetColumns() | -und GetKeyFields() wxDbInf wxTableInf wxColInf wxColFor |
+
---|
Beschreibung der neue GetColumns() | +und GetKeyFields() wxDbInf wxTableInf wxColInf wxColFor |
---|---|
Wie verwendet man die neue GetColumns() | -und GetKeyFields() wxDbInf wxTableInf wxColInf wxColFor |
-
Die andere GetColumns() hat sich nicht geÄndert. Die dort verwendete CcolInf is allerdings, in wirklichkeit, ein wxColInf ! (typedef wxColInf CcolInf;) |
---|
Die andere GetColumns() hat sich nicht geÄndert. Die dort verwendete CcolInf is allerdings, in wirklichkeit, ein wxColInf ! (typedef wxColInf CcolInf;) |
+
---|
|
-
---|
+
|
+
---|
Stand: 2000-01-22.01-mj10777
Diese Klasse wird in DBBrowser nicht verwendet! |
---|
Diese Klasse wird in DBBrowser nicht verwendet! | +
---|
|
-
---|
+
|
+
---|
Stand: 2000-01-22.01-mj10777
![]() ![]() | ![]() |
---|
wxWindows CVS 21.01.2000 18:00 | Static Library nmake -f makefile.vc FINAL=1 |
---|
Mark Johnson, Berlin Germany | Small .EXE and stable |
---|
![]() ![]() | ![]() |
+
---|
wxWindows CVS 21.01.2000 18:00 | Static Library nmake -f makefile.vc FINAL=1 |
+
---|
Mark Johnson, Berlin Germany | Small .EXE and stable | +
---|
![]() ![]() | ![]() |
---|
wxWindows CVS 21.01.2000 18:00 | Static Library make -f makefile.g95 |
---|
Mark Johnson, Berlin Germany | Big .EXE and unstable |
---|
![]() ![]() | ![]() |
+
---|
wxWindows CVS 21.01.2000 18:00 | Static Library make -f makefile.g95 |
+
---|
Mark Johnson, Berlin Germany | Big .EXE and unstable | +
---|
![]() ![]() | ![]() |
---|
wxWindows ![]() | ?? |
---|
?? | ?? |
---|
![]() ![]() | ![]() |
+
---|
wxWindows ![]() | ?? | +
---|
?? | ?? | +
---|
![]() ![]() | ![]() |
---|
wxWindows ![]() | ?? |
---|
?? | ?? |
---|
![]() ![]() | ![]() |
+
---|
wxWindows ![]() | ?? | +
---|
?? | ?? | +
---|
|
-
---|
+
|
+
---|
Stand: 2000-01-22.01-mj10777
- | - |
---|
- | - |
---|
- | - |
---|
(English) |
-
---|
+
(English) |
+
---|
Stand: 2000-01-23.01-mj10777
There are 2 new wxDB Functions : |
---|
There are 2 new wxDB Functions : | +
---|
wxColInf *wxDB::GetColumns(char *tableName, int *numCols, const char *userID) |
---|
This Function stores all (int numCols) information from the Table (char *tableName). It returns the result in a wxColInf Stucture (Class) |
---|
wxColInf *wxDB::GetColumns(char *tableName, int *numCols, const char *userID) | +
---|
This Function stores all (int numCols) information from the Table (char *tableName). It returns the result in a wxColInf Stucture (Class) |
+
---|
-
int wxDB::GetKeyFields(char *tableName, wxColInf* colInf,int noCols) |
---|
Tries to find out if any (int noCols) of the columns (wxColInf* colInf) in the Table (char *tableName) are ![]() ![]() This Function is only called from GetColumns(). |
---|
int wxDB::GetKeyFields(char *tableName, wxColInf* colInf,int noCols) | +
---|
Tries to find out if any (int noCols) of the columns (wxColInf* colInf) in the Table (char *tableName) are ![]() ![]() This Function is only called from GetColumns(). |
+
---|
There are 4 new wxDB Classes (Structures) : |
---|
There are 4 new wxDB Classes (Structures) : | +
---|
-
wxDbInf |
---|
- This Class stores all ODBC-Information for a Database : - Catalog Entry (char catalog[128+1]), - Schema (char schema[128+1]) - the number of Tables found(int numTables) - and a Pointer (wxTableInf* pTableInf) Structure is stored. - |
---|
wxDbInf | +
---|
+ This Class stores all ODBC-Information for a Database : + Catalog Entry (char catalog[128+1]), + Schema (char schema[128+1]) + the number of Tables found(int numTables) + and a Pointer (wxTableInf* pTableInf) Structure is stored. + |
+
---|
-
wxTableInf |
---|
- This Class stores all ODBC-Information about a Table : - Table-Name (char tableName[DB_MAX_TABLE_NAME_LEN+1]), - Table-Type (char tableType[254+1]) - "TABLE", "SYSTEM TABLE" etc. , - Table-Remarks (char tableRemarks[254+1]), - the number of Columns found(int numCols) - and a Pointer (wxColInf* pColInf) Structure is stored. - |
---|
wxTableInf | +
---|
+ This Class stores all ODBC-Information about a Table : + Table-Name (char tableName[DB_MAX_TABLE_NAME_LEN+1]), + Table-Type (char tableType[254+1]) - "TABLE", "SYSTEM TABLE" etc. , + Table-Remarks (char tableRemarks[254+1]), + the number of Columns found(int numCols) + and a Pointer (wxColInf* pColInf) Structure is stored. + |
+
---|
-
wxColInf |
---|
- This Class stores all ODBC-Information about a Column : - Catalog Entry (char catalog[128+1]), - Schema (char schema[128+1]) - Table-Name (char tableName[DB_MAX_TABLE_NAME_LEN+1]), - Column-Name (char colName[DB_MAX_COLUMN_NAME_LEN+1]), - Datatype (from SQL) (SWORD sqlDataType), - Data-Name(from SQL) (char typeName[128+1]), - Column size(from SQL) (SWORD columnSize), - Buffer length(from SQL) (SWORD bufferLength), - Decimal digits(from SQL) (short decimalDigits), - numPrecRadix (from SQL) (short numPrecRadix), - Nullable (from SQL) (short nullable), - Remarks (char remarks[254+1]), - Datatype (from wxDB) (int dbDataType), - Primary-Key (int PkCol) 0=No; 1= First Key, 2 = Second Key etc., - Tables that use this Key as a Foreign Key(char PkTableName[DB_MAX_TABLE_NAME_LEN+1]), - Foreign-Key (int FkCol) 0=No; 1= First Key, 2 = Second Key etc., - Table-Name where this Foreign-Key is Primary Key(char FkTableName[DB_MAX_TABLE_NAME_LEN+1]), - and a Pointer (wxColFor* pColFor) Structure is stored. - |
---|
wxColInf | +
---|
+ This Class stores all ODBC-Information about a Column : + Catalog Entry (char catalog[128+1]), + Schema (char schema[128+1]) + Table-Name (char tableName[DB_MAX_TABLE_NAME_LEN+1]), + Column-Name (char colName[DB_MAX_COLUMN_NAME_LEN+1]), + Datatype (from SQL) (SWORD sqlDataType), + Data-Name(from SQL) (char typeName[128+1]), + Column size(from SQL) (SWORD columnSize), + Buffer length(from SQL) (SWORD bufferLength), + Decimal digits(from SQL) (short decimalDigits), + numPrecRadix (from SQL) (short numPrecRadix), + Nullable (from SQL) (short nullable), + Remarks (char remarks[254+1]), + Datatype (from wxDB) (int dbDataType), + Primary-Key (int PkCol) 0=No; 1= First Key, 2 = Second Key etc., + Tables that use this Key as a Foreign Key(char PkTableName[DB_MAX_TABLE_NAME_LEN+1]), + Foreign-Key (int FkCol) 0=No; 1= First Key, 2 = Second Key etc., + Table-Name where this Foreign-Key is Primary Key(char FkTableName[DB_MAX_TABLE_NAME_LEN+1]), + and a Pointer (wxColFor* pColFor) Structure is stored. + |
+
---|
-
wxColFor |
---|
- This Class stores how this Column should be formated in a String : - Output String (wxString s_Field), - Formatted Objects (TIMESTAMP needs 7) (wxString s_Format[7]), - Formatted Objects (wxString s_Menge[7]), - Formatted Objects (TT MM YYYY HH MM SS m) (int i_Menge[7]), - National (0=timestamp,1=EU,2=UK,3=International,4=US)int i_Nation), - Datatype (from wxDB) (int I_dbDataType), - Datatype (from SQL) (SWORD i_sqlDataType), - int Format(int Nation, int dbDataType,SWORD sqlDataType,short columnSize,short decimalDigits); - The Formatted Objects receive Standard Values and Format() is called. - The Programmers can, if they want something special , change these Values and call Format() again - |
---|
This class is most definitely very much underdeveloped ! It was made so that the DBGrid could be realised. Changes here are probable. (Suggestions welcomed) |
---|
+
wxColFor | +
---|
+ This Class stores how this Column should be formated in a String : + Output String (wxString s_Field), + Formatted Objects (TIMESTAMP needs 7) (wxString s_Format[7]), + Formatted Objects (wxString s_Menge[7]), + Formatted Objects (TT MM YYYY HH MM SS m) (int i_Menge[7]), + National (0=timestamp,1=EU,2=UK,3=International,4=US)int i_Nation), + Datatype (from wxDB) (int I_dbDataType), + Datatype (from SQL) (SWORD i_sqlDataType), + int Format(int Nation, int dbDataType,SWORD sqlDataType,short columnSize,short decimalDigits); + The Formatted Objects receive Standard Values and Format() is called. + The Programmers can, if they want something special , change these Values and call Format() again + |
+
---|
This class is most definitely very much underdeveloped ! It was made so that the DBGrid could be realised. Changes here are probable. (Suggestions welcomed) |
+
---|
-
Well now, that makes everything clear does't it? |
---|
Well now, that makes everything clear does't it? | +
---|
(English) |
-
---|
+
(English) |
+
---|
Stand: 2000-01-23.01-mj10777
![]() |
---|
![]() |
+
---|
How does it work ? |
---|
How does it work ? | +
---|
Basicly you use a 3 Dimentional Dynamic Array |
---|
wxDBInf --> wxTableInf --> wxColInf |
---|
+
Basicly you use a 3 Dimentional Dynamic Array | +
---|
wxDBInf --> wxTableInf --> wxColInf | +
---|
-
Using DBBrowser as the Example, I will try to explain how it works |
---|
Sorry, the rest will have to come later !! |
---|
Using DBBrowser as the Example, I will try to explain how it works | +
---|
Sorry, the rest will have to come later !! | +
---|
+ |
---|
+ |
---|
+ |
---|
- -
Well now, that makes everything clear does't it? |
---|
+ |
---|
+
Well now, that makes everything clear does't it? | +
---|
|
-
---|
+
|
+
---|
Stand: 2000-01-22.01-mj10777
Which Icons are used for what ? |
---|
*.xpm have not been tested with ![]() |
---|
![]() | dbtree.cpp : ODBC Column in a Table (not a Primary or Foreign Key) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() | pgmctrl + dbtree.cpp : last branch of Tree (not selected) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | pgmctrl + dbtree.cpp : last Branch of tree (selected) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | good question | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | pgmctrl.cpp : Main Branch of ODBC-DSN Tree (not selected) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | pgmctrl.cpp : Main Branch of ODBC-DSN Tree (selected) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | pgmctrl.cpp : Main Branch of Program-Setting-DSN Tree (not selected) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | pgmctrl.cpp : Main Branch of Program-Setting-DSN Tree (not selected) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | dbtree.cpp : ODBC Primary-Key Column in a Table | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | dbtree.cpp : ODBC Foreign-Key Column in a Table | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Programm Logo | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | pgmctrl.cpp : Tab Bitmap | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | dbtree.cpp : ODBC Table | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | dbtree.cpp : ODBC View |
Which Icons are used for what ? | +
---|
*.xpm have not been tested with ![]() |
+
---|
![]() | dbtree.cpp : ODBC Column in a Table (not a Primary or Foreign Key) |
---|---|
![]() | pgmctrl + dbtree.cpp : last branch of Tree (not selected) |
![]() | pgmctrl + dbtree.cpp : last Branch of tree (selected) |
![]() | good question |
![]() | pgmctrl.cpp : Main Branch of ODBC-DSN Tree (not selected) |
![]() | pgmctrl.cpp : Main Branch of ODBC-DSN Tree (selected) |
![]() | pgmctrl.cpp : Main Branch of Program-Setting-DSN Tree (not selected) |
![]() | pgmctrl.cpp : Main Branch of Program-Setting-DSN Tree (not selected) |
![]() | dbtree.cpp : ODBC Primary-Key Column in a Table |
![]() | dbtree.cpp : ODBC Foreign-Key Column in a Table |
![]() | Programm Logo |
![]() | pgmctrl.cpp : Tab Bitmap |
![]() | dbtree.cpp : ODBC Table |
![]() | dbtree.cpp : ODBC View |
All other Pictograms are not used in DBBrowser (they are .png files) |
+
---|
It will be nice, when the time comes where we can use XPM files for everything. |
---|
All other Pictograms are not used in DBBrowser (they are .png files) |
-
---|
It will be nice, when the time comes where we can use XPM files for everything. | -
---|
|
-
---|
+
|
+
---|
Stand: 2000-01-23.01-mj10777
The real meaning of the used Pictograms in these help files |
---|
All Pictograms are .PNG Files (Portable Network Graphics) I use Paint Shop Pro 5.01 to make them. |
---|
![]() | Under construction : Page is not compleated | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() | GNU Logo : gcc 2.95 Compiler | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | GTK Logo : a Graphic Library in Linux | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | KDE Logo : Graphic System in Linux | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Linux Logo : Linux (in General) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Motif Logo : Graphic Library in Linux (is the Logo correct ?) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Microsoft VC++ Logo : VC++ 6.0 Compiler | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | ODBC Logo | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Remstar Logo : Remstar ODBC-Classes (http://www.remstar.com) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Redhat Logo : Linux Distribution (http://www.redhat.com / .de) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | SuSE Logo : Linux Distribution (http://www.suse.com / .de) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Server Logo | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Windows Logo : Windows (in General) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() | Windows-NT Logo : Windows-NT specific |
The real meaning of the used Pictograms in these help files | +
---|
All Pictograms are .PNG Files (Portable Network Graphics) I use Paint Shop Pro 5.01 to make them. |
+
---|
![]() | Under construction : Page is not compleated |
---|---|
![]() | GNU Logo : gcc 2.95 Compiler |
![]() | GTK Logo : a Graphic Library in Linux |
![]() | KDE Logo : Graphic System in Linux |
![]() | Linux Logo : Linux (in General) |
![]() | Motif Logo : Graphic Library in Linux (is the Logo correct ?) |
![]() | Microsoft VC++ Logo : VC++ 6.0 Compiler |
![]() | ODBC Logo |
![]() | Remstar Logo : Remstar ODBC-Classes (http://www.remstar.com) |
![]() | Redhat Logo : Linux Distribution (http://www.redhat.com / .de) |
![]() | SuSE Logo : Linux Distribution (http://www.suse.com / .de) |
![]() | Server Logo |
![]() | Windows Logo : Windows (in General) |
![]() | Windows-NT Logo : Windows-NT specific |
All other Pictograms are PNG-Copies of DBBrowser-Icons. |
---|
All other Pictograms are PNG-Copies of DBBrowser-Icons. | -
---|
|
-
---|
+
|
+
---|
Stand: 2000-02-04.01-mj10777 -
General |
---|
Problem : ![]() | Only gcc 2.95 Compiler : Assurt failed in file ../../src/msw/fontutil.cpp at line 238: unknown font slant |
---|---|
Solution : | unknown |
-
Problem : ![]() | Only gcc 2.95 Compiler : Assurt failed in file ../../src/msw/fontutil.cpp at line 249: unknown font weight |
---|---|
Solution : | unknown |
- -
wxHtmlHelpController |
---|
Problem : | When Help is closed with a Full HTML-View, you see nothing when Help is again started. (Page is Grey) |
---|
Press the Upper left Button, so that the screen is again split. |
---|
General |
---|
Solution : | unknown |
---|
Problem : ![]() | Only gcc 2.95 Compiler : Assurt failed in file ../../src/msw/fontutil.cpp at line 238: unknown font slant |
---|---|
Solution : | unknown |
- -
Problem : | The Middle (Center) Mouse-Wheel does not scroll the HTLM-Page (Rightside) It does work on the Leftside | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Solution : | unknown |
Problem : ![]() | Only gcc 2.95 Compiler : Assurt failed in file ../../src/msw/fontutil.cpp at line 249: unknown font weight |
---|---|
Solution : | unknown |
- -
Problem : | How can Help be called and a certin Page be opened (Context Help) |
---|---|
Solution : | p_Help-> Display("GUp_Mask_Kunden.htm#Sonstiges"); |
- -
Problem : | Why doesn't the Refresh-Button (F5) work? |
---|---|
solved : | unbekannt |
- -
Problem : | Images that show with HelpView, do not show up when called from OnHelp() |
---|
wxHtmlHelpController |
---|
Logbook : Warning: No handler found for image type. Why wasn't this message translated to German ? |
---|
Problem : | When Help is closed with a Full HTML-View, you see nothing when Help is again started. (Page is Grey) |
---|
Solution : | Added following Code in DBBrowser.cpp(MyApp::OnInit()): #if wxUSE_LIBPNG wxImage::AddHandler( new wxPNGHandler ); #endif |
---|
Press the Upper left Button, so that the screen is again split. | +
---|
Solution : | unknown | +
---|
+ +
Problem : | The Middle (Center) Mouse-Wheel does not scroll the HTLM-Page (Rightside) It does work on the Leftside |
---|---|
Solution : | unknown |
+ +
Problem : | How can Help be called and a certin Page be opened (Context Help) |
---|---|
Solution : | p_Help-> Display("GUp_Mask_Kunden.htm#Sonstiges"); |
+ +
Problem : | Why doesn't the Refresh-Button (F5) work? |
---|---|
solved : | unbekannt |
+ +
Problem : | Images that show with HelpView, do not show up when called from OnHelp() | +
---|
Logbook : Warning: No handler found for image type. Why wasn't this message translated to German ? |
+
---|
Solution : | Added following Code in DBBrowser.cpp(MyApp::OnInit()): #if wxUSE_LIBPNG wxImage::AddHandler( new wxPNGHandler ); #endif |
---|
-
wxGrid (new Version) |
---|
Problem : | When wxGrid is used in wxPaggedWindows, the Scrollbars do not work. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Solution : | 04.02.2000 : This has been solved with the new code. |
wxGrid (new Version) | +
---|
Problem : | When wxGrid is used in wxPaggedWindows, the Scrollbars do not work. |
---|---|
Solution : | 04.02.2000 : This has been solved with the new code. |
-
wxGrid (new Version) 04.02.2000 |
---|
Problem : | Often : Error: wxGrid::CreateGrid(numRows, numCols) called more than once | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Solution : | unknown |
wxGrid (new Version) 04.02.2000 | +
---|
Problem : | Often : Error: wxGrid::CreateGrid(numRows, numCols) called more than once |
---|---|
Solution : | unknown |
-
next Problem |
---|
Problem : | something will turn up, it allways do. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Solution : | unknown |
next Problem | +
---|
Problem : | something will turn up, it allways do. |
---|---|
Solution : | unknown |
|
-
---|
+
|
+
---|
Stand: 2000-01-22.01-mj10777
TODO |
---|
TODO | +
---|
|
-
---|
+
|
+
---|
Stand: 2000-01-22.01-mj10777
Blau (CCFFFF) |
---|
Gelb (FFFFAA) | Hellgelb (FFFFE0) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
hellgr|n <TH BGCOLOR=#CCFFCC> Hintergrundsfarbe f|r diese Tabellenteil | <BODY BGCOLOR=#C6DFC6> Background Colour of Page |
Blau (CCFFFF) | +
---|
Gelb (FFFFAA) | Hellgelb (FFFFE0) |
---|---|
hellgr|n <TH BGCOLOR=#CCFFCC> Hintergrundsfarbe f|r diese Tabellenteil | <BODY BGCOLOR=#C6DFC6> Background Colour of Page |
Gold <TR BGCOLOR=#FFF777> Hintergrundsfarbe f|r den Gesamte Tabelle |
+
---|
Rosa (FFBBBB) |
---|
Gold <TR BGCOLOR=#FFF777> Hintergrundsfarbe f|r den Gesamte Tabelle |
-
---|
Rosa (FFBBBB) | -
---|
|
-
---|
+
|
+
---|
Stand: 2000-01-22.01-mj10777
DBBrowser xx |
---|
xx = language | cz, de, fr, pl and std (english) |
---|
DBBrowser xx | +
---|
xx = language | cz, de, fr, pl and std (english) | +
---|
There are no Help files for Czech (cz), French (fr) and Polish (pl) Everything has been prepared and the locale will be set. |
+
---|
DBBrowse will use these setting until it is again changed (even after a Program restart). (wxConfigBase) In "Program Settings" you can also switch (at the moment) between English and German. |
---|
There are no Help files for Czech (cz), French (fr) and Polish (pl) Everything has been prepared and the locale will be set. |
-
---|
DBBrowse will use these setting until it is again changed (even after a Program restart). (wxConfigBase) In "Program Settings" you can also switch (at the moment) between English and German. |
-
---|
|
-
---|
+
|
+
---|
Stand: 2000-01-22.01-mj10777 -
General |
---|
Function : | When will it be possible to open more than one DSN / DBGrid ? |
---|---|
Timetable : | soon, it is high priorty. |
- -
DBGrid |
---|
Function : | Support for Adding, Deleting and Changes to Record. |
---|---|
Timetable : | Sometime during my present Project. |
- -
DBGrid |
---|
Function : | When will Records only be read in when needed (Scrolling) |
---|---|
Timetable : | This is a Function that is planned in wxGrid. I too hope it will come soon. |
- -
DBTree |
---|
Function : | When can DBBrowser create a wxDB and wxTable .cpp/.h File ? |
---|---|
Timetable : | OnDBClass(); OnClass() and OnClassAll(); have been prepaired. This has for me low priorty. But I am sure somebody will do (for wxStudio ?) |
- -
24.01.2000 : George Tasker |
---|
Have USER NAME and PASSWORD text widgets, or a menu item to enter them. | -25.01.2000 - should work, please test - |
---|
Rather than have the "40 DSN's found" message at the end of the log book, Put that in the status bar of the frame. | -24.01.2000 - Done - |
---|
Make the grid cells READ-ONLY, since this is a browser (unless you want to make it an editor too -- good idea!) | -25.01.2000 - done : right mouse click on any grid lable and on popupmenu clicken - |
---|
Sort the DSNs in alphabetical order before putting them in the tree | -26.01.2000 - done - | +
---|
General |
---|
Have program settings available from a TOOLS | OPTIONS menu | -Willdo - |
---|
Function : | When will it be possible to open more than one DSN / DBGrid ? |
---|---|
Timetable : | soon, it is high priorty. |
-
new Functions |
---|
Function : | something will turn up, it allways do. | ||||||
---|---|---|---|---|---|---|---|
Timetable : | unknown |
DBGrid | +
---|
Function : | Support for Adding, Deleting and Changes to Record. |
---|---|
Timetable : | Sometime during my present Project. |
+ +
DBGrid | +
---|
Function : | When will Records only be read in when needed (Scrolling) |
---|---|
Timetable : | This is a Function that is planned in wxGrid. I too hope it will come soon. |
+ +
DBTree | +
---|
Function : | When can DBBrowser create a wxDB and wxTable .cpp/.h File ? |
---|---|
Timetable : | OnDBClass(); OnClass() and OnClassAll(); have been prepaired. This has for me low priorty. But I am sure somebody will do (for wxStudio ?) |
+ +
24.01.2000 : George Tasker | +
---|
Have USER NAME and PASSWORD text widgets, or a menu item to enter them. | +25.01.2000 - should work, please test | +
---|
Rather than have the "40 DSN's found" message at the end of the log book, Put that in the status bar of the frame. | +24.01.2000 - Done | +
---|
Make the grid cells READ-ONLY, since this is a browser (unless you want to make it an editor too -- good idea!) | +25.01.2000 - done : right mouse click on any grid lable and on popupmenu clicken | +
---|
Sort the DSNs in alphabetical order before putting them in the tree | +26.01.2000 - done | +
---|
Have program settings available from a TOOLS | OPTIONS menu | +Willdo | +
---|
new Functions | +
---|
Function : | something will turn up, it allways do. |
---|---|
Timetable : | unknown |
(English) |
-
---|
+
(English) |
+
---|
Stand: 2000-01-23.01-mj10777
There are 2 new wxDB Functions : |
---|
There are 2 new wxDB Functions : | +
---|
Discription of the new GetColumns() | - and GetKeyFields() wxDbInf wxTableInf wxColInf wxColFor |
+
---|
Discription of the new GetColumns() | + and GetKeyFields() wxDbInf wxTableInf wxColInf wxColFor |
---|---|
How to use the new GetColumns() | - and GetKeyFields() wxDbInf wxTableInf wxColInf wxColFor |
-
The other GetColumns() has not changed. The CcolInf used is, however, really a wxColInf ! (typedef wxColInf CcolInf;) |
---|
The other GetColumns() has not changed. The CcolInf used is, however, really a wxColInf ! (typedef wxColInf CcolInf;) |
+
---|
(English) |
-
---|
+
(English) |
+
---|
Stand: 2000-01-22.01-mj10777
This class is not used in DBBrowser ! |
---|
This class is not used in DBBrowser ! | +
---|