OldSchoolHack

Register / Login English

Bugs fixed (27.03.2012)


icon Bugs fixed (27.03.2012) #1

Join Date: Aug 2007

Posts: 8646

User-Rating:

199 positive
33 negative
-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

Join Date: Aug 2008

Posts: 2594

User-Rating:

17 positive
5 negative
Also wo war nochmal der "Like" Button?
icon #3

Join Date: Aug 2007

Posts: 8646

User-Rating:

199 positive
33 negative
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

Join Date: Aug 2008

Posts: 2594

User-Rating:

17 positive
5 negative
Quote from 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

Join Date: Aug 2007

Posts: 8646

User-Rating:

199 positive
33 negative
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

Join Date: Aug 2008

Posts: 2594

User-Rating:

17 positive
5 negative
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

Join Date: Aug 2007

Posts: 8646

User-Rating:

199 positive
33 negative
Quote
if (keyboard.State == KeyboardMessage::KeyUp)

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

greetz KN4CK3R

__________________

Hallo