how to create edb in C# and read data from there. :doh: plzzzzzzzzzzzzz anyone help as soon as possible.
ujjawal kumar
Posts
-
EDB -
convertion of xls file into csv file.hi, How to convert a xls file(mobile excel) into csv file(programatically)? Thanks.
-
Excel filesame question: I am trying to import data from an excel file to SQL Server CE?Would u pls help me out?
-
How to read .xls file(Excel Mobile) in WM?Hi, I have to import data from .xls file to sqlCE.Pls guide me to do that.
-
How to enumerate all the window handles in WM6(C#)?Hi, I am not able to get the windowtext of all windows opened in device(taskmanger application). Also Getprocess() is not working in WM6.Is there anyother way to retrieve all the HANDLES so that i can get the windowtext using GetWindowText(). Thanks.
-
Sample C# code to take the screenshots the application opened in windows mobileBitmap bmpScreenshot;
Graphics gfxScreenshot;
bmpScreenshot = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
gfxScreenshot = Graphics.FromImage(bmpScreenshot);
gfxScreenshot.CopyFromScreen(0, 0, 0, 0, bmpScreenshot.Size);
bmpScreenshot.Save(@"\screenshot.bmp", ImageFormat.Bmp);It works fine in windows.But it is showing no extension method like CopyFromScreen in windowsmobile. Would u pls help me out to take screenshot in windowsmobile in C#?
-
Screeshot in winceSample code(c++) to get the screen shot of the windows opened in the desktop on CE Device machine. How would the screen shot be saved as bitmap file in the device machine? Thanks
-
How to get the handles of all the windows opened in wince?I have tried with the folowing code snippet.Still i am not able to retrieve the handle for the window. WNDENUMPROC lpEnumFunc = &EnumWindowsProc; TCHAR szName[50]; HWND hTempWnd = NULL; lpEnumFunc(hTempWnd,lParam); if(EnumWindows(lpEnumFunc ,LPARAM(hWnd))) MessageBox(hWnd,L"EnumWindows Successful",NULL,0); lpEnumFunc(hTempWnd,lParam); GetWindowText(hTempWnd,szName,50); MessageBox(hTempWnd,szName,szName,0);
-
How to get the handles of all the windows opened in wince?I want to retrieve handles for all the windows opened in wince machine. Using my application i need to retrieve the handle for the windows that has been opened in desktop and list the title of those windows in a list view . Thanks in Advance.
-
Create process in winceYes i am using create process()for each file. It is creating new window for every function. I want to open it in the same window?
-
CreateProcess in WinCEHi Sethuraman, I am using create process function to open a jpg file using ie in WINCE... CreateProcess(_T("\\windows\\iesample.exe"),imFullPath, NULL, NULL, FALSE, NULL, NULL, NULL, NULL, &processInfo1); where imFullPath is the path for a jpg file. For opening the next jpg file,i am using create function() onemore time. Also it is opening in a new window. I want to open all jpg files in the same window.
-
Create process in winceHi all, I am using create process function to open a jpg file using ie in WINCE... CreateProcess(_T("\\windows\\iesample.exe"),imFullPath, NULL, NULL, FALSE, NULL, NULL, NULL, NULL, &processInfo1); where imFullPath is the path for a jpg file. For opening the next jpg file,i am using create function() onemore time. Also it is opening in a new window. I want to open all jpg files in the same window one after the other like a slideshow. Thanks in advance.