20,278 Topics

Member Avatar for
Member Avatar for dre-logics

I Use visual Basic 8.0 and Mysql 5.0 I have two exactly the same Tables: Table1: RecordID , Integer = primary key auto_increment NOT NULL Articlenr , Integer Articlename, Char(20) Table2: RecordID , Integer = primary key auto_increment NOT NULL Articlenr , Integer Articlename, Char(20) Table1: has [COLOR="Green"]two records[/COLOR]: RecordID, …

Member Avatar for dre-logics
0
212
Member Avatar for tqmd1

Dear Experts SqlServer Table1 has data as follows Sno-------date 1------01/01/2010 8------01/01/2010 1------02/01/2010 5------02/01/2010 2------18/01/2010 9------18/01/2010 3------18/01/2010 1------03/01/2010 6------03/01/2010 My questions are: 1) I want to display the SMALLEST Date into textbox1 which is 01/01/2010 2) I want to display the BIGGEST Date into textbox2 which is 18/01/2010 3) I want …

Member Avatar for apegram
0
109
Member Avatar for TommyTran

[CODE] Dim InputText As String = Me.txtenter.Text Dim Letters = From c As Char In InputText.ToCharArray Select c & " = " & AscW(c) & " " Me.lblanswer.Text = String.Join("", Letters.ToArray) [/CODE] The above code is to convert each letter in a word or phrase (including the space) to its …

Member Avatar for apegram
0
89
Member Avatar for JohnDove

I'm a real newbie to ASP, I'm afraid. I have a windows app that I have written in Visual Basic 2008 using Visual Studio. Could I use ASP.NET to move the app's functionality to be available over the internet? Broadly speaking, the app collects lots of data from the user, …

Member Avatar for kvprajapati
0
80
Member Avatar for Psychoticus

Ok so im not quite sure this is possible but i've had a lot of help here so i thought i'd give it a go. I have a batch file that i wrote that installs some programs silently (Adobe reader, nero essentials etc) and i would like to be able …

0
58
Member Avatar for zulfahmi

Hi there, i am new in VB.Net and i have problem with my VB.Net project. I want to create an application where it capable to print a report like we normally do in word and save it in the pdf format. But the problem is i dont know how to …

Member Avatar for Psychoticus
0
93
Member Avatar for tqmd1
Member Avatar for kvprajapati
0
199
Member Avatar for sbanks_charles

Ok, I know that I am missing something due to my lack of knowledge with Binary Serialization and wish I could find better material on it. In the mean time, thanks to one of the moderators help, I have now been able to store an array in my database. Once …

0
61
Member Avatar for Psychoticus

Hey Guys, Ok so here is my problem, i have written a failrly long batch file that automates a lot of the jobs i have to do to new machines when built (im a PC Tech) and one of the things it does is tells you your processor arcitecture type …

Member Avatar for vbnetskywalker
0
123
Member Avatar for 21KristianN

Dear freinds, I have a big issue which I have been struggling with for days now. I have a richtextbox where users Can input text and print it. My problem is that i don't want to allow more than one page to be printed so i need to prevent the …

Member Avatar for 21KristianN
0
170
Member Avatar for Psychoticus

Hi guys, Just wondering if there is a way to detect the windows version, form say 95 to win7, in vb.net? pardon my ignorance but im not a big coder and norm only do python. Thanks in advance. Cheers, James

Member Avatar for apegram
0
1K
Member Avatar for TommyTran

I have an assignment that asks me to: 1. create a button 2. when that button is clicked, an inputBox will appear to ask the user how many words they will enter. 3. then display an inputBox for each word. For example, when the first inputBox appears, I enter "3" …

Member Avatar for apegram
0
94
Member Avatar for TommyTran

Hi everyboy! I ran into this assignment that asks me to "create an application that allows the user to enter a word or phrse, then the Label should display that word or phrase backwards in all lowercase. For example, I enter "I read" Then the label should display "daer I" …

Member Avatar for Ranx
0
91
Member Avatar for TommyTran

I just have an assignment that tells me to do the following things. Create a button. When that button is clicked, an InputBox will appear to let the user enter a word or phrase. Then, there are 2 radio buttons: Encode & Decode When Encode is checked "True", the label …

Member Avatar for vbnetskywalker
0
130
Member Avatar for tqmd1

Dear Experts Table gpass has data as gate-----date-----c----bno----acccode----tittle----weight-------qty 1----18/01/2010---a----2--------2----------abc-----10.00-------15 Then there are two textbox having values as txtgat.text=1 txtdat.text=18/01/2010 I these codes and it generates error message as [CODE]ArgumentOutOfRangeException was unhandled. Idex was out of range. Must be non-negative and less than the size of collection. Parameter name: Index [/CODE] …

Member Avatar for vbnetskywalker
0
139
Member Avatar for buzzykerbox
Member Avatar for apegram
0
108
Member Avatar for JohnPhilipps

Hello, I have a VB form with 2 comboboxes and a textbox in which a user can type into. I would like my mouse cursor to move from my 2nd combobox selection directly over to the textbox that I have on a VB form. 2nd comboboxe name: "CodeComboBox" Textbox name …

Member Avatar for JohnPhilipps
0
399
Member Avatar for Bagleys

Hi i am trying to delete a file(s) from a checked list box, when i click a button. This is the code i have: [code] Dim item As IO.FileInfo For Each item In CheckedListBox1.CheckedItems Try item.Delete() Catch : End Try Next item [/code] But i get the error: Unable to …

Member Avatar for Bagleys
0
191
Member Avatar for 21KristianN

Dear everybody, i hope that someone Can help me. I have a form where i want to print some textboxes on one page and then Force a print on a second page even though the first page isn't full. Like: printdocument1.print e.Graphics.DrawString(textbox1.Text, textbox1.Font, Brushes.Black, 9, 55) 'and then go to …

0
71
Member Avatar for iamai

i get 1 error Cannot refer to an instance member of a class from within a shared method or shared member initializer without an explicit instance of the class. here is my code [CODE] Public Class test Private _course As String Public Shared Function function1(ByVal data As String) As Boolean …

Member Avatar for iamai
0
84
Member Avatar for dr.e

Hi. Can some one please help me as i am trying to read from access database and that work with data in a program. I used to work with VB from previous version and now it seems to me there are differencies. If someone can paste a working simple code. …

Member Avatar for pauldani
0
191
Member Avatar for DesperateDan

How can I correct. I have textbox that is empty and where the cursor is flashing and I wish to move to other textboxes. What happens is that the error message is displayed first and when I press OK, only then can I move to the other textboxes. How do …

Member Avatar for DesperateDan
0
122
Member Avatar for shreeLokesh
Member Avatar for rp_prakash

hi this is my coding if i run this coding. first time i able to get data then i click second time i got error Procedure or function "procedure name" display has too many arguments specified" why this error plz explain for me [code] Dim mydst As New DataSet MyConnection.ConnectionString …

Member Avatar for kvprajapati
0
183
Member Avatar for TommyTran

I just ran into an assignment that says: let the user enter a word, then displays the "Unicode base 10 number" for "each" letter in that word. Example: enter "Aretha", the label should then display "A = 65 r = 114 e = 101 t = 116 h = 104 …

Member Avatar for vbnetskywalker
0
119
Member Avatar for rp_prakash

hi this is my coding when i run this coding for display the content in textboxes from the database by click event in datagrid. "Procedure or Function 'sp_developer_display' expects parameter '@developerid', which was not supplied." this error will display my sp in sql express is [code=text] ALTER PROCEDURE dbo.sp_developer_display ( …

Member Avatar for rp_prakash
0
162
Member Avatar for TommyTran

Hi everyone! I was doing programming and ran into this assignment. It says: create a "textbox1" to let the user enter a sentence. Then create a "textbox2" to let the user enter the text they want to remove. Then create a "textbox3" to let the user enter the word they …

Member Avatar for TommyTran
0
142
Member Avatar for vbnetskywalker

hi guys lately I've been experiencing LinqToSql + Sql Server Express 2005, and it was a great journey (muddy) anyway .... I'm at the point that I want to make a Backup/Restore for the database backup for SSE is as easy as a simple copy paste of the mdf file, …

0
71
Member Avatar for Webbsta

Hi, I'm just about finished making my browser but i need to find a way so that i can make it the default internet browser, when it loads, it sets itself as the default program for internet browsing but so far all iv managed is setting it as a program …

Member Avatar for Arsenal2wins
0
334
Member Avatar for tqmd1

Dear Sir, My datagridview has four column while press tab, i want to column2 not to get focus. Please help

0
54

The End.