發表文章

目前顯示的是 2月, 2009的文章

Samsung launches Innovator Program for Windows Mobile

圖片
http://innovator.samsungmobile.com/index.do

Mobile SDK 超級比一比

圖片
http://chinese.engadget.com/2008/03/07/iphone-sdk-comparison-chart/

Windows Embedded 研討會

2009年3月17日 上午 09:00 - 2009年3月17日 下午 04:00 台北 國泰金融中心 - 1F 會議室 台灣Taipei 台北市信義區松仁路9號1樓 http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032399826&culture=zh-TW

Windows Mobile 進階體驗營

2009年3月11日 下午 02:00 - 2009年3月11日 下午 05:00 台北 台灣微軟7A會議室 台灣台北 台北市信義區松仁路 7 號 7 樓 http://msevents।microsoft.com/CUI/EventDetail.aspx?EventID=1032399824&culture=zh-TW

掌握市場導向 破除微利時代 - 「企業行動通訊整合」研討會

2009年3月3日 下午 02:00 - 2009年3月3日 下午 05:00 台北 台北喜來登大飯店 喜廳 台灣Taipei 台北市忠孝東路1段12號 http://msevents.microsoft.com/cui/EventDetail.aspx?culture=zh-TW&EventID=1032399522

iPhone & Android 自由軟體應用程式開發技術交流座談會

地點科技服務大樓(台北市松山區民生東路四段133號8樓) 808會議室 時間: 2009年3月5日 13:30 – 14:00 報到 14:00 – 15:00 由iPhone App Store應用程式上線經驗看 Google Android 15:00 – 15:20 Break 15:20 – 16:20 iPhone 及 Android 應用程式開發技術分享 16:20 – 16:30 Q & A 意者請速到下列網址報名,名額有限,額滿為止。 http://www.oss.org.tw/seminar/meeting2/

ARM 9 開發板

圖片
內附: 1. mini2440學習開發板一片 2. 電源適配器(+5V) 3. DB9直連串口線一條 4. 交叉網線一條 5. USB線一條 6. 簡易JTAG小板(可配合H-JTAG進行單步模擬調試)一個 7. 帶觸摸的NEC3.5寸屏一個(配精緻固屏面板) 8. DVD開發光碟一張 採購金額3500元如果有需求的人在來給我mail吧,我可以幫你採買但是光碟裡面沒有繁體的wince不過我有build一版可以互相研究。

SQL欄位內 int 資料前面補0字元

例如 1 要變成 01 select right('00'+cast(shour as varchar),2) from 表格

Switch WIFI Command

Enum CEDEVICE_POWER_STATE PwrDeviceUnspecified = -1 D0 = 0 D1 D2 D3 D4 PwrDeviceMaximum End Enum Public Shared Function DevicePowerNotify(ByVal device As String, ByVal state As CEDEVICE_POWER_STATE, ByVal flags As Integer) As Integer End Function Public Shared Function SetDevicePower( _ ByVal pvDevice As String, _ ByVal df As Integer, _ ByVal ds As CEDEVICE_POWER_STATE) As Integer End Function Public Shared Sub wifi_power_on() Try DevicePowerNotify("{98C5250D-C29A-4985-AE5F-AFE5367E5006}\Jedi",CEDEVICE_POWER_STATE.D0, 1) SetDevicePower("{98C5250D-C29A-4985-AE5F-AFE5367E5006}\Jedi", 1,CEDEVICE_POWER_STATE.D0) Application.DoEvents() Catch End Try End Sub Public Shared Sub wifi_power_off() Try DevicePowerNotify("{98C5250D-C29A-4985-AE5F-AFE5367E5006}\Jedi",CEDEVICE_POWER_STA

Windows Mobile Developer Power Toys

The Power Toys include: 1.Emulator ActiveSync Connection Tool - Allows Activesync to connect to your Emulator session from Visual Studio .NET 2003. 2.ActiveSync Remote Display - Display Pocket PC applications on your desktop or laptop without needing any device side configuration. 3.CECopy - Command line tool for copying files to the device currently connected to desktop ActiveSync. 4.Convert PPC DAT to SP XML - Command line tool for generating Smartphone CABWizSP XML docs from existing Pocket PC CAB files. 5.Hopper - User input stress simulator. 6.JShell - UI version of the Platform Builder Target Control Window. 7.PPC Command Shell - Command shell for the Pocket PC 2003 device. 8.RAPI Debug - Displays detailed information about currently running processes. 9.RAPI Start - Command line tool to remotely start an application on your Pocket PC from your desktop. 10.TypeIt - Send characters/strings to the Smartphone 2003 Emulator via ActiveSync. http://www.microsoft.com/downloads/details.a

calendar and contacts sync for iPhones and Windows Mobile devices,

http://googleblog.blogspot.com/2009/02/calendar-and-contact-syncing-for-iphone.html

Auto-close message box

圖片
Imports System.Runtime.InteropServices Public Class Form1 _ Private Shared Function FindWindow(ByVal lpClassName As String, ByVal lpWindowName As String) As IntPtr End Function _ Public Shared Function PostMessage(ByVal hWnd As IntPtr, ByVal msg As Integer, ByVal wParam As IntPtr, ByVal lParam As IntPtr) As Integer End Function Public Const WM_CLOSE As Integer = &H10 Private Sub StartKiller() Dim timer As New Timer() timer.Interval = 3000 '3秒啓動 AddHandler timer.Tick, AddressOf Timer_Tick timer.Start() End Sub Private Sub KillMessageBox() '依MessageBox的標題,找出MessageBox的視窗 Dim ptr As IntPtr = FindWindow(Nothing, "TEST") If ptr <> IntPtr.Zero Then '找到則關閉MessageBox視窗 PostMessage(ptr, WM_CLOSE, IntPtr.Zero, IntPtr.Zero) End If End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click