3
votes
10answers
277 views
.NET graph library around?
I am looking for Graph libraries for .net. Are there any out?
ps: I mean GRAPH libraries, not graphics nor charting libraries!
edit: What I mean is graphs, from graph theory:
I also need it to …
0
votes
1answer
6 views
scroll using mousewheel inside panel with dynamically added picturebox controls
I've dynamically added 20 pictureboxes to a panel. i would like to see the panel scroll when I use the mousewheel. I set the autoscroll = true on panel control. Here is the code.
For i As …
7
votes
11answers
416 views
Teaching my 13 year old girl to program [closed]
my daughter has shown a lot of interest in my work. i showed her a "hello world" program in VB. she was very excited, and played around with the code a bit and made different message boxes.
which …
0
votes
1answer
9 views
How do I alphabetically sort a generic List(Of String) in VB.NET?
I've created and populated a generic list of strings like this:
Dim MyList As New List(Of String)
MyList.Add("Beta")
MyList.Add("Echo")
MyList.Add("Charlie")
MyList.Add("Alpha")
MyList.Add("Delta")
…
0
votes
2answers
40 views
Strategies for testing against a live system.
Let me describe the scenario:
Our VB.NET web application talks to a third party data provider via webservices. It also saves data in a HUGE SQLServer database which has extensive business logic …
1
vote
3answers
34 views
Get access to an incrementing integer during LINQ Select
Dim project = new Project(1)
Dim tasks = Task.GetTasks()
Return <?xml version="1.0" encoding="UTF-8"?>
<Project xmlns="http://schemas.microsoft.com/project">
…
0
votes
3answers
21 views
Error with the Using Statement and Lazy Initialized Property
The code below will throw an InvalidOperationException: The ConnectionString property has not been initialized. The exception is thrown at the line calling Connection.Open() in the Load method. If I …
4
votes
5answers
91 views
Why use System.Threading.Interlocked.Decrement instead of minus?
I converted some c# code to vb.net and the converter.telerik.com turned this:
i--;
into this:
System.Math.Max(System.Threading.Interlocked.Decrement(i), i + 1)
Whats up with all the fancy-ness?
5
votes
2answers
2k views
ListView with DataPager not working
From everything I've read, it seemed that adding paging to a ListView control should be dead simple, but it's not working for me. After adding the ListView and DataPager controls to the form and …
0
votes
2answers
19 views
How to remove the current DataItem from being bound to a ASP.NET Repeater?
I want to evaluate the current DataItem being bound to a repeater and remove it from being added if my condition meets. I would have thought that setting e.Item.DataItem to Nothing would work, but it …
1
vote
3answers
376 views
Can I skip MIME-parsing to get an attachment??
Hi - I am new here so first of all my greetings to you
I am writing an application to run on my Windows Mobile (Pocket PC). FYI, I am using VB.NET.
My idea is to use my e-mail account with my …
1
vote
2answers
34 views
wrong result with IF() function and a nullable integer?
I would expect the following vb.net function to return a value of Nothing, but instead its returning a value of 0...
Public Shared Function GetDefaultTipoSrvTkt() As Integer?
Dim tsrvDict As New …
0
votes
9answers
131 views
Moving from VB.Net to C#
I'm seriously considering moving from VB.Net to C#. If you made the jump to C# from vb.net, then what were the best resources you used to learn the language going from novice to pro?
Thanks
1
vote
3answers
50 views
How do I access a string(index) in .Net 1.1?
I have converted this existing C# .NET 2.0 code (which appears to take in a string with any characters and return only the numbers in that string):
private static string StripMIN(string min)
…
0
votes
2answers
122 views
Custom Installer Class
Hi everyone,
I'm working on a project which needs some third party components prequisites to be installed before installing my .NET Application. Can someone tell me how to do it ?? I'm using .NET …
