VS 2010 Multi-Searching an Access Database.
Hi guys, I've recently started learning VB 2010 and I am currently working on a project that is a Book shop database. The database is an Access database I need to be able to search the database by...
View ArticleVS 2010 For Each Statement
Here is my code: Code: Dim Indexes As ListView.SelectedIndexCollection = ListViewListOfScheduleItems.SelectedIndices If MessageBox.Show("Are you sure you wish to remove the " &...
View Articlego to previous form
hello, i'm accessing vb from microsoft access 2007 my main question i've got to ask is; what's the command to open the previous form i was in (or previous page, or whatever - obviously i'd have to code...
View ArticleVS 2010 No error showing up?
Code: RichTextBox2.Text = RichTextBox1.Text Me.Controls.Add(RichTextBox2) RichTextBox2.Dock = DockStyle.Fill RichTextBox1.SendToBack() RichTextBox2.BringToFront()...
View Articletemperature converter
i try to make some temperature converter program, here is the source code: Code: Public Class temp_conv Private Sub strp_menu_about_click(ByVal sender As System.Object, ByVal e As System.EventArgs)...
View Article[RESOLVED] iList troubles
I have a class (GuestList) and I want to create a list of guests using iList. I'm looping through results in my SQL server search and want to add each guest to my list but I get the below error. What...
View ArticleFramework versions question
I assume that backwards compatibility is built in? i.e. a .DLL compiled for v3.5 should be ok to use with a v4 project? I ask because I'm about to play with some Open Source widget and their downloads...
View ArticleSubstring not Getting the SubString?
Here's my subroutine that has the problem: Code: Private Sub GetData() Try If InvokeRequired Then Me.Invoke(New MethodInvoker(AddressOf GetData)) Else...
View ArticleEditing a database
I am currently able to display data from a Microsoft Access Database file in a data grid view on a form in vb, i was wondering if there was any way to make it possible to click and edit the data grid...
View ArticleRandom Numbers Game
Hello Everyone! :) I was hoping if you can please take a look at my code below and let me know what I need to do in order for the application to work correctly. Here's my assignment: Code an...
View ArticleMultiThreading Problem
Hi to all I have a problem that's driving me crazy and i would be very appreciated if someone could shed some light. I must add that im very inexperienced in MultiThreading. I have a Sub with arguments...
View ArticleVS 2010 How to create encrypted MIME message using basic framrwork classes?
Hi! I ahve been tasked with implementing a library that can create and receive encrypted messages in the S/MIME standard. A message can look like this: Code: MIME-Version: 1.0 Content-Type:...
View ArticleWhere to start?
Hi all. I am looking to learn VB, the end goal is so I can create a web based program. I have visual studio 2012, but when I open it, it asks if I want to start: Visual basic, ASP.NET forms, ASP.NET...
View ArticleDetermining mute status
Is there a short piece of code I can use to determine whether or not the master volume of the computer is muted? (Just to tell if it's muted, not to change the volume at all)
View ArticleJava Compiler
I am Developing an application for my project in which i'm providing the users to enter their java code in a richtextbox & when user clicks on the run button I am showing the output of the...
View ArticleVS 2008 DataGridView update problem
Good Evening All I am struggling with a datagrid view that i currently have got. The code i currently have for the form is attached below. The combobox filter is populating fine & the datagridview...
View ArticleNeed Help With Hot Keys (NOT USING TIMER)
Ok so i have started a project but i need hot keys i have used the timer method but it does not do what i want it to do. Like the .net forms have a key pressed i want it to be like that as a timer is...
View ArticleVS 2010 Is there a better way to extract HTML data using DOM?
HTML Code: <table> <tr><td>T1R1C1</td><td>T1R1C2</td></tr> <tr><td>T1R2C1</td><td>T1R2C2</td></tr> </table>...
View ArticleVS 2010 Datagridview and ContextMenuStrip
Hi! On my Form there is a DataGridView that has a ContextMenuStrip bound to. ContextMenuStrip has one button "Delete". When I Right click on DataGridView then it displays the ContextMenuStrip,...
View ArticleVS 2010 convert string to integer
i have this function to read from text file..the problem is some times it read numbers and retun it as string although i want to return it as integer..any clue how to get this done Code: Public...
View Article