|
More site info...
Visual Basic .NET | Forum profile
|
|
Forum profile page for Visual Basic .NET on http://www.vbforums.com.
This report page is the aggregated overview from a single forum: Visual Basic .NET, located on the Message Board at http://www.vbforums.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 .NET" on the Message Board at http://www.vbforums.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.
|
|
|
|
|
Posting activity on Visual Basic .NET:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
676
|
2,578
|
7,053
|
|
Post:
|
2,713
|
11,173
|
30,597
|
|
|
Visual Basic .NET Posting activity graph:
|
Top authors during last week:
user's latest post:
Drawing multiple images in...
Published (2009-11-08 04:56:00)
You seem to be assuming that what I have suggested is not going to achieve what you want without even trying it.
user's latest post:
Send Server info but not connected?
Published (2009-11-07 10:14:00)
Re: Send Server info but not connected? Yeah I think UDP is what you should be looking at - UDP is 'connectionless' and so you just basically send off your data to a specified address and that's it, there does not have to be any kind of response from the server. Here's a summary from google: Quote: UDP is similar to TCP in that it is a protocol for sending and receiving packets across a network, but with two major...
user's latest post:
Webbrowser that can use a proxy
Published (2009-11-07 19:24:00)
Re: Webbrowser that can use a proxy Didn't help because it didn't work, or it didn't help because you didn't know how to imlpement the code? __________________ Using VB.NET 2008/.NET 2.0/3.5 * Please mark you thread resolved using the Thread Tools above PLEASE INDICATE WHAT VERSION OF VB YOU USE!!!!!!!!!!! * If you found a post useful then please R a t e i t ! * DO NOT PM ME WITH LINKS TO YOUR THREADS FOR ANSWERS PLEASE!...
user's latest post:
Integer or UInteger
Published (2009-11-07 19:41:00)
Re: Integer or UInteger hey thanks for the reply, but since both UInt32 and Int32 range's suffice for dis case, which one of it should be used ? in other words which datatype does the computer work faster with (basic operations like X - + / and stuff like tostring, casting <how fast it gets casted to Long etc>)
user's latest post:
Users to listbox
Published (2009-11-08 02:24:00)
Re: Users to listbox You can add items to a ListBox like so: vb Code: ListBox1. Items . Add ( "User" ) As for adding their name when they enter the "room", that all depends on the rest of your code. I imagine it might be when you've made a successful connection in code. Also, you might want to stick to conventional naming when naming your controls. "LB1" for a ListBox is not a...
user's latest post:
Error: Value of type...
Published (2009-11-07 14:01:00)
Re: Error: Value of type 'Integer' cannot be converted to Read the documentation of the relevant Show method. Look closely at the types of the arguments it expects. Your values (two integers) don't match those types. You can't call a function and pass it the value you think it needs and always expect it to work. Functions/methods expect specific arguments, in a specific order. Sometimes, the programmer has made some extra...
user's latest post:
Error: Value of type...
Published (2009-11-06 17:16:00)
Re: Error: Value of type 'Integer' cannot be converted to Code: Form1.ContextMenu1.Show(Form1.MousePosition.X, MousePosition.Y) Well the y position needs a form1 in front of it as well. I ran a quick test and I don't know why this isn't working for you, here's what i did. 1.) Created a context menu in the designer, threw some menu items in there, and named it cmnu 2.) generated a code stub for the forms click event...
user's latest post:
Cliënt - Server connection
Published (2009-11-06 10:56:00)
Cliënt - Server connection Hi, Don't know if this is exactly the right board for this, but here it goes: I have to make an app that users install on there pc once and from then on certain data can be obtained from a database (doesn't matter what) without the user having to type some password or something. This is my idea: First time installation: 1. Cli?nt starts setup.exe 2. Cli?nt types in username and password 3. Webservice...
user's latest post:
InvalidCastException
Published (2009-11-07 22:21:00)
Re: InvalidCastException That subroutine doesn't actually DO anything. It creates an object locally, which is immediately abandoned as soon as the sub ends. What was removed? The exception certainly is not happening on an End Sub, and that particular error makes no sense in the other sub you just posted. __________________ My usual boring signature: Nothing
user's latest post:
Button Click Problem
Published (2009-11-07 20:09:00)
Button Click Problem VB does my head in sometimes , im using the on button1 click to peform a click on button 2 Code: Button2.PerformClick() It was working yesterday but now its not , Like *** ?? __________________ dunlop03 ( Noob - Developer lol )
|
|
|
|
Latest active threads on Visual Basic .NET::
Started 1 month ago (2009-10-08 22:07:00)
by jmcilhinney
Re: Drawing multiple images in picturebox?
You're only ever drawing one Image. Every time the Paint event is raised, everything that was previously drawn is erased and then the new drawing done. If you want more and more Images to be drawn then you have to keep them information about them all and then draw them all every time.
...
Started 2 days, 12 hours ago (2009-11-08 04:26:00)
by Dark Anima
Re: Sendmessege to send key/string?
Code:
Sendkeys.Send("Hello Hell")
As simple as that.
Started 2 days, 12 hours ago (2009-11-08 04:22:00)
by Dark Anima
Re: Playing Two Sounds Simultanously
Maybe create 2 instances of the player?
Started 2 days, 22 hours ago (2009-11-07 18:01:00)
by formlesstree4
Re: Problem With Winsock!!! Please Help
You're in the . NET framework...I suggest using Sockets rather than the old legacy Winsock, which was used for VB6 programs.
__________________
Quote:
Originally Posted by jugglabrotha...
Started 2 days, 13 hours ago (2009-11-08 03:38:00)
by Dark Anima
Re: Pixel color not at mouse position?
Compare
Code:
GetPixel(Cursor.Position.X, Cursor.Position.Y), GetPixel(WhateverX,WhateverY)?
What's the problem?
Started 2 days, 14 hours ago (2009-11-08 02:20:00)
by weirddemon
Re: Get file contents to make program do certain stuff? (2 Questions)
There has to be a better way to do what you're asking than just reading info from a text file. But, if not, you can probably use a StreamReader and loop through the text to look for what you need.
You can read up on the documentation here . I haven't done ...
Started 2 days, 14 hours ago (2009-11-08 02:24:00)
by weirddemon
Re: Users to listbox
You can add items to a ListBox like so:
vb Code:
ListBox1. Items . Add ( "User" )
As for adding their name when they enter the "room", that all depends on the rest of your code. I imagine it might be when you've made a successful connection in code.
Also, you might want to stick to...
|
|
Hot threads for last week on Visual Basic .NET::
Started 1 week, 1 day ago (2009-11-02 11:39:00)
by _powerade_
Re: Taskmanager
Set the form property ShowInTaskbar to False.
__________________
_powerade_
Hi, I'm from chilly, little Norway ( and no, Norway is NOT the capital of neither Sweden nor Denmark!!! )
Programming is my hobby, my occupation is working at a factory making ...
Started 5 days, 2 hours ago (2009-11-05 13:44:00)
by chris128
Re: SmtpClient and Outlook junk mail
Yep, those extra headers do affect spam filtering. This is supposed to get a bit better in .NET 4.0 (see http://blogs.msdn.com/ncl/archive/20...-net-mail.a spx )
__________________
Check out my blog: cjwdev.wordpress.com
Started 4 days, 11 hours ago (2009-11-06 05:21:00)
by gonzalioz
Re: Cant figure out how to use keys, any ideas?
You didn't add handlers to your Form_KeyDown and Form_KeyUp method.
What I would do is something like this:
vb Code:
Private Sub MainForm_KeyDown ( ByVal sender As Object, ByVal e As System. Windows . Forms . KeyEventArgs ) Handles Me . KeyDown...
Started 1 week, 1 day ago (2009-11-02 05:58:00)
by Dark Anima
Re: I'm a Student and get stuck :'(
Maybe use a class to store the list, that way you'll have to read the textfile only once. Try something like this:
Create a class named OurData.vb
Code:
Public Class OurData
Public ID As Int32, Name As String, Price As Int32
Sub New(ID As Int32, Name As String, ...
Started 5 days, 23 hours ago (2009-11-04 17:19:00)
by Shaggy Hiker
Re: base class of numbers
Object is the only base class for numbers.
Have you considered generic functions? It may not be an ideal solution, because you are actually working with two unknowns. I think that generics will only work with a single unknown ( a question mark in your case), and it sounds like you could have multiple ...
Started 6 days, 22 hours ago (2009-11-03 18:31:00)
by minitech
Re: Variable Inaccessible
You actually need to assign values to num1 and num2. I have no idea why you have IsDBNull() there, either. If you want to assign to those values and keep them stored across methods, you need to make a class-level variable.
__________________
MINITECH, VB....
Started 1 week, 1 day ago (2009-11-02 06:39:00)
by chris128
Re: extending classes: adding shared procedures?
Why would you define an extension method and want it to be Shared? Take the Shared word out and I imagine it will still work how you want it to..
__________________
Started 5 days, 6 hours ago (2009-11-05 10:34:00)
by BackWoodsCoder
Re: List Box problem
what do you mean by the list goes out of the sequence? Is the listbox a bound control?
__________________
Where I'm from we only have one bit of advice for new comers: "If you hear banjos, turn and run".
VS 2008 .NetFW 2.0
Started 5 days, 12 hours ago (2009-11-05 04:04:00)
by Pradeep1210
Re: postData and or HTTP POST??? I can't figure it out
Actually there are two ways to send data to a page - GET and POST. Get is plain string and is appended to the url. Post is binary data (bytes) and doesn't appear with the url.
So what you are doing is actually GET.
...
Started 1 week ago (2009-11-03 12:37:00)
by kleinma
Re: Help Creating Script for Secure Website Login
Is there a reason you can't just use the webbrowser control on a form to automate the login there? Do you specifically need to try to automate an external instance of IE?
__________________
Using VB.NET 2008/.NET 2.0/3.5 * ...
|
|