OldSchoolHack

Registrieren / Anmelden Deutsch

Bugs fixed (27.03.2012)


icon Bugs fixed (27.03.2012) #1

Anmeldungsdatum: Aug 2007

Beiträge: 8646

Benutzer-Bewertung:

199 positiv
33 negativ
-fixed crash while deleting a form which is in use

-fixed closing MainForm doesn't call OnClose

-ScrollBar: removed unneeded exception
-PictureBox: can't have focus anymore
-Panel: can't have focus anymore
-ComboBox: doesn't loose focus on keyboard use
-ListBox: fixed ScrollBar location

-fixed ComboBox focus problem
-updated Copyright

-fixed "Apri" error

-fixed GetControls for InnerContainerControls

-changed size of MessageBox buttons

-fixed Intersection method

-fixed "only first TabPage receives events" bug

-added SetCursorEnabled
-added Hotkey system

__________________

Hallo
icon #2

Anmeldungsdatum: Aug 2008

Beiträge: 2594

Benutzer-Bewertung:

17 positiv
5 negativ
Also wo war nochmal der "Like" Button?
icon #3

Anmeldungsdatum: Aug 2007

Beiträge: 8646

Benutzer-Bewertung:

199 positiv
33 negativ
falls dus noch nicht rausgefunden hast:
CPP Code:
  1. //Hotkey auf Insert:
  2. app->RegisterHotkey(Hotkey(Key::Insert, []()
  3. {
  4. Application::Instance()->Toggle();
  5. }));
  6.  
  7. //Hotkey auf Strg + Insert:
  8. app->RegisterHotkey(Hotkey(Key::Insert, Key::Control, []()
  9. {
  10. Application::Instance()->Toggle();
  11. }));
  12.  
  13. //Hotkey auf Strg + Alt + Insert:
  14. app->RegisterHotkey(Hotkey(Key::Insert, Key::Control | Key::Alt, []()
  15. {
  16. Application::Instance()->Toggle();
  17. }));
und ja, ich weiß, dass die F-Tasten noch nicht in der Key Auflistung drin sind.

greetz KN4CK3R

__________________

Hallo
icon #4

Anmeldungsdatum: Aug 2008

Beiträge: 2594

Benutzer-Bewertung:

17 positiv
5 negativ
Zitat von KN4CK3R
falls dus noch nicht rausgefunden hast:
CPP Code:
  1. //Hotkey auf Insert:
  2. app->RegisterHotkey(Hotkey(Key::Insert, []()
  3. {
  4. Application::Instance()->Toggle();
  5. }));
  6.  
  7. //Hotkey auf Strg + Insert:
  8. app->RegisterHotkey(Hotkey(Key::Insert, Key::Control, []()
  9. {
  10. Application::Instance()->Toggle();
  11. }));
  12.  
  13. //Hotkey auf Strg + Alt + Insert:
  14. app->RegisterHotkey(Hotkey(Key::Insert, Key::Control | Key::Alt, []()
  15. {
  16. Application::Instance()->Toggle();
  17. }));
und ja, ich weiß, dass die F-Tasten noch nicht in der Key Auflistung drin sind.

greetz KN4CK3R
So weit war ich noch nicht, aber danke für den Tipp, hätte bestimmt auch so nicht gleich rausgefunden.

Übrigens, seit gestringen OSH GUI Update, stürzen die Spiele in die ich die dll injecte immer ab.
icon #5

Anmeldungsdatum: Aug 2007

Beiträge: 8646

Benutzer-Bewertung:

199 positiv
33 negativ
Projekt bereinigen und neu erstellen. Falls es dann immernoch nicht geht, verrat mir bitte an welcher Stelle es abstürzt.

greetz KN4CK3R

__________________

Hallo
icon #6

Anmeldungsdatum: Aug 2008

Beiträge: 2594

Benutzer-Bewertung:

17 positiv
5 negativ
Hast du es nicht so gemacht, dass es erst nach loslassen reagiert?
Wenn ich kurz auf Insert tippe, wird bei mir der Inhalt mehrmals ausgeführt.

icon #7

Anmeldungsdatum: Aug 2007

Beiträge: 8646

Benutzer-Bewertung:

199 positiv
33 negativ
Zitat
if (keyboard.State == KeyboardMessage::KeyUp)

sollte nur ausgelöst werden, wenn die Taste losgelassen wird.

greetz KN4CK3R

__________________

Hallo