Visual Basic .NET (VB.NET) is an object-oriented computer programming language that can be viewed as an evolution of Microsoft's Visual Basic 6 (VB6) but implemented on the Microsoft .NET Framework.

learn more… | top users | synonyms (2)

-1
votes
1answer
31 views

How to display deck of cards and compare for doubles

So.. right now I am having a pretty big problem. I have my pictures of a card deck but they are not displaying at all when the deal button is clicked. They were being displayed initially, but I ...
3
votes
7answers
11k views

Overriding ReadOnly Property in a subclass to make it Read/Write (VB.NET or C#)

This doesn't seem possible in VB.NET with properties since the property statement itself must describe whether it is ReadOnly or not. In my example below, it doesn't let me make the ReadWriteChild ...
2
votes
1answer
30 views

Clicking the button it select all my page (working on browser not on mobile)

First of all, I am 2 days old using jquery mobile, the work I done is mostly by trial and error and reading. I have added aspx button and enhance it with jquery, it looks fine except 2 behavior 1- ...
0
votes
2answers
36 views

Different ways of declaring arrays in VB.NET

In VB.NET, is there any difference between the following ways of declaring arrays? - Dim cargoWeights(10) as Double - cargoWeights = New Double(10) {} ' These are two independent statements. They ...
0
votes
0answers
15 views

Error occurred while connecting/creating automation server for ClassLibrary1.classname

I built a DLL with Visual Basic 2010 Express. It's built on the VB 4.0 framework. After building, I ran on the admin command prompt: C:\windows\...v4.0.30319\RegAsm ...
-4
votes
1answer
33 views

Visual basic - Questlon

How would you have a button generate a number from 0-255 (randomly) then force it to display into a textbox in your form field? Also make it so it then counts the times you have clicked the button and ...
0
votes
0answers
7 views

oledbexception 'unspecified error' when filling dataset

So, i get the OleDBException "unspecified error" whenever the function below hits the dataAdapter.Fill(dataset) line. I have tried adding dbcommand.connection.close() and ...
0
votes
2answers
4k views

Sample code for POST + cookie?

I've been googling for some VB.Net code to authenticate to a web server with the POST method, receive a session ID in a cookie, and then send this cookie along with all GET queries... but all I found ...
0
votes
2answers
23 views

How can I make a variable to accumulate clicks made over a datagridview?

Here you have my code, but it always reports 1 click: Private Sub ClickMouse(sender As Object, e As DataGridViewCellMouseEventArgs) Handles datagridview.CellMouseClick MsgBox(e.Clicks & ...
0
votes
0answers
19 views

getting a color from a database entry and applying it to a label background

I am having trouble getting the color the user picks and saving it into a database so that when they reload the program it will automatically apply to the labels background. I have this to let the ...
1
vote
2answers
29 views

Refresh DataGridView after executing SQL Command?

Here is my code: cn.Open() cmd.CommandText = "insert into Student values('" ...... cmd.ExecuteNonQuery() cn.Close() After closing the connection I want my DataGridView to ...
0
votes
1answer
29 views

borderless button in visual basic.net?

HEY there i was asking about how to make a borderless button in vb.net i can always set the style to flat and make the background color as transparent but always i always get the button focused and ...
0
votes
1answer
66 views

Card matching game.. how to compare cards? [closed]

So my design is to have 26 picture boxes (code only shows till 10.. you get the idea) to show the user their "hand". Now how do I check those image boxes for doubles, and then remove those doubles to ...
1
vote
0answers
137 views

How to pass current model from layout to controller?

I have a menu bar that sits in the layout, that every page has access to I'm trying to save whatever the page model's info is (could be edit info for a customer, or a car, or dog) when the user ...
0
votes
2answers
46 views

ASP.NET CheckBox inside a hidden DIV always returns false

I have some set of form elements within a hidden div as follows: <div id="jDivUpdateFolder" style="display:none;"> <asp:TextBox ID="txtEditFolderName" ...
0
votes
1answer
16 views

How to parse nested JSON string using .NET

I'm trying to parse a nested JSON string returned from the GCM (Google Could Messaging) server using VB.NET. The JSON string looks like this: { "multicast_id": 216, "success": 3, "failure": 3, ...
0
votes
1answer
23 views

How to display the members of a second Class in a Datagridview

I have an ArrayList of objects (for example Employees). Employee Class Properties: name (String), email (String), telephone (String), workgroup (Workgroup) The Employee class has a property ...
0
votes
3answers
824 views

mvc.net multiple forms childaction

I have 2 forms on a page, they are included in the masterpage like so: Html.RenderAction("Form1", "Controller") and Html.RenderAction("Form2", "Controller") The Controller has the following: ...
0
votes
1answer
22 views

Timer to count down in VB.Net 2010?

I'm trying to use a timer to count down from a specified time I choose with the time being separated into minutes and seconds using the format MM:SS and then stop when the time reaches 00:00. So far ...
0
votes
1answer
11 views

vb.net save in word2010

Platform: Windows and Microsoft Visual Basic 2010 Express The problem: I have a Word template made in Word 2007. When the application is run in a machine with Word 2010, the SaveAs-command doesn't ...
2
votes
3answers
28 views

Saving to text, receiving error message

I'm trying to save the contents of a listview box with following code Dim W As IO.StreamWriter Private Sub Button6_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ...
0
votes
0answers
17 views

Changing Font Size in Custom Created Listbox Control Vb.net

I am try to Inherits a Listbox control to change StringFormatFlags direction. All is OK, but when I change the font size of Listbox it dose not draw item properly. How to fix this issue. Public ...
0
votes
1answer
35 views

How to execute code in visual basic weekly

I am wanting to know if for example I wanted to ask the user to update the software every week then for example if today is friday then next friday a msgbox would pop up saying the software is out of ...
0
votes
0answers
9 views

insert anchor tag inside label

Trying to insert an anchor tag within a label using the following code. It seems to work except that the label text attribute gets hammered and displays nothing. How do I get the label text to ...
0
votes
0answers
7 views

Use Google Custom Search API in VB.NET

I'm a beginner in this field. I want to know how I can use new Google Custom Search API (https://developers.google.com/custom-search/v1/overview) in a VB.NET project, if it is possible. I've found a ...
1
vote
4answers
37 views

.NET Number format - Separator on 2 digits

Number format not working as expected: Console.WriteLine(String.Format("{0:##,##,##,###.####}", 12345678)) 'Outputs 12,345,678 'Expected output 1,23,54,678 based on the format provided How to get ...
0
votes
4answers
13k views

VB.NET How to add a child node to a specific node in treeview

How to add a child node to a specific node in treeview? Say I have "Item1" in treeview already, how do I add "SubItem1" to "Item1" as it's child node? I know its probably really simple, but i tried ...
0
votes
1answer
9 views

Remembering Sessions - phpBB

Im currently coding a basic login using HttpWebRequests in Visual Basic 2010. After following some tutorials, I somehow racked this code up: http://pastebin.com/azZuyvDM Pretty much I have phpBB ...
0
votes
0answers
11 views

record cellmouseclicks in a datagridview - use indexes of clicks made in datagridview as indexes in a matrix or array

I hope you could help me. Many thanks in advance. My question is related with catching the number of mouseclicks in a datagridview. I am using Visual Basic in Visual Studio 2012. I am building a ...
0
votes
1answer
21 views

Delay in reading from specific database

I have an application written in VB.NET which reads data from an SQL Server 2008 R2. At the time of login, user select one of the many database files (available in a dropdown list) and then keys in ...
0
votes
1answer
25 views

Multithread Windows Service

How and where do I multithread my code. I currently have a Windows service that collects events from the Windows System log. The service forwards collected events to a remote service. My code is in ...
0
votes
3answers
79 views
+50

VB.net Mouse click single cell of gridview, change backcolor and output cell position (col and row) to textbox

I have a gridview in a webform and I would like to know how I can select a single cell anywhere in that gridview using a mouse click. The selected cell's background colour then changes to a specific ...
0
votes
5answers
18 views

(VB) toggle labels on/off

I have a button that when clicked labels will show, but what code do I used to get it so when the button is clicked again they are hidden: Private Sub Form3_Load(ByVal sender As System.Object, ByVal ...
0
votes
3answers
30 views

VB Change application name with button

I want my button1 to change the name of my form1 from "My Application name" to "My Application name2" by the click of a button. What I've tried: form1.text = (textbox1.text) But no luck. Any ...
0
votes
1answer
24 views

(VB) Timer carries on other forms

Basically, when I continue onto the next form my timer is still running, how can I stop this? I have already used "Timer1.Enabled = False" Private Sub Timer1_Tick(sender As Object, e As EventArgs) ...
0
votes
1answer
25 views

How to get text inside div tag in VB.NET

I recently made a program to notify me if the game server is offline or online but I think there's a much simple version of my program. Btw. The website associated in this project is ...
0
votes
2answers
190 views

VB.Net playing mp3 at the same time

I've been wondering about this, I have tried multiple suggestions I have got from different sites. I have my code here but it's not working. Private Declare Function mciSendString Lib "winmm.dll" ...
0
votes
1answer
21 views

Changing the icon of a consol application vb.net

How to change the icon of a console application of vb.net? I changed the icon on project properties->Application->icon. But the old default icon remains..Any idea on how to do that please?
1
vote
2answers
90 views

Modifying a record before saving in database using VB.net

As usual here is the code in my save button: Private Sub Tbl_Student_InformationBindingNavigatorSaveItem_Click ... Me.Validate() Me.Tbl_Student_InformationBindingSource.EndEdit() ...
0
votes
1answer
41 views

vb.net, Restore mysql database not working in windows xp

I have a code in restoring mysql database using vb.net. It perfectly works in windows 7 but when I try it in windows xp it's not working. Hope you can all help me with this. here's my code.. ...
1
vote
3answers
3k views

SendKeys.Send(“{HOME}”), vb.net

I am using SendKeys.Send("{HOME}") in a MaskedTextBox to bring the cursor to the beginning of the textbox when the text is empty. When I try to close the project the application freezes if it ...
0
votes
0answers
11 views

vb.net error with setting cookie from webbrowser control to httpwebrequest

im loading my web application in vb.net web browser control. every valid users are authenticated using username and password in web application . my problem is , to upload a file im using ...
0
votes
1answer
17 views

List View Box, Double clicking to a text box

I have a form with a list view box that contains two columns of data, and the same form I have two columns of text boxes. I would like to make it so that if I double click a row of listview it will ...
2
votes
2answers
4k views

Get the BindingSource position based on DataTable row

I have a datatable that contains the rows of a database table. This table has a primary key formed by 2 columns. The components are assigned this way: datatable -> bindingsource -> datagridview. What ...
32
votes
14answers
4k views

Partial Classes - are they bad design?

I'm wondering why the 'partial class' concept even exists in C#/VB.NET. I'm working on an application and we are reading a (actually very good) book relavant to the development platform we are ...
0
votes
0answers
24 views

Print multiple images in vb.net

In VB.NET, I need to print multiple Images of bar codes by arranging them in tabular format. For now what I am doing is, Creating the bar codes and adding them in new picture box. These Picture boxes ...
0
votes
1answer
130 views

How to match the answer in vb.net and asp.net?

I random the 3 question to display on asp.net page. I want to match the security question with correct answer in database. But after I enter the correct answer in textbox and click the "Next" button, ...
0
votes
1answer
18 views

Append Datatable in VB

I am developing windows app in vb where i want to append values in datatable withen a while loop as given below. If hscode <> "" Then da1 = New OleDbDataAdapter("select * from [" ...
0
votes
2answers
47 views

VB click javascript button/img

Hi i am trying to click a button on a website with VB.NET The Command i use in .AHK is Pwb.document.getElementsByTagName("IMG")[7].click The button/Img HTML is below. <img width="34" ...
1
vote
1answer
19 views

Get specific row col values from mysql using vb 2012

I have one button retrieve I just want to get the database table "account" value by its row and col and display it in a textbox. I keep on getting errors on the datafill line Imports ...

1 2 3 4 5 938