all groups > dotnet compact framework > april 2004 > threads for friday april 30
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
Filling database with data from txt file
Posted by tiger79 at 4/30/2004 2:53:49 PM
Hi,
i'd like to read data out of a text file directly into an SqlCe database.
The textfile is something like this :
1;0;parent1;
2;0;parent2;
3;0;parent3;
4;1;child1parent1;
5;1;child2parent1;
6;2;child1parent2;
so first number would be like an ID, second would be a parent_ID, and the
... more >>
How to read/write registry values?
Posted by Richard Lewis Haggard at 4/30/2004 2:22:05 PM
I wanted to save some information in the registry but was stymied. The
C#.NET documentation says to use a number of Win32 functions like
RegistryKey, etc., none of which seem to be supported in the CF world. Is it
possible to read and write to the registry and, if so, what are the
assemblies tha... more >>
[OT] Html install file
Posted by Lloyd Dupont at 4/30/2004 11:29:38 AM
It's a tad out of topic but it related to my CF app.
I'm creating an autorun install CD.
My objective is to lauch an HTML file with a link to the setup.msi file.
The problem is the link don't work !
in my html file I have <a href="setup.msi">install</a>, the link is correct
if I copy paste ... more >>
Bitmap ?!
Posted by Lloyd Dupont at 4/30/2004 9:40:58 AM
in my program I could edit picture and import them from a file.
we test recently from a 143Kb jpg and I have weird problem.
in the program it's stored as a byte[] data;
when the user want to see it I create the picture with
Bitmap b = new Bitmap(new MemoryStream(data));
what's really weir... more >>
numeric Input panel (again ...)
Posted by Lloyd Dupont at 4/30/2004 8:46:23 AM
how do I show the numeric input panel ?
(I mean thge default numeric input panel which appear when you clic "123")
It's easy to show the input panel, but I can't find no way change the mode
....
--
ihookdb
Get your data mobile
http://www.ihookdb.com
... more >>
BMP to JPEG - Dont be scared!!
Posted by email NO[at]SPAM craighardcastle.com at 4/30/2004 7:12:30 AM
Hi,
im writing a program that sends a video stream to a remote pc. I've
managed to get the bitmap data from the piture box control, via Bob
Nicholls earlier post.
My problem now is that the data is too big.
The code that Bob Nicholl did seems to convert the image to a 24bit
bmp, which is... more >>
Quick ListView Dilemma
Posted by marcmc at 4/30/2004 2:56:02 AM
txtLineTotal.Text = lstOrderDtl.Items(lstOrderDtl.SelectedIndices(0)).SubItems(0).Text().ToStrin
Argument Out of range exception, the value being passed is "1
Any ideas?... more >>
How to develop managed C++ app in VS.net 2003
Posted by Sudesh Sawant at 4/30/2004 1:51:03 AM
How to develop managed C++ app in VS.net 2003
I am unable to figure out the steps to develop a managed C++ application using VS.net 2003. I donot get Smart device application menu in Visual C++. I have a code written fully in managed C++ and want to port it to wndows CE as a proof of concept. Any h... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Stored procedures
Posted by dys at 4/30/2004 1:26:02 AM
Hi, I've seen that stored procedures are not supported by SQL Server CE
But what about calling a stored procedure from a remote standard SQL SERVER
I've try this
SqlConnection PubsConn = new SqlConnection
("Data Source=server;integrated " +
"Security=sspi;initial catalog=pubs;")
SqlCommand... more >>
How to call a tooltip in compact framework C# ?
Posted by stef al via .NET 247 at 4/30/2004 12:14:25 AM
(Type your message here)
--------------------------------
From: stef al
I make a custom control and want to show a tooltip.
How to show a tooltip in Win Ce?
what a class and namespace is for it?
Or i must use a API function? what?
-----------------------
Posted by a user from .NET 247 (... more >>
|