Yussi Ariefiyono
yussi ariefiyono
This user hasn't shared any biographical information
Homepage: http://www.yussi.nl
Posts by yussi ariefiyono
List of SendKeys
Feb 8th
| Key | Code |
|---|---|
| BACKSPACE | {BACKSPACE}, {BS}, or {BKSP} |
| BREAK | {BREAK} |
| CAPS LOCK | {CAPSLOCK} |
| DEL or DELETE | {DELETE} or {DEL} |
| DOWN ARROW | {DOWN} |
| END | {END} |
| ENTER | {ENTER}or ~ |
| ESC | {ESC} |
| HELP | {HELP} |
| HOME | {HOME} |
| INS or INSERT | {INSERT} or {INS} |
| LEFT ARROW | {LEFT} |
| NUM LOCK | {NUMLOCK} |
| PAGE DOWN | {PGDN} |
| PAGE UP | {PGUP} |
| PRINT SCREEN | {PRTSC} (reserved for future use) |
| RIGHT ARROW | {RIGHT} |
| SCROLL LOCK | {SCROLLLOCK} |
| TAB | {TAB} |
| UP ARROW | {UP} |
| F1 | {F1} |
| F2 | {F2} |
| F3 | {F3} |
| F4 | {F4} |
| F5 | {F5} |
| F6 | {F6} |
| F7 | {F7} |
| F8 | {F8} |
| F9 | {F9} |
| F10 | {F10} |
| F11 | {F11} |
| F12 | {F12} |
| F13 | {F13} |
| F14 | {F14} |
| F15 | {F15} |
| F16 | {F16} |
| Keypad add | {ADD} |
| Keypad subtract | {SUBTRACT} |
| Keypad multiply | {MULTIPLY} |
| Keypad divide | {DIVIDE} |
| Key | Code |
|---|---|
| SHIFT | + |
| CTRL | ^ |
| ALT | % |
Check if table is exist vba
Feb 8th
Problem:
Check if table is exist
Solution:
Option Compare Database
Public Function TableExists(strTable As String) As Boolean
Dim strName As String
On Error Resume Next
‘If table exists already then strName will be > “”
strName = CurrentDb.TableDefs(strTable).name
TableExists = Not (strName = “”)
End Function
Shell and AppActivate command vba
Feb 8th
Problem:
You want to open the file using send key, and active it as a window
Solution:
‘Define the task ID
Dim dTaskID As Integer
‘Open the file with your application
dTaskID = Shell(“applicationYouWantToOpenWith.EXE path+nameofthefile”)
‘Make it active window
AppActivate (dTaskID)
Wii injuries on the increase, says medical journal
Feb 6th
The Nintendo Wii has helped tens of millions of gamers get into shape — but a piece published in the New England Journal of Medicine indicates it may be ushering in a new wave of gaming-related injuries.
Dubbed “Wiitis”, the injuries aren’t the first time Nintendo consoles have been linked to medical problems: seasoned gamers will recall “Nintendo thumb” or Nintendinitis, a form of repetitive strain injury first noticed in heavy gamers a decade or two ago. But whereas the older machines only affected users’ hands and arms, the Wii’s innovative control systems mean gaming-related injuries are cropping up all over their bodies.
“Before these types of games were introduced, patients typically presented with ligament injuries of the hand from intensive use of [video game] hand-held controls,” said Karen A. Eley, a resident and doctoral candidate at a British hospital. “Now, the injuries seem to affect any region of the body.”
Falling off the Wii Balance Board seems to be one of the main causes of injury, according to Eley, and although the board is only a few inches from the ground, a mishap can still lead to anything from soft-tissue damage to broken bones. Head injuries can also result from playing Wii games in confined spaces, she said.
All the same, she says the Wii’s emphasis on active gaming probably encourages the otherwise sedentary to get up off the couch and get moving, “aiding in our fight against obesity, heart disease and diabetes,” she said.
You might want to warn your four-legged friends, too: the Wii is also the video game system most likely to hurt pets, according to a 2008 study. Truly, it’s a veritable menace.
Via HealthDay

