Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » VC++ / MFC » Flexgrid

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
13.01.2006, 19:00 Uhr
nichtswissend



Hallo!
Kann mir jemand sagen, wie man Daten aus einem Flexgrid in eine Tabelle einlest.
Bitte um Hilfe!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
14.01.2006, 18:27 Uhr
~Icho Tolot
Gast


Hallo
probiers mal damit

C++:
//Fumktion stellt einen String zum ausdrucken bereit
CString CBelegungsplanDlg::AusleseGridaus(int zeile)
{
    CString stringGrid;
    stringGrid += m_ctlFGridaus.GetTextMatrix(zeile,0);
    stringGrid += " ";
    stringGrid += "|";
    stringGrid += " ";
    int spalte = m_ctlFGridaus.GetCols();
    int i = 2;
    while(1)
    {
        if(i >= spalte)
            break;
        else{
            if(m_ctlFGridaus.GetTextMatrix(zeile,i) == "")
                break;
            stringGrid += m_ctlFGridaus.GetTextMatrix(zeile,i);
            stringGrid += ">";
            stringGrid += " ";
            i++;
        }
    }
    
    return stringGrid;
}



Mit dieser Zeile sollte es funktionieren

stringGrid += m_ctlFGridaus.GetTextMatrix(zeile,spalte);
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ VC++ / MFC ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: