Delphi-PRAXiS
Seite 6 von 10   « Erste     456 78     Letzte »    

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Programmieren allgemein (https://www.delphipraxis.net/40-programmieren-allgemein/)
-   -   Power++ (https://www.delphipraxis.net/153197-power.html)

cookie22 5. Aug 2010 17:06

AW: Delphi++
 
Zitat:

Zitat von plusplus (Beitrag 1039816)
Es gibt keinen mehr der veruckt genug ist um ein 128/256 bit SSL zu enziffern. :)

wenn es denn richtig und 100% bugfrei implemetiert ist. ;)
ich seh in der sicherheit die grösste hürde für solche technologien.

plusplus 5. Aug 2010 20:21

AW: Delphi++
 
Zitat:

Zitat von mkinzler (Beitrag 1039821)
Was ist denn der grundsätzliche Unterschied von Cloud und Grid?

There are many theories and the words Cloud and Grid are very much misused to sell regular web apps because its very popular right now. I myself think the best and the most accurate explanation is the following:

http://en.wikipedia.org/wiki/Cloud_computing

http://en.wikipedia.org/wiki/Grid_computing

hope this helps :)

BTW Grid computing has evolved in CERN, and currently they have the most powerful grid in the world, and they are using it to compute the results from the LHC, and others Labs where information must be captured and processed within a nano second. -> Really freaky stuff ;) they doing there.

plusplus 6. Aug 2010 10:39

AW: Delphi++
 
Delphi++ Version 1.0.51 is out -> Localization Support you can translate Delphi++ into diff lang.

@toms you can now help translate into proper German ;)

toms 8. Aug 2010 21:24

AW: Delphi++
 
Liste der Anhänge anzeigen (Anzahl: 1)
Zitat:

Zitat von plusplus (Beitrag 1039962)
Delphi++ Version 1.0.51 is out -> Localization Support you can translate Delphi++ into diff lang.

@toms you can now help translate into proper German ;)

Mein "Versuch" im Anhang! Z.T hat der deutsche Text zu wenig Platz in den Labels/Buttons.

- z.B. bei Align to Grid / Am Gitter ausrichten
- Cancel / Abbrechen Button sollte ein wenig breiter sein.

plusplus 9. Aug 2010 01:05

AW: Delphi++
 
Danke vielmals, Ich werde ein paar anpasungen machen muessen. Es wird schon irgendwie gehen.

Super :)

plusplus 11. Aug 2010 08:06

AW: Delphi++
 
Delphi++ RC II is out, you can grab it from http://delphiplusplus.com

Happy coding :)

toms 11. Aug 2010 20:09

AW: Delphi++
 
Zitat:

Zitat von plusplus (Beitrag 1040986)
Delphi++ RC II is out, you can grab it from http://delphiplusplus.com

Happy coding :)

Is the German language included yet?

hermidelphi 12. Aug 2010 07:11

AW: Delphi++
 
Hallo,

ich habe ein Problem mit RCII. Folgende Funktion funktioniert mit RCI.

Code:
function MyIntToStr(const i: int): string;
var tmp: int;
begin
  Result := '';
  tmp := i;
  repeat
    if tmp < 0 then
      begin
        tmp := -1 * tmp;
      end;
    Result := Str.Chr(tmp mod 10 + 48) + Result;
    tmp := tmp div 10;
  until tmp = 0;
  if i < 0 then
    Result := '-' + Result;
end;
Bei RCII erscheint die Fehlermeldung:

[11:18] -> Undeclared identifier: 'Str'

Kann jemand helfen?

plusplus 12. Aug 2010 07:41

AW: Delphi++
 
str. ist jetzt cstr.

I am sorry but I had to rename the following variables

str to cstr
file to cfile
math to cmath
int to cint
real to creal
date to cdate

because I added Pseudo support in the compiler the original names were incompatible.

plusplus 12. Aug 2010 07:46

AW: Delphi++
 
Zitat:

Zitat von toms (Beitrag 1041354)
Zitat:

Zitat von plusplus (Beitrag 1040986)
Delphi++ RC II is out, you can grab it from http://delphiplusplus.com

Happy coding :)

Is the German language included yet?

I have uploaded a new lang file, I am still busy redesigning a couple of screens so that all languages can be supported.


Alle Zeitangaben in WEZ +1. Es ist jetzt 03:30 Uhr.
Seite 6 von 10   « Erste     456 78     Letzte »    

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz