- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
28 Posted Topics
Re: i hope this one could help you with excel [url]http://www.visual-basic-tutorials.com/index.htm[/url] | |
Here's my scenario I do have many link labels in my form. What I want to happen is, when a user click on that link label, the name of that link label will be passed to a variable. | |
Hi, I would like to know how can i change the panel location where my pointer points? | |
hi, please help me on how to use folder browser dialog box. What I want to do is to locate the path where the user want to save the file and then enter the file name. thanks in advanced. :) | |
Hi, Please help me how to pass value from database to a variable. This is my query: [CODE] Dim it As String = "Mouse" Dim itNo As String SELECT * FROM tblITEquipmentName WHERE equipmentName LIKE '" & it & "%'" [/CODE] I would like to get the ItEquipmentNo and pass … | |
Re: first, I want to clarify that visual studio 2010 is IDE application. Since vs2010 is a .net framework, you can use any programming language you want that is included within .net. maybe, your trying to say that you are using vb.net? | |
Hi, I'm working with Mobile Tracking System. Wherein I have assignedDate and expirationDate in my database. What I want to do is do detect wether the assigned phone is going to expire. | |
Hi, Here's the code of my listview,.It's already working well. It have a search box in my form, then if the use type in the search box, the result will display at the listbox. Now, what I want to do is when I choose an item in the listview, the … | |
hi, Please help me with my listview. The listview did'nt show any list items. here's my code: [CODE] Private Sub txtSearch_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtSearch.TextChanged Dim strSearch As String strSearch = "SELECT * FROM tblMobileTracking WHERE accountNumber LIKE '" & txtSearch.Text & "%'" myConnection.Open() Dim … | |
Re: try this one. if you have a textbox for the user input, it will look like this [CODE] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim myVar As String myVar = TextBox1.Text.ToUpper 'if changing to lower case just use .tolower MsgBox(myVar) End Sub [/CODE] or … | |
Hi, I have a search textbox in my form. I also have, textboxes for computer name, mouse serial number, monitor serial number and phone number. While in my database, they are all reside in one table named tblComputerAsset. I am using Access for my Database. What I want to do … | |
Hi, I have a search textbox,I would like to know how to list all of the searched items in the list view. | |
Re: you can use tabcontrol in the toolbox. I think that's the best way you can achieve the ribbon(menu bar)look in Microsoft Office 2007. :) [B]If you like my suggestion, please click the up arrow in my permalink. Thanks,. :)[/B] | |
I would like to know how to use module, why we need to use module and when to use module. I've tried to use module but some of my textboxes, labels and other controls didn't recognize by the module i've created. | |
how can i populate listview from database? If the user search for a particular column (ex.Employee) then the output will be on the listview. | |
Re: Is C:\Users\ constant? or it will change? | |
I have a textbox for searching in my access database. For example, my database is dbEmpLis; my table name is tblEmployee; columns in my tblEmployee are fName, lName and mName. What I want to do is,when a user type to the search box, and click the search button, it will … | |
Here's the setting, I have many link labels in my form(I guess around 150 link labels). All of them will handle a click event, with the same condition when clicked. What are the possible solutions regarding to this problem. Because it's not good if I'll do it one by one. … | |
I would like to know what is the correct format of virtual path on vb.net or vs 2010. In my project folder, is it advisable to save it in bin folder? If yes, what will be the virtual path of it? | |
Hi, Currently, I am working with wmi, my first task is to rename the computer name, lan names and paging file. I would like to know if there's a good reference or tutorial regarding wmi application? | |
on my project, i have a search textbox and also a listview. What I want to do is when a user type in the search textbox, it will automatically list all of possible results in the listview. For example, if I type letter 'a' in the search textbox, it will … | |
Hi, How can I point or target my access database in a safe way? Meaning, if I'm going to change my project to another computer, it will not cause any connection problem to my database. Thanks in advance. :) | |
Hi, How can I dynamically find all of the linklabel within a form, then get the linklabel name? ![]() | |
Below is my code connection to my database..I highlight with red color my target database. And I would like to ask, what is the safest way to target the database. Because Im thinking, what if my database is change to another directory. If that happens, it will cause trouble to … | |
On my form, I have many labels. Each label's name is like 23SW001, 23SW002..and so on. Then i also have an access database that has a table name tblWorkstation. Then what i want is, if the form loads, it will compare all of the label names to my database. If … | |
How to connect vb.net to access database and save all the informations within a form. For example, I have a form name:Form1. Within that form, I have textboxes for Firstname,Middle Initial and Lastname. And when I click the button save. All of the information will be passed to my access … | |
Hello, How to reset the properties of the form as well as all of the control properties values when i click a button. Thanks in advanced.. | |
Hi, currently I am creating a seat plan system. On my seat plan system, there are many workstations(around 150+ per floor). each workstation is define by a linklabel. when a user click on a particular workstation, a new form will appear. And that form will pop up to show who … |
The End.