Click here to Skip to main content
15,888,461 members
Home / Discussions / Mobile
   

Mobile

 
GeneralRe: symbain os Pin
Cedric Moonen29-Apr-08 2:30
Cedric Moonen29-Apr-08 2:30 
Generalsymbian os Pin
ravilikesaboli29-Apr-08 1:07
ravilikesaboli29-Apr-08 1:07 
GeneralRe: symbian os Pin
Vasudevan Deepak Kumar2-May-08 0:45
Vasudevan Deepak Kumar2-May-08 0:45 
QuestionIs it not possible to create a window which is originally minimized in Windows CE 5.0? Pin
Klive829-Apr-08 0:15
Klive829-Apr-08 0:15 
QuestionTreeView Control Problem ? Pin
monafr8128-Apr-08 5:28
monafr8128-Apr-08 5:28 
GeneralRe: TreeView Control Problem ? Pin
Arjun Marwaha29-Apr-08 9:16
Arjun Marwaha29-Apr-08 9:16 
GeneralRe: TreeView Control Problem ? Pin
monafr811-May-08 2:41
monafr811-May-08 2:41 
GeneralRe: TreeView Control Problem ? Pin
Arjun Marwaha1-May-08 10:25
Arjun Marwaha1-May-08 10:25 
You can try creating a function to clear the nodes and call it recursively for child nodes as shown below:

Private Function ClearChildren(objTV As TreeView, strParentNode As String) as Boolean

On Error Goto Hell

Dim i As Long

'Use a reference to the Parent node
With objTV.Nodes(strParentNode)
'Loop through the children
For i = 1 To .Children
'Determine if the child has a sub node
If .Child.Children > 0 Then
'Recurse this method
ClearChildren objTV, .Child
End If

'Clear the node
objTV.Nodes.Remove .Child.Index
Next
End With

'Success
ClearChildren = True

Exit Function

Hell:

End Function

Regards,
Dave

Dave Traister
Software Engineer
ComponentOne LLC
www.ComponentOne.com

GeneralMake a CAB file for PocketPc2003 Pin
AlexB4728-Apr-08 4:01
AlexB4728-Apr-08 4:01 
GeneralRe: Make a CAB file for PocketPc2003 Pin
PavanPareta13-May-08 0:24
PavanPareta13-May-08 0:24 
GeneralDraw Icons on Pocket PC Pin
hermetikas26-Apr-08 12:02
hermetikas26-Apr-08 12:02 
GeneralArray sorting in C.F. 2.0 SP2 Pin
Hurricane300024-Apr-08 5:50
Hurricane300024-Apr-08 5:50 
GeneralInteractive Voice Response System Pin
KBM7323-Apr-08 20:13
KBM7323-Apr-08 20:13 
AnswerRe: Interactive Voice Response System Pin
Arjun Marwaha24-Apr-08 2:10
Arjun Marwaha24-Apr-08 2:10 
QuestionPB5.0 missing OSDesignView Tab Pin
shuaicarr23-Apr-08 16:51
shuaicarr23-Apr-08 16:51 
Generalparsing through midi using winmm (or anything else?) Pin
silvaros23-Apr-08 7:02
silvaros23-Apr-08 7:02 
Generalabout HTTP Protocol Pin
pashitech22-Apr-08 23:54
pashitech22-Apr-08 23:54 
GeneralHTTP authentication in mobile appliations [modified] Pin
pashitech20-Apr-08 22:12
pashitech20-Apr-08 22:12 
GeneralGet contact of windows mobile Pin
Rupesh Kumar Swami18-Apr-08 2:36
Rupesh Kumar Swami18-Apr-08 2:36 
AnswerRe: Get contact of windows mobile Pin
Arjun Marwaha23-Apr-08 2:09
Arjun Marwaha23-Apr-08 2:09 
GeneralDetermine particular form is open or not Pin
Rupesh Kumar Swami18-Apr-08 0:40
Rupesh Kumar Swami18-Apr-08 0:40 
GeneralRe: Determine particular form is open or not Pin
Giannakakis Kostas18-Apr-08 10:07
professionalGiannakakis Kostas18-Apr-08 10:07 
QuestionInjecting DLL: Windows CE Pin
tony_Udz17-Apr-08 2:42
tony_Udz17-Apr-08 2:42 
GeneralRe: Injecting DLL: Windows CE Pin
Dave Kreskowiak17-Apr-08 3:59
mveDave Kreskowiak17-Apr-08 3:59 
GeneralRe: Injecting DLL: Windows CE Pin
tony_Udz17-Apr-08 4:24
tony_Udz17-Apr-08 4:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.