Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~722 People Reached
Favorite Forums
Favorite Tags
Member Avatar for Jayme65

Hi, Could you please help me figure out how I could bind "SelectedItems" of a listbox? Here I have a 'listbox_2' that contains a list of fruits and vegetables ;) There's another 'listbox_1' that contains groups of fruits and vegetables (under a list<of string> format...maybe is it my first error? …

0
217
Member Avatar for Jayme65

Hi, One of the users of my application is complaining that he can't open the application. He gave me the debug output of the crashed application...unfortunately I'm not an expert and have difficulties to manage it...would you please give me some help and help me understand why the application is …

Member Avatar for ReyJEnriquez
0
221
Member Avatar for Jayme65

Hi, I have to get a directory file list, filtered on multiple extensions...and sorted! I use this, which is the fastest way I've found to get dir content filtered on multiple extensions: Dim ext As String() = {"*.jpg", "*.bmp","*png"} Dim files As String() = ext.SelectMany(Function(f) Directory.GetFiles(romPath, f)).ToArray Array.Sort(files) and then …

Member Avatar for Begginnerdev
0
211
Member Avatar for Jayme65

I have an XML file structured this way: <Emulators> <Settings> <vol name="10"/> <Volume>10</Volume> <Keys name="key1" value="1" /> <Keys name="key2" value="2" /> <Keys name="key3" value="3" /> <Keys name="key4" value="4" /> </Settings> <System> <Name>name1</Name> <Icon>name1.png</Icon> <topplayed> <Top>top1</Top> <Top>top2</Top> <Top>top3</Top> </topplayed> </System> <System> <Name>name2</Name> <Icon>name2.png</Icon> <topplayed> <Top>top4</Top> <Top>top5</Top> <Top>top6</Top> </topplayed> </System> </Emulators> I …

0
73