Einzelnen Beitrag anzeigen

MathiasSimmack
(Gast)

n/a Beiträge
 
#3

Re: Problem mit ShellMessageBox

  Alt 23. Mär 2004, 08:49
Hallo Nico.
Dankeschön kann ich da nur sagen.

Zitat von NicoDE:
Delphi-Quellcode:
////////////////////////////////////////////////////////////////////////////////
//
// ShellMessageBox
//
// ( [url]http://search.microsoft.com/?View=msdn&qu=ShellMessageBox[/url] )
Ich wusste gar nicht, dass man mittlerweile überhaupt was dazu findet. Aber das ist bei einigen anderen Funktionen auch so. Offiziell unterstützt werden sie, laut PSDK, erst ab Windows 2000 (der "PickIconDlg" ist auch so ein Fall), aber tatsächlich vorhanden und nutzbar sind sie mit Ordinalwert auch schon vorher unter 98 meinetwegen. Na ja, Microsoft eben ...

Als kleine Frage, just for the sake of completeness, , was genau passiert im Assemberteil?
Zitat:
Delphi-Quellcode:
      asm
              push ebx
              mov ecx, [Arguments-04h] // High(Arguments)
              mov ebx, ecx
              shl ebx, 02h
              inc ecx
              jz @@call
              mov edx, [Arguments]
              add edx, ebx
      @@loop: push dword ptr [edx]
              sub edx, 04h
              loop @@loop
      @@call: push dword ptr [Style]
              push dword ptr [Title]
              push dword ptr [Msg]
              push dword ptr [Wnd]
              push dword ptr [Inst]
              call FNShellMessageBox
              add esp, 18h
              add esp, ebx
              mov [Result], eax
              pop ebx
      end;
Also im Prinzip weiß ich es: du ordnest Titel, Caption, Style usw. zu (bzw. legst sie auf dem Stack? ab) und rufst dann die Dialogbox auf. Aber warum so? Gab´s nicht eine Lösung in ... äh ... normaler Delphi-Sprache, die auch ich verstehe?

Gruß.


PS: Ich setze trotzdem mal den Erledigt-Haken, denn das Grundproblem ist ja gelöst. Alles, was jetzt noch an Fragen und Antworten kommt, wäre nur Bonus.
  Mit Zitat antworten Zitat