Search found 4 matches

by buhl
Thu Apr 11, 2013 6:08 am
Forum: Scripting
Topic: Copy Project Files to USB
Replies: 1
Views: 5573

Copy Project Files to USB

Hello

How can I copy a folder inside my project files on the screen to an usb drive?
by buhl
Mon Apr 08, 2013 12:40 pm
Forum: Scripting
Topic: Edit control properties by string name
Replies: 6
Views: 13949

Re: Edit control properties by string name

Normally you would use this function in Compact Framework to locate a control by its name but it does not work. private Control FindControl(Control parent, string ctlName) { foreach(Control ctl in parent.Controls) { if( ctl.Name.Equals(ctlName)) { return ctl; } FindControl(ctl, ctlName); } return nu...
by buhl
Mon Apr 08, 2013 12:16 pm
Forum: Scripting
Topic: Edit control properties by string name
Replies: 6
Views: 13949

Re: Edit control properties by string name

Can you please explain that some more because I can't see how I can add them if i can't find them by their name? I don't know how many object I have on the page because I auto generate them. But in run time I need to rearrange them depending on if some are disabled and therefore not visible. I know ...
by buhl
Sat Apr 06, 2013 6:34 am
Forum: Scripting
Topic: Edit control properties by string name
Replies: 6
Views: 13949

Re: Edit control properties by string name

Hello I was looking for exactly this, but sadly this only works for projects target PC and I'm working on a project for T15B. I want to find a control by searching for its name. When I compile the example, I get the following error: The type or namespace name could not be found (are you missing an a...