20,278 Topics

Member Avatar for
Member Avatar for mags11

I am new to VB. I use Visual Studio 2010. I got most of my rental program to work, but I am having trouble with the easy part. The First Name and Last Name are supposed to combine to the FullName. I know I have to use the assigning textbox …

Member Avatar for codeorder
0
156
Member Avatar for RedexProGamma

Alright, so in yesterday's thread, I asked for the codes to copy the contents of a directory to a separate directory. The code: My.Computer.FileSystem.CopyDirectory( , , ) worked fine. However, I have decided that I wish to add a progress bar into the mix so that the user can see …

Member Avatar for codeorder
0
2K
Member Avatar for renzlo

Hi Guys, I am almost done with my program, until this problem arises and I can't solve. I have two forms. First form has 1 listbox and 2 buttons. Second form has 1 datagridview and 1 button. The first form opens the csv and list the location+filename of the CSV …

Member Avatar for renzlo
0
146
Member Avatar for Howdydoody

I'm writing an alphabet cipher that ciphers at random. It looks like it should work when I'm debugging it but when I look at the cipher key it comes out with duplicate letters like some of them weren't switched during the for loop. Any help is much appreciated. WasSwapped is …

Member Avatar for Reverend Jim
0
102
Member Avatar for moparman426

alright so i have a problem iam working on i have to enter a 7 digit phonenumber then generate a word so example 639-2277 word mean the word newcars or any number would come up as a word well i cant get words to generate only random letters annd right …

Member Avatar for Reverend Jim
0
172
Member Avatar for lbgladson

I need to create an array of decimals by getting input from the user. I know how to create one of random numbers but do not know how to get the input from a user through a text box to a list box.

Member Avatar for Reverend Jim
0
112
Member Avatar for daniwaber

Can I stop updating the user display of a control (rich text box) temporarily? I want it to process what I tell but not change how it looks for just a small piece of code. Please help :)

Member Avatar for Reverend Jim
0
167
Member Avatar for pfm200586

Hello everyone, I have to create pig latin game which I did and it is working. The problem is I coded it so it can translate one word. I need to know how can I make it translate a sentence that I don't know how many words in it. Here …

Member Avatar for codeorder
0
142
Member Avatar for kpeckly

below is my code, i want to get a record base on a specif invoice number,please help me out cos this thing has giving me sleepless nite.thanks in advance. Imports System.Data.Sql Imports System.Data.SqlClient Public Class Invoice Private Sub Invoice_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Call connectDatabase() …

Member Avatar for lolafuertes
0
198
Member Avatar for BugMaster

Hi, I'm stucked with a problem, hope somebody can help me. The problem is that i have a string with webpage source and i need to retrieve all the text instances between <pre> and </pre> tags, i already know how to retrive the first ocurrence using: [CODE] dim start as …

Member Avatar for lolafuertes
0
126
Member Avatar for daniwaber

I want to make my own file type with my own extension via vb.net. I mean that when we go into "My Computer" and select Folder options from the menu, there is a file types tab and I can add it there. Can I add it through vb.net 2005? Please …

Member Avatar for daniwaber
0
119
Member Avatar for Noob_in_progs

Private Sub frmRegistration_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load cn.Open() cmd.Connection = cn cmd.CommandText = "Select * from Registration" adp = New OleDb.OleDbDataAdapter(cmd) adp.Fill(ds, "mytable") 'Binding Statements Follow bs = New BindingSource(ds, "mytable") 'Bind the name field to first textbox, type of data as text Me.txtCustID.DataBindings.Add("text", bs, …

Member Avatar for Noob_in_progs
0
411
Member Avatar for renzlo

Hi Guys, How's your day? I would like to ask, since I'm a beginner in vb .net, I can't figure this out. Here's the scenario: I have a folder with lots of folders inside and inside those folders are .tif files. I want to create a program that will rename …

Member Avatar for codeorder
0
525
Member Avatar for marcogr8

I am stuck doing this assignment given for monday ...i am at the do while coding (already did the interface ...) anw here it is : Candidates for employment by a security organization have to undergo a medical test in which sight, hearing and mobility are tested. In each of …

Member Avatar for Reverend Jim
0
261
Member Avatar for nomorelogic

hi there, im a beginner really and have just tried to finish a new computer based booking system for my work, im using sql and a database to store the customers and then store bookings too, but im having problems with the customer form, when i run it it kind …

Member Avatar for nomorelogic
0
133
Member Avatar for QuickBooksDev

I need to rename/move a file to a different folder after downloading. When I log into the customer's FTP site via the url, user, password it put in into a particular folder. I can download these files using the URI but I cannot Rename (Move) into a different folder (i.e. …

Member Avatar for Reverend Jim
0
230
Member Avatar for lbgladson

I am developing a form that calculates a Business Travel Expense for a business trip. Everything is fine and dandy but I have to display the information in a listbox using zone ouput. There is nothing in my book about zone output...the teacher provided us with this Dim fmtStr As …

Member Avatar for Reverend Jim
0
123
Member Avatar for System Jay

I cannot believe how loooooong i have been searching the internet for this. However i have a form that i have created in Visual studio 2010. I have 3 text boxes for FIRST NAME, LAST NAME and NOTES. I have 1 button to submit data. When i click the button …

Member Avatar for Reverend Jim
0
181
Member Avatar for vasim jada

Dear Friends, I am developing an application for multi user using vb.net with back end as ms-access. For the table name as employee_master, there is a column, name as student_profile having datatype as [B]Yes/No [/B]. If value of student_profile is "yes" then label1 will be shown and If value of …

Member Avatar for Reverend Jim
0
849
Member Avatar for tstory28

I am still a newbie at programming in VB.NET but I am wondering if it is possible to write a program that allows for remote support, like Teamviewer, LogMeIn, etc., using VB.Net and what is the easiest way to go about it? Only reason I ask is because I do …

Member Avatar for Reverend Jim
0
598
Member Avatar for RenanLazarotto

Hey guys! I've been working on two projects, one needs to have multiple forms, but when I open one form, it needs to close the sender. But, when I try it, the program exits! I don't want it, I just want to close the form, not the app. I tried …

Member Avatar for codeorder
0
2K
Member Avatar for flywheeljack

Hi there, Im new to vb and i am using visual basic express 2010. i have put together a database and can do quite a lot with the app i have created. i am not very familiar with detailed programming so i have created my update query thru the dataset …

Member Avatar for GeekByChoiCe
0
144
Member Avatar for pfm200586

hello everyone, I am working on a little program (game) is called Pig latin. I created a sub procedure and I passed the word to be converted by value and the piglatin word byref. Now when I call the procedure in the button click event I get the wavy green …

Member Avatar for GeekByChoiCe
0
114
Member Avatar for pfm200586

hello everyone, I am trying to check each letter of a word if that word doesn't contain (AEIOUY) then I have to append (-way) to the end of the word. Now I have this if statement and it doesn't work: If OriginalWord.ToUpper Like "*[!AEIOUY]*" Then Label1.Text = OriginalWord & "-way" …

Member Avatar for Unhnd_Exception
0
107
Member Avatar for markdean.expres

I actually want to ask two things, first, how do I set Textbox1 to get focus so that the user will not have to click the textbox if he wants to write something, the .focus() method does not work also, how do I highlight texts inside a textbox programmatically. I …

Member Avatar for markdean.expres
0
253
Member Avatar for spelltox

Hello to all ! Sorry in advance for the long post. I'm trying to get the value of a specific <div> from an html. This div has a class attribute of "itemPrice6", but problem is that this class appears few more times for other <div>s in which i'm not interested …

0
103
Member Avatar for mrdotcom

I have a datagridview and button on form , in datagridview's columns has some numeric values let say like ClientNumber and Sale 253 = +10 259 = +20 254 = -100 278 = -50 259 = +30 254 = +40 now what i want when there is repeatation of same …

0
45
Member Avatar for bluehangook629

I need some help setting the maximum size on a picture box. I thought the syntax for setting size was picturebox.MaximumSize = (Width,Height) but doesnt seem to work. Did syntax change from VB6? Thanks in advance

Member Avatar for bluehangook629
0
128
Member Avatar for markdean.expres

Guys can anyone tell me how to change fontsize of my listbox programmatically? This code does not work listbox1.font.size = 10 or listbox1.font.size = new size 10 What is the right code?

Member Avatar for Reverend Jim
0
648
Member Avatar for weeraa

how to get 10 th record from record set using SQL server? there are a lot of code in the internet that can get first 10 results using "TOP" keyword in sql. but i want to get 10th row valus. I'm using VB 2008. please help me.... Regards Pra$ad.

Member Avatar for weeraa
0
155

The End.