Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Visual Basic / VB.NET | Forum profile

Forum profile page for Visual Basic / VB.NET on http://www.codeproject.com. This report page is the aggregated overview from a single forum: Visual Basic / VB.NET, located on the Message Board at http://www.codeproject.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "Visual Basic / VB.NET" on the Message Board at http://www.codeproject.com is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: CodeProject: Discussion Boards. Free source code and programming help - Visual Basic / VB.NET (site profile, domain info codeproject.com)
Title: Visual Basic / VB.NET
Url: http://www.codeproject.com/script/Forums/View.a...
Users activity: 35 posts per thread
Forum activity: 96 active threads during last week
 

Posting activity on Visual Basic / VB.NET:

  Week Month 3 Months
Threads: 96 322 788
Post: 360 1,181 2,796
 

Visual Basic / VB.NET Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
Christian Graus
42
user's latest post:
BUBBLE SORT
Published (2009-11-09 23:29:00)
Yep, and that's precisely why I was trying to lead him to water, rather than provide a direct answer.
daveauld
33
user's latest post:
Label Array HELP
Published (2009-11-07 03:30:00)
If it is for a programming course, then the answer will be almost certainly be in the course notes, just probably written is a slightly different way.
Luc Pattyn
29
user's latest post:
Now can i make a lot of threads...
Published (2009-11-09 19:23:00)
Some suggestions that may improve performance, and are applicable to a single-threaded or multi-threaded app: 1. don't use regexes for this, they are powerful however they are slower than simple string logic; 2. don't use string.Split() if all you need is one part Hence, use an overload of string.IndexOf() to find the Nth comma; use another IndexOf() to find the next one, then use string.SubString BTW: this would fail if fields also...
offroaderdan
27
user's latest post:
CD-RW help
Published (2009-11-09 11:39:00)
Yep theres nothing stopping them from doing that however i would say 90% of people would first run the program before copying it. Does any body not know how to take a file of a cd-rw?!?! No offensive but i joined this site because i tought it gave help? I know there are goining to be porblems with the program but they can worked on!!! All i wanted to knwo was how to delete a file from a CD-RW in vb.net
Dave Kreskowiak
23
user's latest post:
KeyPress Sounds...
Published (2009-11-09 22:39:00)
That's not going to work for any control other than the TextBox.
miladbiranvand
22
user's latest post:
How to sort the following list?
Published (2009-11-09 01:20:00)
How to sort the following list, nodes is my list tv is my treeview Now I'd like nodes to sort. Dim nodes As New List( Of TreeNode) Dim queue As New Queue( Of TreeNode) Dim top As TreeNode Dim nod As TreeNode For Each top In Tv.Nodes queue.Enqueue(top) Next While (queue.Count > 0 ) top = queue.Dequeue nodes.Add(top) For Each nod In top.Nodes queue.Enqueue(nod) Next End While Thanks!
thebiostyle
13
user's latest post:
KeyPress Sounds...
Published (2009-11-09 18:19:00)
If e.KeyChar = Chr( 13 ) Then e.Handled = True End If
d@nish
11
user's latest post:
Array Elements to different LABELS
Published (2009-11-08 02:59:00)
PAguilar09 wrote: lblPlayer1.Text += cards2(i) Because that is what you are doing. You are not setting text for the other labels anywhere. Instead of stepping by 1 in your for loop, step by 5. And set the text of all the five labels just like you have done for label1. Something like this in your loop: lblPlayer1.Text += cards2(i) lblPlayer2.Text += cards2(i+1) lblPlayer3.Text += cards2(i+2) lblPlayer4.Text += cards2(i+3) lblPlayer5.Text +=...
PAguilar09
11
user's latest post:
BUBBLE SORT
Published (2009-11-09 22:46:00)
well i set breakpoints and saw that as the loop runs my arraylength is 51 since the index value = 51 because there are 52 values total During the loop i also saw that the values are not being sorted in ascending order it takes the first value in teh array and tests to see if its in order if not then it should swap. I am so lost at why this sort wont work??????
jeshra279
11
user's latest post:
SETUP Project in Visual Basic
Published (2009-11-09 13:54:00)
I am using SQL Server 2005 Express. Please suggest me what to do? Shall I go ahead with separate installation of SQL Server 2005 Express?
 

Latest active threads on Visual Basic / VB.NET::

CodeProject: Discussion Boards. Free source code and programming help
Started 19 hours, 22 minutes ago (2009-11-10 09:59:00)  by Dave Kreskowiak
You enumerate through your objects and call Dispose on them. Seriously, your question about shutting down is not answerable because we have no idea what your code is doing, how the app is written, what your code does in the event of a shutdown request, ... What is the main purpose of the app and how is the engine that provides this functionality written??
Thread:  Show this thread (5 posts)   Thread info: Disposing all objects Size: 421 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Disposing all objects :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 1 day, 2 hours ago (2009-11-10 03:13:00)  by Christian Graus
Sounds like some incredibly simple homework to me. We're not going to do it for you, you have to try yourself. It's set so you can learn, not because the world needs this program to exist. So, what have you tried ? Think about the task, think about how to logically break down the steps you want to take. If you're stuck when you bothered to try yourself, you might post code here and ask a ...
Thread:  Show this thread (4 posts)   Thread info: Count a String using an integer; delete a character and then restart the
count from next character Size: 451 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Count a String using an integer; delete a character and then restart
the count from next character :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 20 hours, 48 minutes ago (2009-11-10 08:33:00)  by Luc Pattyn
did you do anything special to get that? is your app windowless? maybe SystemEvents.SessionEnding could help you out.
Thread:  Show this thread (5 posts)   Thread info: Unable to proper shutdown Size: 265 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Unable to proper shutdown :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 1 day, 11 hours ago (2009-11-09 18:00:00)  by Dave Kreskowiak
Don't start another thread on the same subject. No, there is no way to turn off the sound "globally" for an entire form.
Thread:  Show this thread (5 posts)   Thread info: Form Sound. Size: 159 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Form Sound. :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 1 day, 2 hours ago (2009-11-10 03:11:00)  by Christian Graus
Image.FromFile is the only method I know of to load a bitmap from a file. Do you have the right dlls imported ? System.Drawing, I believe.
Thread:  Show this thread (3 posts)   Thread info: How to use the control "PictureBox" for change pictures when it is running
on WINCE5.0 Size: 177 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: How to use the control "PictureBox" for change pictures when it is
running on WINCE5.0 :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 22 hours, 3 minutes ago (2009-11-10 07:18:00)  by d@nish
Look into DirectorySecurity class. That will help you. I guess it has a setaccesscontrol method which might be of your interest.
Thread:  Show this thread (2 posts)   Thread info: Folder permission on Vista machine Size: 166 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Folder permission on Vista machine :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 22 hours, 48 minutes ago (2009-11-10 06:33:00)  by d@nish
You really seem to be lost. The user would choose the dates as the next day. Now, to get that date in your code, you can use the value or text property of the datetimepicker.
Thread:  Show this thread (2 posts)   Thread info: time and date Size: 212 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: time and date :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 1 day, 6 hours ago (2009-11-09 22:28:00)  by Christian Graus
PAguilar09 wrote: If ShuffleCards.cards2(i) > ShuffleCards.cards2(i + 1) Then If i counts up to the biggest possible value, when it gets there, is i+1 still inside the array, or not ?
Thread:  Show this thread (11 posts)   Thread info: BUBBLE SORT Size: 297 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: BUBBLE SORT :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 1 day, 12 hours ago (2009-11-09 16:25:00)  by Dave Kreskowiak
What clicky sound? The TextBox doesn't make any noise when you type. It's possible that the browser is making a clicking noise every time you set its Document property. There is no code to turn that off.
Thread:  Show this thread (6 posts)   Thread info: KeyPress Sounds... Size: 256 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: KeyPress Sounds... :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 1 day, 11 hours ago (2009-11-09 18:05:00)  by Dave Kreskowiak
First, creating that many threads is pointless. Second, allocating a thread also allocates 1MB of memory to go with it. So, if you actually had one thread running per object and had to process, say, 500 objects at once, you just ate up 500MB of RAM. Lastly, the largest number of threads you can use and still gain a performance benefit is the number of cores in your processor. Also, a hard ...
Thread:  Show this thread (6 posts)   Thread info: Now can i make a lot of threads of a same method? Size: 983 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Now can i make a lot of threads of a same method? :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
 

Hot threads for last week on Visual Basic / VB.NET::

Visual Basic / VB.NET
Re: CD-RW help - 18 new posts
Started 1 day, 18 hours ago (2009-11-09 10:37:00)  by EliottA
Surely you're overlooking the gigantic flaw that your clients all have rewritable cd-rom drives, what do you do if a client purchases your program and his cd-rom drive does not support writing to cd's?
Thread:  Show this thread (18 posts)   Thread info: CD-RW help Size: 239 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: CD-RW help :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
Visual Basic / VB.NET
Started 2 days, 9 hours ago (2009-11-08 19:26:00)  by Dave Kreskowiak
A thread doesn't call "it's own sub" as threads are not limited to a single sub, as you put it. You setup a loop inside the sub to keep itself running until some bailout condition is met. Using Thread.Abort is a poor choice to end a thread.
Thread:  Show this thread (13 posts)   Thread info: Question about threads Size: 280 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Question about threads :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
Visual Basic / VB.NET
Started 1 week ago (2009-11-04 00:12:00)  by Christian Graus
Where does frmMain come from ? Why not use a delegate ?
Thread:  Show this thread (12 posts)   Thread info: Show items in Listview of other form Size: 93 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Show items in Listview of other form :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
Visual Basic / VB.NET
Re: types of loop - 12 new posts
Started 1 week ago (2009-11-04 03:46:00)  by Matsyendra
hello bhai koi answer to de do
Thread:  Show this thread (12 posts)   Thread info: types of loop Size: 60 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: types of loop :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
Visual Basic / VB.NET
Started 4 days, 5 hours ago (2009-11-06 23:58:00)  by Luc Pattyn
How about myWebBrowser.DocumentText=myTextBox.Text ?
Thread:  Show this thread (12 posts)   Thread info: Web Browser Control help. Size: 195 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Web Browser Control help. :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
Visual Basic / VB.NET
Re: BUBBLE SORT - 11 new posts
Started 1 day, 6 hours ago (2009-11-09 22:28:00)  by Christian Graus
PAguilar09 wrote: If ShuffleCards.cards2(i) > ShuffleCards.cards2(i + 1) Then If i counts up to the biggest possible value, when it gets there, is i+1 still inside the array, or not ?
Thread:  Show this thread (11 posts)   Thread info: BUBBLE SORT Size: 297 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: BUBBLE SORT :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
Visual Basic / VB.NET
Started 1 week, 2 days ago (2009-11-02 04:23:00)  by EliottA
The machine you are installing the application on, does it have .net installed?
Thread:  Show this thread (10 posts)   Thread info: Publishing a working program Size: 117 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Publishing a working program :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
Visual Basic / VB.NET
Started 1 week ago (2009-11-04 00:47:00)  by d@nish
Just create an instance of DataGridViewCheckBoxColumn class and add it to Columns collection of your DataGridView .
Thread:  Show this thread (10 posts)   Thread info: Create columntype as checkbox in datagridview by coding Size: 197 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Create columntype as checkbox in datagridview by coding :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
Visual Basic / VB.NET
Re: Label Array HELP - 10 new posts
Started 5 days, 4 hours ago (2009-11-06 00:58:00)  by Christian Graus
Your basic issue is that you have a dynamic array and a static number of labels. This means you have an upper limit to the number of items you can accept, which you do not enforce. Creating the labels dynamically might make more sense. Your for loop is ridiculous. You don't use i anywhere in the loop, it's just a waste of time. You COULD built an array of label controls, so that you can ...
Thread:  Show this thread (10 posts)   Thread info: Label Array HELP Size: 746 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Label Array HELP :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
Visual Basic / VB.NET
Started 1 week, 2 days ago (2009-11-02 04:37:00)  by d@nish
You can use TextChanged event of your textbox for checking if the text entered conatins no numeric characters. If there is specific format of the account numbers, look into masked textbox.
Thread:  Show this thread (9 posts)   Thread info: Accept numbers only in textbox Size: 226 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Accept numbers only in textbox :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."

This page was found by:   vb net codeproject  how do format days week only in vb6  visual basic.net +executing wrong code