Tagged Questions
The list-of tag has no wiki summary.
11
votes
15answers
409 views
Online tools to help application development
Not sure if this has been done before, but I think it will be a good idea to get a list of (free) online tools available that help application development. By 'online tools', I mean in-browser ...
2
votes
3answers
120 views
Stack overflow while allocating from heap
What exactly is happening here?
#include <boost/array.hpp>
#include <boost/assign/list_of.hpp>
struct Toy {
int m_data[100000];
};
struct Box {
Box()
: m_toys( ...
1
vote
2answers
76 views
get data fom txtfile vb.net
i'm looking for a method for reading data from a txt file. The text file have this kind of structure (fixed length fields):
0000 AAAAAA BBBBBB CCCCCCCC
0000 JJJJJJ III ...
1
vote
1answer
63 views
Linq orderby national character sets
I have a List which i OrderBy alfabetically on a property.
Unfortunatly the database setup (i guess) does not handle national characters properly when fetching the data..I cannot change that though ...
0
votes
2answers
37 views
modifiy item property in list(of structure)
In a list(of structure), i constantly have to modifiy the property of items using this code
Private Sub ChangeState(ByVal ww As WebWorker, _
ByVal NewState As WorkerState)
...
0
votes
1answer
63 views
VB2005 Find/Search in a ListOf Structure
VB2005: I've been looking for several hours on a good example and i found some but unfortunately they are for VB2008+. Im currently working in VB2005 so it seems like this was harder to do in that ...
0
votes
2answers
47 views
Why does List.Clear() also get rid of a class property?
I have the following class:
Public Class ID
Private sID as List(Of Integer)
Public property IDlist as List(Of Integer)
Get
Return sID
End ...
0
votes
4answers
103 views
count items in List(Of structure) using predicate .net 2.0 vb.net
I need to count the items that meet a criteria in a list(of structure) in .net 2.0. eg
Dim listcars as new list(or car)
Structure car
Dim Name as string
Dim year as integer
End structure
Now ...
0
votes
4answers
113 views
When I add a new item to a List<List<string>> each item of the parent list get the same values
Apologies if the answer to this is obvious, I'm fairly new to C# and OOP. I've stepped though my code and spent quite some time on Google but I can't find the answer to my question (quite possibly ...
0
votes
1answer
247 views
Problem Understanding Access Modifiers in VB.Net with List( Of Object)
I've recently been updating a lot of my code to comply with proper n-tier architecture and OO programming, following examples from a book.
I'm starting to get problems now because I don't fully ...