Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » Borland C++ Builder » progressbarzum laufenbringen?????

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 < [ 2 ] [ 3 ]
000
12.12.2004, 13:14 Uhr
~ich
Gast


helft mir bitte ich weiß nämlichnich wie man die progress-bar zum laufen bringt








im voraus
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
12.12.2004, 13:34 Uhr
~ich
Gast


ach ja ich programmiere mit c++ borland builder
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
12.12.2004, 16:04 Uhr
Pablo
Supertux
(Operator)


-->
--
A! Elbereth Gilthoniel!
silivren penna míriel
o menel aglar elenath,
Gilthoniel, A! Elbereth!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
12.12.2004, 18:23 Uhr
Bruder Leif
dances with systems
(Operator)


Moin!

Wo genau liegt denn das Problem?
1. ProgressBar auf Formular ziehen
2. Property "Max" auf Maximalwert setzen
3. ggf. Property "Min" auf Minimalwert setzen
4. Während länger dauernder Operation Property "Position" auf aktuellen Stand setzen
5. Falls notwendig, Application->ProcessMessages() aufrufen
--
Mit 40 Fieber sitzt man nicht mehr vor dem PC.
Man liegt im Bett.
Mit dem Notebook.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
12.12.2004, 18:29 Uhr
~ich
Gast


die progressbar soll sich einfach nur bewegen

so ungefähr:



C++:
if (RadioButton1 == Checked)
{
ScrollBar1->Position++;
}

 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
005
12.12.2004, 18:44 Uhr
~Master M
Gast


Ich glaube du meinst das so:



C++:
:!:
if (RadioButton1->Checked = true)
{
ScrollBar1->Position++;
}


 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
006
12.12.2004, 19:50 Uhr
Bruder Leif
dances with systems
(Operator)


VORSICHT FEHLER! Das ist eine Zuweisung, kein Vergleich. Immer true. Plötzlich ist der RadioButton angewählt, und keiner weiß warum...
ScrollBar1->Position++ kann Probleme geben, weil "Position" eine Property ist, keine Eigenschaft. Der ++-Operator gilt dabei nicht, nimm lieber ScrollBar1->Position = ScrollBar1->Position + 1;
--
Mit 40 Fieber sitzt man nicht mehr vor dem PC.
Man liegt im Bett.
Mit dem Notebook.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
007
12.12.2004, 20:48 Uhr
~ich
Gast


die sollsich aber von alleine bewegen!!!

aber trotzdemdanke für den tipp
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
008
13.12.2004, 00:15 Uhr
djlq




C++:
ProgressBar1->Max=100;  // maximalwert in integer wird zugewiesen
// den rest liess im obectinspektor durch...  F11 ruft den Obectinspector auf...
//-------

randomize();
ProgressBar1->Position=rand()%100; // zufallswert (integer) wird der Position zugewiesen

//oder aber

int i = 49;  
ProgressBar1->Position=i; // wert von 49 wird der position zugewiesen




so hoffe das hat dir geholfen... ;-)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
009
14.12.2004, 15:56 Uhr
~ich
Gast


ich habe es jetzt:




C++:
ProgressBar1->Position++;
Sleep(100);
ProgressBar1->Position++;
Sleep(100);
ProgressBar1->Position++;
Sleep(100);
ProgressBar1->Position++;

u.s.w.





vielen dank für die tipps







 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 < [ 2 ] [ 3 ]     [ Borland C++ Builder ]  


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: