AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Programmierung allgemein Programmieren allgemein can someone describe me waht that means ?
Thema durchsuchen
Ansicht
Themen-Optionen

can someone describe me waht that means ?

Ein Thema von cdkiller · begonnen am 24. Jul 2004 · letzter Beitrag vom 24. Jul 2004
Antwort Antwort
Seite 2 von 2     12   
MathiasSimmack
(Gast)

n/a Beiträge
 
#11

Re: can someone describe me waht that means ?

  Alt 24. Jul 2004, 17:40
Zitat von Hansa:
Because of that, I think you are "on the Holzweg"
You cannot translate it, can you? What's the right metaphor?
  Mit Zitat antworten Zitat
Benutzerbild von phlux
phlux

Registriert seit: 4. Nov 2002
Ort: Witten
1.335 Beiträge
 
Delphi 6 Personal
 
#12

Re: can someone describe me waht that means ?

  Alt 24. Jul 2004, 17:51
to bark up the wrong tree
Christian "phlux" Arndt
  Mit Zitat antworten Zitat
Hansa

Registriert seit: 9. Jun 2002
Ort: Saarland
7.554 Beiträge
 
Delphi 8 Professional
 
#13

Re: can someone describe me waht that means ?

  Alt 24. Jul 2004, 17:53
natürlich kann ich das übersetzen : Wood-Way, or better Wood-Path. But an english speaking human beeing can't understand this english/german sentence. It is too difficult , because it's from me (in this context). Also I can't tell You, who has invented this saying. 8)

I think its about 1000 years old, e.g. older than Mathias Simmack.
Gruß
Hansa
  Mit Zitat antworten Zitat
cdkiller

Registriert seit: 23. Jul 2004
23 Beiträge
 
#14

Re: can someone describe me waht that means ?

  Alt 24. Jul 2004, 18:10
okay can we come back to the topic ?
  Mit Zitat antworten Zitat
scp

Registriert seit: 31. Okt 2003
1.120 Beiträge
 
Delphi 7 Personal
 
#15

Re: can someone describe me waht that means ?

  Alt 24. Jul 2004, 18:15
I look in "Who wants to be a millionaire" and here is the result
00029250h: 42 6F 47 5F 20 2A 39 30 2E 30 26 21 21 20 20 59 ; BoG_ *90.0&!! Y
00029260h: 79 3E 00 00 01 00 00 00 32 00 00 00 14 00 00 00 ; y>......2.......
00029270h: 01 00 00 0032 00 00 0014 00 00 00 00 00 00 00 ; ....2...........

This means its version 1.50.020, each number is a DWORD value.
The version number is stored 32 Bytes below BoG.
  Mit Zitat antworten Zitat
cdkiller

Registriert seit: 23. Jul 2004
23 Beiträge
 
#16

Re: can someone describe me waht that means ?

  Alt 24. Jul 2004, 19:04
i can't follow you ???

can write a function that do this ? then i would understand it better.
  Mit Zitat antworten Zitat
scp

Registriert seit: 31. Okt 2003
1.120 Beiträge
 
Delphi 7 Personal
 
#17

Re: can someone describe me waht that means ?

  Alt 24. Jul 2004, 19:24
Something like this:
Delphi-Quellcode:
type
  TSafeDiscVer = packed record
    Major : DWORD;
    Minor : DWORD;
    Build : DWORD;
  end;
var
  ASafeDiscVer : TSafeDiscVer;
  fs : TFileStream;
  ThePos : integer;
begin
  ThePos := FindInFile('D:\game.exe', 'BoG_', true);
  //...
  fs.Seek(ThePos + 32, soFromBeginning);
  fs.ReadBuffer(ASafeDiscVer, SizeOf(TSafeDiscVer));
  Edit1.Text := 'SafeDisc Version '
              + IntToStr(ASafeDiscVer.Major) + '.'
              + IntToStr(ASafeDiscVer.Minor) + '.'
              + IntToStr(ASafeDiscVer.Build);
  Mit Zitat antworten Zitat
cdkiller

Registriert seit: 23. Jul 2004
23 Beiträge
 
#18

Re: can someone describe me waht that means ?

  Alt 24. Jul 2004, 19:56
wow. thanks.

i see it is not so hard.

but the important think is, that i have understand it.

thanks.
  Mit Zitat antworten Zitat
Antwort Antwort
Seite 2 von 2     12   


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 02:57 Uhr.
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