all groups > dotnet compact framework > august 2003 > threads for tuesday august 19
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
Dynamically adding controls
Posted by google NO[at]SPAM winbasic.com.au at 8/19/2003 8:56:21 PM
Hi,
In VB.NET CF, I have a menu called mnuAction. I read a table in a
database and retrieve values, for which I add a menu sub item. E.g. If
I read 3 items, I add 3 submenus. I loop through the Data Reader as
follows :-
Do While sqlDR.Read
ReDim Preserve mnu(iMnuCount)
mnu(iMnuCou... more >>
Structure Layout
Posted by wanderer at 8/19/2003 5:56:41 PM
I've imported a function from a DLL that takes a custom
structure. Something like:
typedef struct _myStruct{
INT16 A;
UINT32 B;
} myStruct;
Now, I want to use the function in C#, but I don't have a
definition of the structure. Thus, I defined the
equivalent structure in my C# code... more >>
Customizing windows ce
Posted by Mona Galal at 8/19/2003 5:05:45 PM
I want to customize the windows ce so that only one determined application
runs at startup but others are blocked.
--
Thanks for your kind cooperation
Best Regards
Mona Galal
Advanced Logic Systems
mgalal@alscorp.com
... more >>
Event when a TabControl is about to change pages in VB.NET
Posted by Bob Trabucco at 8/19/2003 3:13:03 PM
Hello,
I need to be able to intercept a TabControl BEFORE it switchs pages and do
some things. There doesn't appear to be an event for that in the Compact
Framework using VB.NET.
Am I missing something? Any sample code anyone?
Thanks in advance,
Bob
... more >>
Notifications
Posted by Thore Berntsen at 8/19/2003 12:48:52 PM
One short question. Is notifications supportet in the Compact Framework?
Thore Berntsen
VBD
Norway
... more >>
Is there a support for configuration management with CF
Posted by vokuit00 at 8/19/2003 11:45:26 AM
Hello,
for my work i need to write a program which checks as example every day, if
there are updates of some files on a server.
If there are updates, the client should download them, stop working with the
old files and then begin working with the new files.
(Working means, i had to save the... more >>
CFile in CE and C#
Posted by wanderer at 8/19/2003 11:38:52 AM
If I have a DLL that requires a pointer to a CFile type
as a parameter, is there a way I can create a CFile handle
and initialize it in C# so I can use my DLL function?
Thanks.... more >>
XML writting, what´s wrong?
Posted by Ibai Peña at 8/19/2003 11:26:17 AM
Hi,
I need to update a XML file in the PDA. I use this code for it.
string CodArt = txtArtic.Text.Trim();
string CodAct;
for (int i=0;i<TInvent.Rows.Count;i++)
{
CodAct=(string)TInvent.Rows[i].ItemArray.GetValue(0);
if (CodAct.Equals(CodArt))
TInvent.Rows[i].ItemArray.Set... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Limiting the click action only to the Image in the listView control
Posted by Asheesh at 8/19/2003 11:12:00 AM
Hi All,
This is rather peculiar, but I'd like to have it in my application. I'm
using a listView control for which I've associated an Imagelist control to
its SmallImageList property.
All this is fine, I display my images easily.
But instead of a FullRowSelect, I'd like the user to select t... more >>
New to CF + SQL CE - Please Help
Posted by Simone at 8/19/2003 10:44:49 AM
I am trying to run the IBUYSPY sample application on the emulator, RDA works
fine, but I am getting two errors if I select replication:
Initializing sql server reconciler has failed
The remote server does not exist or has not been designated as a valid
publisher
I'm using the server's IP ad... more >>
CAB File
Posted by Allen Holman at 8/19/2003 8:35:58 AM
I have added some .txt files to the cab and they are
getting installed. The problem is I would like the .txt
files to be editable by the user. It appears that the
installation marks the files as read only.
Is there something I can do to make the files editable?
Thanks, Allen
... more >>
Webservices: Ist it possible to call a function on the client?
Posted by vokuit00 at 8/19/2003 7:36:07 AM
Hello,
i need a communication between client and server. The Server runs on XP and
the client on Windows CE .NET.
Calling functions on the Server was no problem, but depending on client, the
server must send Files to the client or gave back some informations.
Normally with calling a functio... more >>
Menu disappears on Scrollbar using
Posted by trollpower NO[at]SPAM gmx.de at 8/19/2003 6:50:55 AM
Greetings,
im working on WinCE 4.1. I have a scrollbar, which moves a Panel, if i
use the Scrollbar (only vertical). The Scrollbar appears if i click on
the InputPanel to let it appear. The problem here is, that as soon as
i use the scrollbar, the mainmenu disappears, somehow.
Doas anyone h... more >>
parse xml
Posted by cle at 8/19/2003 3:26:12 AM
how do I parse an xml file in the cf.
I tried to inherit from xmlElement and add a method to
access directly the xPath expression; why is it impossible
to inherit from the xmlElement??
tia cle... more >>
Override Text Box OnPaint Method?
Posted by Joe Keller at 8/19/2003 1:50:42 AM
Hello,
I'm attempting to override a text box control to draw a custom border around
the control when the control has the focus using this snippet of code:
public class MyTextBox: System.Windows.Forms.TextBox
{
protected override void OnPaint(PaintEventArgs e)
{
Graphics gr = e.Gr... more >>
Creating Custom Control Invalidates Form Designer?
Posted by Joe Keller at 8/19/2003 12:54:00 AM
Hello,
I have created a small test project where I have created a custom control
and I can get the custom control to run successfully. However, when I then
switch from code to "design" mode of the form, the form is not displayed and
the toolbox is grayed out.
Is there something simple I'm ... more >>
Using a TCP Socket connection is very slow
Posted by Liam at 8/19/2003 12:41:43 AM
Hello,
I am using tcp to connect from a pocket pc device to a
socket on a server over a wireless lan. I then
beginreceive on the socket and wait for information to
appear on the socket. The information does get to the
pocket pc device but it takes much longer to get there than
it does... more >>
|