This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Definition of the message code | |
| #define WM_DIALOG_SHOW (WM_APP + 10) | |
| // Functions that are members of the dialog class | |
| class CMyDlg : public CDialog | |
| { | |
| ... | |
| afx_msg void OnWindowPosChanged( WINDOWPOS* lpwndpos ); | |
| afx_msg void OnDialogShow(WPARAM wp, LPARAM lp); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias curlp="curl -U : --proxy-ntlm --proxy http://<proxy address>:<proxy port>" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Function SHEETNAME(Optional ShtOrder As Long = 0, _ | |
| Optional ByVal IncludeHiddenSheet As Boolean = False) As Variant | |
| '// Developed by Kris @ ExcelFox.com | |
| Dim ShtCount As Long | |
| Dim i As Long | |
| Dim n As Long | |
| ShtCount = ThisWorkbook.Worksheets.Count |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class CMyDlg : public CDialog | |
| { | |
| .... | |
| protected: | |
| afx_msg void OnCancel(); | |
| afx_msg void OnOK(); | |
| afx_msg void OnClose(); | |
| afx_msg void OnMyExit(); | |
| .... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function cleanInput($input) | |
| { | |
| $search = array( | |
| '@<script[^>]*?>.*?</script>@si', // Strip out javascript | |
| '@<[\/\!]*?[^<>]*?>@si', // Strip out HTML tags | |
| '@<style[^>]*?>.*?</style>@siU', // Strip style tags properly | |
| '@<![\s\S]*?--[ \t\n\r]*>@' // Strip multi-line comments | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function getDistanceBetweenPointsNew($latitude1, $longitude1, $latitude2, $longitude2) | |
| { | |
| $theta = $longitude1 - $longitude2; | |
| $miles = (sin(deg2rad($latitude1)) * sin(deg2rad($latitude2))) + (cos(deg2rad($latitude1)) * cos(deg2rad($latitude2)) * cos(deg2rad($theta))); | |
| $miles = acos($miles); | |
| $miles = rad2deg($miles); | |
| $miles = $miles * 60 * 1.1515; | |
| $feet = $miles * 5280; | |
| $yards = $feet / 3; | |
| $kilometers = $miles * 1.609344; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Our custom error handler | |
| function my_error_handler($number, $message, $file, $line, $vars) | |
| { | |
| $email = " | |
| <p>An error ($number) occurred on line | |
| <strong>$line</strong> and in the <strong>file: $file.</strong> | |
| <p> $message </p>"; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function get_client_language($availableLanguages, $default='en') | |
| { | |
| if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { | |
| $langs=explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']); | |
| foreach ($langs as $value){ | |
| $choice=substr($value,0,2); | |
| if(in_array($choice, $availableLanguages)){ | |
| return $choice; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| C:\WINDOWS\system32\rundll32.exe shell32.dll,Control_RunDLL hotplug.dll |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // code copied from: http://msdn.microsoft.com/en-us/library/ms812499.aspx | |
| // Not acutally tested on a real system | |
| DEVMODE dm; | |
| // initialize the DEVMODE structure | |
| ZeroMemory(&dm, sizeof(dm)); | |
| dm.dmSize = sizeof(dm); | |
| if (0 != EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, &dm)) | |
| { |
OlderNewer