3exware.blogspot.com
3EXWare English Blog - Some articles about REALbasic: January 2009
http://3exware.blogspot.com/2009_01_01_archive.html
Friday, January 9, 2009. Is a specific app running? How to know whether an app is running in REALbasic? The common idea is looping through all processes and testing with the name of the app which you want to know if it's opened. On Windows, we can do it via declares, the Win32 APIs we need to use are EnumProcesses, EnumProcessModules, GetModuleFileNameEx, etc. I wrote a function a few days ago. You can find the source code of it in Window1. Tell application "System Events". If application appname is runn...
3exware.blogspot.com
3EXWare English Blog - Some articles about REALbasic: December 2008
http://3exware.blogspot.com/2008_12_01_archive.html
Tuesday, December 30, 2008. Setting the position of the mouse and so on. From time to time, I see some people ask how to set the mouse position, how to simulate mouse click, and something like these. I have written a sample for Windows and Linux (by calling Win32 and XLib APIs) about two years ago, and it still works fine with the last REALbasic release as I just tested. Click here. Subscribe to: Posts (Atom). Home Page (where all my articles are gathered). Blue Shop Tech Blog (Traditional Chinese).
3exware.blogspot.com
3EXWare English Blog - Some articles about REALbasic: Some compression arithmetics implemented in RB.
http://3exware.blogspot.com/2009/01/some-compression-arithmetics.html
Thursday, January 8, 2009. Some compression arithmetics implemented in RB. I implemented some common compression arithmetics (LZ77, RLE and Huffman) in RB above a half year ago. I've referred to several open-source C/C projects/libraries. None of them has any limit of using, modification and issuance, so they can be used in any project for free. Subscribe to: Post Comments (Atom). Home Page (where all my articles are gathered). Blue Shop Tech Blog (Traditional Chinese). CSDN Tech Blog (Simplified Chinese).
3exware.blogspot.com
3EXWare English Blog - Some articles about REALbasic: Setting the position of the mouse and so on...
http://3exware.blogspot.com/2009/01/setting-position-of-mouse-and-so-on.html
Tuesday, December 30, 2008. Setting the position of the mouse and so on. From time to time, I see some people ask how to set the mouse position, how to simulate mouse click, and something like these. I have written a sample for Windows and Linux (by calling Win32 and XLib APIs) about two years ago, and it still works fine with the last REALbasic release as I just tested. Click here. Subscribe to: Post Comments (Atom). Home Page (where all my articles are gathered). CSDN Tech Blog (Simplified Chinese).
3exware.blogspot.com
3EXWare English Blog - Some articles about REALbasic: How to hide taskbar button of a window?
http://3exware.blogspot.com/2009/01/how-to-hide-taskbar-button-for-window.html
Thursday, January 1, 2009. How to hide taskbar button of a window? 160; Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hwnd As Int32, ByVal nIndex As Int32, ByVal dwNewLong As Int32) As Int32. 160; Const GWL EXSTYLE = -20. 160; Const WS EX TOOLWINDOW = &H80. 160; Call SetWindowLong(Self.Handle,GWL EXSTYLE,WS EX TOOLWINDOW). March 24, 2012 at 5:20 AM. March 24, 2012 at 5:21 AM. If time permits please do explain the steps. March 24, 2012 at 5:29 AM. Is a specific app running?
3exware.blogspot.com
3EXWare English Blog - Some articles about REALbasic: Is a specific app running?
http://3exware.blogspot.com/2009/01/is-specific-app-running.html
Friday, January 9, 2009. Is a specific app running? How to know whether an app is running in REALbasic? The common idea is looping through all processes and testing with the name of the app which you want to know if it's opened. On Windows, we can do it via declares, the Win32 APIs we need to use are EnumProcesses, EnumProcessModules, GetModuleFileNameEx, etc. I wrote a function a few days ago. You can find the source code of it in Window1. Tell application "System Events". If application appname is runn...