all groups > dotnet compact framework > may 2004 > threads for thursday may 27
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
Web Exceptions on SX56
Posted by Monty Ghitter at 5/27/2004 11:21:03 PM
I'm getting a lot of Exceptions when making Web Service calls over GPRS from an SX56. Typically it is "can't read data from transport connection" but I have observed others too." I'm running .NetCF 1.0 SP2 on PocketPC Phone Edition 2002. I don't see these errors on the emulator or when connected ... more >>
Which is Faster - Appending to a String or a StringBuilder?
Posted by Joe Keller at 5/27/2004 8:33:27 PM
Hello,
For appending characters onto an existing set of characters, is it faster to
use a String object or the StringBuilder object?
For example, is there any performance difference between the two or is one
more appropriate and compact than another:
Example #1
string s = "testing";
s... more >>
Referencing
Posted by angka at 5/27/2004 7:46:04 PM
An unhandled exception of type 'System.TypeLoadException' occurred in System.Windows.Forms.dl
The above exception is thrown when i run my compact framework application. I can compile the project but when i call a class the above exception is thrown. The class i called consist of full framework dll... more >>
Anyone else having problem debuging on a device with weird errors?
Posted by KJBarnes at 5/27/2004 4:58:06 PM
I am debuging an PPC application written in VB where I get non-recreatable
errors when running in debug mode on a device?
... more >>
Form Show
Posted by Christopher Pragash at 5/27/2004 2:10:52 PM
Hello All,
I am having trouble displaying forms (eg: Form2.Show) when called from
within a form (eg: Form). What I am trying to do is to create an instance of
Form2 (objForm2 = new Form2) and then call show on that form (objform2.Show
and objForm2.BringToFront). I also try to hide Form1 (Form1... more >>
Custom PB SDK in VS.Net
Posted by Mark Arteaga at 5/27/2004 12:56:08 PM
I created a custom emulator platform using Platform Builder 4.2. The image builds and I can connect to the image using PB to debug. I also created an SDK to be used in VS.Net and eVC. The SDK install on the dev boxes and does show up in VS.Net (device deployment dropdown).
When I click on Tool... more >>
Premature Death of a Thread
Posted by Bart Van den Poel at 5/27/2004 11:14:44 AM
I have made a Small Pocket PC app that works over a GPRS network.
The App contains a Thread that periodically polls over the internet
to see if there are messages for it. If there are, the Thread makes a
Webservice connection to a Web Server and gets some data of it.
All's well but sometimes t... more >>
Compact Framework TCP Client
Posted by prubbert at 5/27/2004 10:17:03 AM
Hi,
I've written a TCP Client and Server app that runs from a CE.Net device =
(Client) to my laptop (server). This runs without any problems if I use =
my wireless access point to provide the network.
However, If I make a "computer to computer" connection using a wireless =
card in my lapto... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Solution for RPC with Compact .NET Framework
Posted by Lourenço Teodoro at 5/27/2004 10:11:07 AM
I need to write a server that will run on the Compact .Net Framework. This
server will have to execute function calls requested from the client.
Because the .Net Remoting is not available in the Compact .Net Framework,
the only way that I thought was using sockets.
I would appreciate if anyone... more >>
Differences reading XML into listbox in compact framework versus windows forms
Posted by jm NO[at]SPAM microsurveys.co.uk at 5/27/2004 7:26:09 AM
can anyone tell me why this same code works on a normal windows
platform but when used in compact framework application produces an
argument exception on setting either the valuemember or displaymember
ds = new DataSet();
string filePath = @"\Program Files\crp3\airf2.xml";
ds.ReadXml(file... more >>
VS and wireless debugging
Posted by Derek at 5/27/2004 3:36:03 AM
Hi
I want to be able to connect my handheld wirelessly to my Visual Studio on my PC and start an application in debug mode. I guess Id also need to install ActiveSync onto my handhled through the wireless network too. How is this possible? ActiveSync and Visual Studio doesnt seem to have wireless ... more >>
How To Hide Mousecursor
Posted by DocDeath at 5/27/2004 2:31:08 AM
How To Hide Mousecursor... more >>
Problem with OpenNetCF.Net adapter
Posted by cescoc NO[at]SPAM yahoo.it at 5/27/2004 2:24:59 AM
Hi everybody.
I have writed a small test application to understand the
functionalities offered by OpenNetCF.Net namespace.
My problem is that, when i do this call in the code:
AdapterCollection ac = OpenNETCF.Net.Networking.GetAdapters();
I get the following excpetion:ArgumentOutOfRangeEx... more >>
ContentLength = -1 with HttpWebResponse() ??
Posted by ongg NO[at]SPAM w-linknospam.net at 5/27/2004 1:45:17 AM
In .NetCF, upon trying to access the following URL:
http://rss.news.yahoo.com/rss/business
via the following code:
WebRequest webReq = WebRequest.Create(url);
WebResponse webResp = webReq.GetResponse();
StreamReader sr = new StreamReader(webResp.GetResponseStream(),
Encoding.GetEncoding("u... more >>
Resource Assembly
Posted by Kokie at 5/27/2004 12:28:48 AM
I have strange problem:
I have developed two dll's (SMTP and POP). Later I have created project
using those dll's (as a reference). In the Emulator everuthing is working
OK. I can use methods and events from dll's.
But, when I build CAB's to deploy project on device, I am receiving
followin... more >>
|