20,284 Topics
| |
I am creating a program that will install multiple programs, because I build new computer quite often. For example "MyInstallProgram" will launch and allow the user to select which programs (MSOffice, Acrobat, WinZip etc.) to install. When compiling the program, what code can I use that will insert a time … | |
i have a radio button and a text box. when i select the radio button, then will come out the text box to let user fill in. may i know to show the text box? below are my coding. [CODE] Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) … | |
hi.... im getting this error "Syntax error converting datetime from character string" when im trying to insert values into the table in sql server 2000....here is hw my code goes... insert into vw_student(RegNo,StudID,StudName,FathName,Sex,DOB,Department,DOJ,Yr,ContactNo)values('0001','1101','Abilash','Ramankutty','Female','1989-02-03','B.com','1styear','2006-06-16','90451299098') pls help me in solving dis.... | |
Hello, I have just been added to a VB.Net Windows Application project. I have downloaded projects from Source Safe and I am runnning into problems viewing various forms across all th projects. When I try to view various forms in VS2008 I get this error: [I]The designer could not be … | |
Hi folks. I'm having some problem here. I have a list of files to read and have to append them all to one unique file. the problem is that when i open the first file to read. I read the first line and discard it. when i read the second … | |
Hi there!... i was seeing some codes in Python, but i can't understand it, so... i really don't want learn phyton, by that reason i want to know some things (specific things) for try convert it, now... if someone can convert it for me, i'll be sooo glad :P. Here's … | |
good morning, I made a little VB app to shutdown a laptop after it has been powered on for 2 1/2 hours, and giving the user a little over 8min warning that it is about to be shutdown. However I have nothing in place to stop the user from restarting … | |
Listing All The Installed Softwares In Computer Using .Net Don't Forget to add [B]Imports Microsoft.Win32[/B] for complete thread with screen shots check here: [snipped] | |
Hi, I'm deploying a VB.NET application with Inno installer. In the past I've used the one Click installer but now require a setup with more options. What needs to be included when deploying a VB.NET application (developed in VS 2010). I understand that the .NET Framework needs to be installed … | |
Hi, I'm new to VB and I am supposed to be writing a program for my instructor using VB 2008. It is sort of like a quiz program. You build the "light bulb" program but instead of names and colors, it consists of two forms. Question 1 with a "next" … | |
Dear all, I have tested my code in order to pass single value to single parameter field in crystal report from VB.NET Form, it is ok but the problem is that I want to pass multiple values to only one parameter field called "Product Name" and it displays only one … | |
Hi there, I have been having some problems with my Visual Basic. In trying to figure that out, un-installing, and reinstalling, running virus scans, etc, I have lost a lot of my time to get this assignment done. I would just keep messing around with it and try to be … | |
hello the problem is about user when click button coin and it will display the decimal number and suppose to be like this : 0.10 also , i have made code about notes amount like RM 1.00 and RM 5.00 . here it is: [CODE] Private itotal As Decimal = … | |
Hey All, I have built a client-server application with vb.net 2010 and sql server 2008. Now, I want to upload images of employees from registrar's office to the server. It is easy to do it with web-applications but not here. How do I go about it? I need a start. | |
Hi. I'm trying to print from datagridview but I don't understand how to do it. I've found some coding and this is the best for me. [URL="http://www.vbnettutorial.net/?Id=132&Desc=VB.Net-Print-Datagridview-in-WinForms"]http://www.vbnettutorial.net/?Id=132&Desc=VB.Net-Print-Datagridview-in-WinForms[/URL] But the tutorial is using server and I'm using this to call my table from Acces to datagridview. I don't know where to … | |
Well i just tried to turn Rows cells that contain the word Yes into green on form load when i put that code into a button it worked but on a form load i didn't work ! anyone can help me out ? Thanks [CODE] Private Sub Form1_Load(ByVal sender As … | |
Hello All My question is How can i create insert,update,delete query by using class file and store procedure. This query is use for 3 tier. Please Give this answer as soon as possible. | |
i m using access 2007 and i create one view from 3 table now i want to pass this view in crystalreport but it can't work? view name is = Com_Out_Qua_Panding here is my code [code]Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Dim ReportForm As … | |
I feel like I am having every possible problem this term, (good learning experience, right). Hopefully you can help me. I started this weeks program, had some glitches and restarted. I deleted the first project, began again and got an error when I saved saying that file already existed and … | |
Hello Friends. Im a final year student for COmputer Security / Forensic. Im planning to do a project which requires me to do encryption and decryption. My possible choice of language would be VB.Net. I was wondering if wad is running in my mind can be executed. Well, I would … | |
hi guys i am wondering if anyone can direct me to a beginners tutorial on creating crystal reports that are specifically based off the sql server compact 3.5 database in visual studio 2008? most of the examples i can find are all related to Sql Server Full..or Access..ect. i have … | |
Hi, im using dreamweaver and i have a table in which i have an image. When i add another table under the table existing it comes right at the bottom. What should i do to that table so i can move it and place it anywhere around the page. Is … | |
i have a project..i need to search the user info,, the search by cbo has this items : Finance Name Address Finance Type when i click the search button the data from database should load into the data gridview in the middle when i select one data it must be … | |
Please help. I am not seeing why this won't work. Thank you. [CODE] private void FNameTB_TextChanged(object sender, EventArgs e) { friend.FName = Console.ReadLine(); } private void LNameTB_TextChanged(object sender, EventArgs e) { friend.LName = Console.ReadLine(); } private void PhoneTB_MaskInputRejected(object sender, MaskInputRejectedEventArgs e) { friend.Phone = Console.ReadLine(); } private void MonthTB_TextChanged(object sender, … | |
hello good afternoon i have a problem regarding the number and want the number become from this: RM 2 to be like this: RM 2.00 here is the code: [CODE] Dim pay As Double Dim bayar As Double pay = "2.00" bayar = "3.00" If Date.Now.DayOfWeek.ToString = "Monday" Then TextBox3.Text … | |
Hi I am trying to update my database based on the selected values in two comboboxes. Combobox1 = Manufacturers Combobox2 = Orderlists In the App the user selects a manufacturer and then an orderlist and then presses Ok button which updates the default orderlist for the manufacturer. I am having … | |
Hi I was hoping someone could offer me some help please I have a form with two comboboxes ,one text box and a button .I have multiple tables in ms access database with same structure , col1 and col2 . I want to insert text box value into column1 in … | |
I am making a web browser, and I'm using tabcontrols. I want to offer my users the option to save, and then reopen tabs they have open on next startup like Google Chrome. How would I go about doing this? I have a form that I am using as an … | |
Am I missing something here? I am writing a game that requires some random number generation. I decided to use the System.Random class but I was getting strange results. The documentation says that if I have an instance of the class (let's call it r), the call r.Next(1,6) returns a … | |
Hi Guys How r u all? i have a code that must start a verification form when load a finger print to recognize it but it is not working [CODE] Imports System.Data.OleDb 'Delegate Sub FunctionCall(ByVal param) Public Class IdentifyByFeatures Private Template As DPFP.Template Private Sub VerifyButton_Click(ByVal sender As System.Object, ByVal … |
The End.