19,729 Topics

Member Avatar for
Member Avatar for pride_1

need help with this vb. Design and implement a program that computes final averages for a set of grades. The program reads the grades from a user. The format of a grade line is: N grades1, grades2, …………., grades5 Where N is total number of students and grades is the …

Member Avatar for Reverend Jim
0
294
Member Avatar for Karuna_2

Dear Sir I have small vb.net project. It include database. And after make EXE file then I want to run flash drive .can we do it. Or how can convert my program portable apps type Please help me Thank you wansa

Member Avatar for Karuna_2
0
190
Member Avatar for Karuna_2

dear sir my project availble two text box and one button i want two textbox include data save to one .txt file it is posible . thank you wansa Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Using writer As System.IO.StreamWriter = New System.IO.StreamWriter(Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory) & "\word\correct.Txt", …

Member Avatar for Karuna_2
0
229
Member Avatar for Rabastan

I have a form which has in which data is entered in both Textboxes and Checkboxes, when the "Copy" button is clicked all the fields are copied to be pasted elsewhere. I am trying to convert the Checkboxes to Yes or No When Pasted. Private Sub btnCopyNotes_Click(sender As Object, e …

Member Avatar for Reverend Jim
0
260
Member Avatar for renyges

hi guys i have a big problem how to insert image to database i had try this out but it returns error(syntex error) [code] Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click OpenFileDialog1.Title = "GET IMAGE" OpenFileDialog1.ShowDialog() End Sub Private Sub OpenFileDialog1_FileOk(ByVal sender As System.Object, ByVal …

Member Avatar for Bobby_5
0
3K
Member Avatar for Clocker

Hi guys i am trying to save information in to my access database , i created new instance of an ADODB.Connection object and ADODB.Recordset object but visual studio 2005 is given me an error message that ADODB.connection and ADODB.Recordset are defined, please can any one help this is my code …

Member Avatar for chilaka2
0
5K
Member Avatar for sunilkumarmano

hi everyone, Im doing a project of creating a office application.I want to to add all the options that in my project that are available in the microsoft word.I have a doubt in adding table in the work area.Can any one tel the solution to my problem.

Member Avatar for Rajeev_7
0
1K
Member Avatar for batoolhussain

hi everyone please I need your help to know how can I get the names of textt files example if I have this text file (hello.txt) my program should get only the (hello)

Member Avatar for ddanbe
0
95
Member Avatar for gozo12

hello what is the code of if scroll bar of listbox move i somethins like this ? [CODE] if listbox1.scrollmove then textbox.text="" end if [/CODE]

Member Avatar for Xavier_5
0
3K
Member Avatar for batoolhussain

hi everyone I need your help in extracting arabic text from image using vb.net. I only found program for extracting english language text but not found for arabic. I used the following code that support only english language. Imports MODI Imports System.IO Public Class Form1 Private Sub Button1_Click(ByVal sender As …

Member Avatar for Avedgent
0
2K
Member Avatar for Tedsintheway

Hi chaps I am trying to create a coundown timer in a form, it must count from 60 seconds to 0 and must be started using a button on the form. I also would like to add a reset button if posible. I have looked in archives and lots of …

Member Avatar for David_98
0
1K
Member Avatar for Karuna_2

Dear sir My progress bar is not full fill (end area)and precentage is not center how can do it.please follow my attachment thank you wansa Public Class Form1 Declare Auto Function SendMessage Lib "user32.dll" (ByVal hwnd As IntPtr, ByVal msg As Integer, ByVal wparam As Integer, ByVal iparam As Integer) …

Member Avatar for Xavier_5
0
285
Member Avatar for itprosam

Hi, I have to create a modular variable (string with no value) set as LN (txtLastName.Text) which takes its value once the user enters his Last Name and hits the submit button. Also it shows in other sub procedures. This is what the program is supposed to do: Enter all …

Member Avatar for Minimalist
0
445
Member Avatar for Daniel_51

How to zoom to the cursor position after the graphics component has been transformed? I want to be able to zoom to any of the test rectangles. The panning is done with the Middle mouse button. MouseWheel Event handles the zooming. Ignore the DrawGrid method, it's just to get some …

Member Avatar for Xavier_5
0
720
Member Avatar for Learner010

we use `Print` to print text to form in vb6 and dont know how to print text to window form in vb.net please explain how to achieve it . . .

Member Avatar for munawer_1
0
3K
Member Avatar for harsh01ajmera
Member Avatar for Mike Bishop

I have two forms the first FrmRecipe.vb form has all my calulations and functions in it the second FrmReports has a crystal report viewer with loads of reports. I am trying to call the report as a thread so that the main from is still working however when the treads …

Member Avatar for Xavier_5
0
3K
Member Avatar for kishpopboy

I'm Currently working with a payroll system with daily time record.. I'm having troubles with their time records, what i did is this, i created 6 textboxes on the form the 1st textbox is for the AM IN 2nd is for the Lunch OUT the 3rd Is for the total …

Member Avatar for CERTIVE
0
5K
Member Avatar for Jim Clinton

** Here's my codes: Public Class frmLogin Dim sqlcode As String Dim connstring As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\Jim Clinton Amarga\Desktop\Class Records\Class Records\bin\Debug\dbClassRecords.accdb" Private Sub btnLogin_Click(sender As Object, e As EventArgs) Handles btnLogin.Click If cmbLoginType.Text = "Administrator" Then Dim sqlLoginCode As String = "select * from tblusers where User_username = '" …

Member Avatar for Santanu.Das
0
467
Member Avatar for Minimalist

Good day guys, here is another question I have, working with vb.net community 15. I have a large datagridview to display all lessons for my school timetabling program. There could be up to 14 timeslots = lessons per day. Now I like a timetabler to be able swap days like …

Member Avatar for ddanbe
0
833
Member Avatar for Minimalist

Good day community, I have completed vb.net program (a school timetabling program) and I am in the process to create a website. At the moment word -press on wamp server and parallel Microsoft Expression Web 4. To sell the program off the website, either clickonce or downloaded, I request the …

Member Avatar for Minimalist
0
307
Member Avatar for Karuna_2

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click 'Using writer As System.IO.StreamWriter = New System.IO.StreamWriter(Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory), "Word List.Txt", True) Using writer As System.IO.StreamWriter = New System.IO.StreamWriter("C:\Users\Home\Desktop\lessons Word\Word List.Txt", True) Dim curLine As String = TextBox1.Text If (TextBox1.Text.Count > 1) Then curLine = "" For Each line As …

Member Avatar for tinstaafl
0
442
Member Avatar for Hawk123

i can't get DateTimePicker to insert into Access databse. I've tried all the suggestion i can find from this forum, so i'm thinking my problem is different? my table has a column date which has a Date/Time format my code [CODE] Dim cmd As OleDbCommand Dim sqlstr As String, ans …

Member Avatar for izzah_3
0
3K
Member Avatar for Ivan_14

I found the follwing code at the internet but im not able to print listview with this code. Public Sub ItemsToBePrinted() Dim StringToPrint As String = " " & "1" & " @ " & "3.99" & " " & "3.99" Dim LineLen As String = StringToPrint.Length Dim spcLen5 As …

Member Avatar for Santanu.Das
0
410
Member Avatar for John_147

i've got code like this naglibog.CommandText = "UPDATE ptransaction " & _ " SET Quantityt = " & mm & _ ", Partial_totalt='" & jj & "'" & _ " WHERE Product_Codet =" & intProduct11_Code & "'" & "'AND soldtime = '" & stime & "'" naglibog.ExecuteNonQuery() libogsya.CommandText = "UPDATE …

Member Avatar for Reverend Jim
0
228
Member Avatar for TheMightySpud

Hi all, I'm hoping someone can help out, or at least give me a yes or no answer and possibly point me in the right direction. What I'd like to do is control a physical on/off switch (relay?) to turn on some led's. My ideal solution would be to write …

Member Avatar for Xavier_5
0
1K
Member Avatar for DobyMoby

Hello! My question is how to code search in combobox each time typeing a letter. And the search result in DropDown have to show list items which contains letter or the continues number of letters. (Not only ... starts with the inputed letter/s/). Thanks.

Member Avatar for Xavier_5
0
2K
Member Avatar for anousha

hi i'm anousha and i have a big problem ive an aasignment to create a calculator in VB.net to prfrom addition and subtraction then show the results using mouse controls. Can you give me a hit how to do it plz?

Member Avatar for Reverend Jim
0
778
Member Avatar for rick.eavans

[CODE]Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click exitwithout() Me.Close() End Sub Private Sub exitwithout() myCommand.Connection = myConnection myConnection.Open() myCommand.CommandText = "Select * from orders where o_id= " & txtb1.Text & "" dr = myCommand.ExecuteReader() Try If dr.HasRows Then deletewithout() Else Exit Sub End If Catch …

Member Avatar for chilaka2
0
2K
Member Avatar for rahul_59

Hello, I'm working on some helpdesk based application. I'm triying to select datagridview row and this dgv's selected row's id fetch on text box and updated record from dgv and i'm also succeed but my requirement is when i update this record, this record will automatically clear after updating and …

0
166

The End.