Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008
all groups > dotnet compact framework > july 2004 > threads for thursday july 22

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

OpenNETCF.Multimedia.Audio.Recorder recording at 8khz
Posted by Razvan Dragomirescu at 7/22/2004 10:39:05 PM
Hi guys, Is there any way to make the OpenNETCF Recorder record at 8KHz? It seems to only know about 11, 22 and 44khz, but not 8. Is there a limtation in the hardware that makes it impossible to record at 8khz? Or should I just go ahead and mess with the sources for the SoundFormats enum and a...more >>


Adding files while making CAB file
Posted by flyingwhiz NO[at]SPAM yahoo.com at 7/22/2004 8:10:22 PM
I am trying to make CAB file in .Net CF.I want to add my Data source file name in /Windows (as /windows/xyz.sdf) and a folder with Text file in Program Files(/Program Files/Fld/xyz.text).I have to add these two files while making CAB file in CF.How can I do this? Can any one give me some steps d...more >>

why does this code not work on Win Ce.net embedded
Posted by Peter at 7/22/2004 5:16:49 PM
Hello All, I tried to hide the win taskbar with no avail... Is there something wrong in the code ?? Thanks Peter Imports System.Runtime.InteropServices Public Class Form1 Inherits System.Windows.Forms.Form #Region "Test" Const SHFS_SHOWTASKBAR As Integer = &H1 Const...more >>

Question about a CAB file
Posted by tiger79 at 7/22/2004 5:00:31 PM
Hello, I'd like to make a cab file from my application, even though it will be a customized version... I'd like to place a database I created in the cab file, so that this database will be placed on the pocket pc during install... I allready made the database file part of my Visual Studio proje...more >>

me.close doesn't work!!!
Posted by Glyn Meek at 7/22/2004 4:25:29 PM
I have removed all the non relevant parts from the code with which I am having problems, and this is the essence of it... Dim frm As New EditContact ' LOAD UP THE DISPLAY FOR THE SELECTED CONTACT frm.LoadData(MyContact, myLabel(currentfield)) ' DISPLAY THE FORM frm.ShowDialog() ' ...more >>

Access a property in another form
Posted by Diego F. at 7/22/2004 3:59:45 PM
I'm writing an application that has some forms. I need an object in the main form, but I'm not sure about how to access it from other forms. Which is the best way to do it? Can I declare the object as static and access directly the form? -- Regards, Diego F. ...more >>

Microsoft ActiveSync
Posted by David at 7/22/2004 3:56:12 PM
Hello. How can I connect with Microsoft ActiveSync to PPC emulator of VS.NET 2003? ...more >>

OpenNETCF Sound Recorder on Smartphone 2003
Posted by Razvan Dragomirescu at 7/22/2004 3:46:31 PM
Hello everyone, I was just wondering if the OpenNETCF Sound Recorder (OpenNETCF.Multimedia.Audio.Recorder) works on a Smartphone 2003 device. I keep getting an IOException when trying to record. Here's my code: ------------------------------------------ public void recordSound() { Rec...more >>



Indexes in SQL CE 2.0
Posted by tiger79 at 7/22/2004 2:04:21 PM
Hi, I'd like to create programmaticalyy some extra indexes in my database. Here is one of my tables : SqlCeEngine eng = new SqlCeEngine(@"Data Source=\My Documents\DICT.sdf"); eng.CreateDatabase(); SqlCeConnection con = new SqlCeConnection(@"Data Source=\My Documents\DICT.sdf"); con.O...more >>

Network Help: Tcpclient and Server
Posted by Raimondo at 7/22/2004 1:29:27 PM
I have developed one application Server in VB 6 (IP 192.168.0.2 - Port 995) I want to develop one application vb.net for smartdevice (S.O. Ce.net) which must connect whit my Server and send a message. Please can you help me? ...more >>

Few Queries.
Posted by Amitp at 7/22/2004 1:06:26 PM
Hi I have a few queries to be asked. 1) How can I view my WinCE device registry from my desktop. I got a few links, but unluckly those were for PocketPc and were not helpful for my WinCE device. Could you let me know any application or links which are useful to view the registry? 2) I have ...more >>

Ping Gateway Computer
Posted by MDB at 7/22/2004 12:21:23 PM
Hello All, I have an app that communicates via a ad-hoc wi-fi connection. It appears to me that since the connection is via a ad-hoc, my device is always showing that I am connected although I am not. So my question is, is it possible for me to pragmatically ping my host computer to see if I...more >>

Windows Mobile 2003
Posted by David at 7/22/2004 11:14:06 AM
Hello. Are the SDK for Windows Mobile 2003-based Pocket PCs and SDK for Windows Mobile 2003-based Smartphones free? Which version of this products are included in Visual Studio .NET 2003? For installing this products must I uninstall old versions (if yes how)? Must I update Compact Framework in...more >>

Tabcontrol for pocket pc - .NET Compact Framework
Posted by Claudio Menezes at 7/22/2004 9:25:36 AM
Hi all, I am creating an application for Pocket Pc with VB.NET, and I need to enable and disable the tabpages individually in the tabcontrol. Anyone could help me? I need a lot to solve this problem. Thks *** Sent via Developersdex http://www.developersdex.com *** Don't just parti...more >>

Checking for the text files in the list box
Posted by flyingwhiz NO[at]SPAM yahoo.com at 7/22/2004 9:08:09 AM
I am trying to show a message when there are no Text files in the List box.But every time it is showing me the message even if there are text files in the listbox.How can I do this. This is the code I am trying to use. Dim StrFiles() As String Dim StrFile As String StrFiles = System.I...more >>

dataset.readxml performance problem Service Pack 3 beta
Posted by jeremymartinson NO[at]SPAM hotmail.com at 7/22/2004 5:56:03 AM
I have a 100k xml file and I am attempting to read it into a dataset using dataset.readxml My xml file DOES have several nested nodes. However, none of the nodes have more than 10 attributes. I am experiencing 10-12 seconds time to load the xml document into the dataset. Loading the schema ...more >>

Error using POOM with VB.NET
Posted by thean_keong NO[at]SPAM hotmail.com at 7/22/2004 3:13:55 AM
Hi, I am trying to play around with POOM using VB.net whereby I encountered an error during debugging FYI, I am using InTheHand.PocketOutlook.dll as my POOM wrapper to access Pocket Outlook information I did the necessary stuffs like adding reference, importing and declaration Howeve...more >>

IP Cam
Posted by samsam at 7/22/2004 2:28:07 AM
I really appreciate any help you can provide me....... The issue is about implementing an application for pocket PC (imate) to access an IP cam through the web and display the streaming video and control its tilt/pan feature. As for the cam it has only this piece of javascript to be accessed: d...more >>


DevelopmentNow Blog