You are not logged in.

  • "198147lizhao" started this thread

Posts: 2

Location: china

Occupation: student

  • Send private message

1

Friday, March 11th 2005, 2:31pm

where can i download free qt designer?

please ask me a internet address of qt designer,thank you!

Latem

Intermediate

  • "Latem" is male

Posts: 278

Location: New Brunswick, Canada

Occupation: Student/Programmer

  • Send private message

2

Friday, March 11th 2005, 3:05pm

The march of progress:
C:
printf("%10.2f", x);
C++:
cout << setw(10) << setprecision(2) << showpoint << x;
Java:
java.text.NumberFormat formatter = java.text.NumberFormat.getNumberInstance();
formatter.setMinimumFractionDigits(2);
formatter.setMaximumFractionDigits(2);
String s = formatter.format(x);
for (int i = s.length(); i < 10; i++) System.out.print(' ');
System.out.print(s);

indigojo_uk

Beginner

  • "indigojo_uk" is male

Posts: 6

Location: New Malden, near London, UK

Occupation: Truck driver

  • Send private message

3

Friday, March 11th 2005, 8:21pm

RE: where can i download free qt designer?

You download Qt Designer with Qt. All the packages (Assistant & documentation, Designer, Linguist, QMake and so on) are bundled with the Free edition of Qt.