20,284 Topics

Member Avatar for
Member Avatar for hoofbeats95

Hello. I need to include an excel file in the installation project of an application. I've added it to the install project under application folder. I need to read that file into a dataset during runtime. The file needs to be included on install so that the customer can change …

Member Avatar for hoofbeats95
0
806
Member Avatar for lunaluni

:( im new in vb.net i read some tutorial i still dont understand on how to retrieve data from sql server into datagrid. can someone teach me on how to set it. if got easy tutorial for me also can i have a button call "retrieve" and when i click …

Member Avatar for finito
-1
138
Member Avatar for laks_samy

Hi i am using List View in vs 2005, i added check box but i can't set the properti enable = false, how to set enabled =false in all checkbox coloumn?

Member Avatar for finito
0
91
Member Avatar for meetarun007

Hi to all, I need to display a arrow picture over another picture. But i cant able to make arrow picture transparent other than the arrow. Always it is in rectangle format(Picture box). I tried the picture box color to transparent, But that doesn't worked. Pls Help...

0
94
Member Avatar for Chriswf

Is there a way to make a pop up (like a msg boxs) if the mouse goes over a pannel? If so, what would the code be for it?

Member Avatar for crazyhorse09
0
47
Member Avatar for Agent-of-Chaos

i have this piece of code and i want it to be implemented in vb.net [CODE]Sub DrawScreen() If Picture1.Point(1 + x + (i * 4), y + (j * 4)) = RGB(c1, c2, c3) Then v(&HF) = 1 Picture1.Line (1 + x + (i * 4), y + (j * …

Member Avatar for Luc001
0
269
Member Avatar for Lupus

Hey all I have a problem in my code I can't seem to find a solution for.. One combobox is being filled up with a datatable like this: [CODE]CbUsers.Datasource = usersDAO.getUsers()[/CODE] The getUsers() returns a datatable from my acces database. Users have a name and id, I want to use …

Member Avatar for Lupus
0
133
Member Avatar for michtan

Hi, I wan to copy my directory from a loc to another. But i just able to move. Below is my code. [CODE] PathToMove = "C:\hey\nana\" Destination = "C:\you\nana\" If Directory.Exists(Destination) Then Dim objDir As New DirectoryInfo(Destination) objDir.Delete(True) msgbox("done") End If Try If Directory.Exists(PathToMove) Then Directory.Move(PathToMove, Destination) Else msgbox("Error") End …

Member Avatar for kvprajapati
0
102
Member Avatar for doomkid

Ok so the other day i was playing a game on facebook and decided to make a program to make it faster to play the game and save some time. i made a simple auto clicker with some hotkeys to start/stop and then added some text boxes and some more …

Member Avatar for Luc001
0
204
Member Avatar for danielle23

Hello... I'm having a real hard time with displaying the proper data in Project Summary. First off, I am using an Access database to bring in the data. Total hours are being calculated correctly. Rates are as well. I tested using a messagebox to make sure the rates are being …

Member Avatar for danielle23
0
116
Member Avatar for Swence32

We are creating a Who wants to be a millionaire style game in VB. Our server is pulling information such as questions and answers from a Access Database and sending them to the contestants (Clients). All transfer of information is directly from the server to each client. One of the …

Member Avatar for Swence32
0
257
Member Avatar for iamai

Hi i have some problem with the listview control i dont know how to use it here is what i wanna do [code] sub mysub() handles myEvent for i=0 to 3 Dim lv As ListViewItem = ListView1.Items.Add(x(i)) lv.SubItems.Add(x(i)) lv.subitems.add(x(i)) ... next end sub [/code] so when the next event occurs …

Member Avatar for iamai
0
72
Member Avatar for Cardboard Box

Hi I recently learnt how to do crash collision based on colours. So you can use something like img.getpixel(0,0) to retrieve the colour of the pixel at (0,0) on the picture "img." I have experimented quite a lot with it and have managed to make some programs that draw a …

Member Avatar for Cardboard Box
0
199
Member Avatar for prema_g4608
Member Avatar for kvprajapati
0
32
Member Avatar for emaduddeen

Greetings Everyone, We have many forms in an Attendance application I am writing for a local school. The first form is called formBrowseAttendance and the other form is called formBrowseStudents. In formBrowseAttendance is a textbox called editBoxStudentID. Inside the double click event of a grid in the formBrowseStudents I am …

Member Avatar for kvprajapati
0
140
Member Avatar for tanvirahmad

Hi Experts I m using vb .net & crystal report 11 , I m using 4 parameters in crystal report 1 st is "tcomp" , 2 nd is "tled_name", 3rd is "tdt_form", 4th is "tdt_to" , the problem is, when i use first 2 parameters it is working well but …

Member Avatar for kvprajapati
0
125
Member Avatar for ptaylor965

Hi, Could you please show me how to get 1.9 to show with two decimal places (1.90) you can use [CODE]Math.Round(1.99999999, 2)[/CODE] if you want to bring the decimal places down to two but how do you increase from zero or one decimal place up to two? Thanks Peter

Member Avatar for kvprajapati
0
38K
Member Avatar for Learner7

Hi, Are the following references required for VS 2008 users as well? Or only required for [B]VB 2005 Express Edition users[/B]? Please do help.

Member Avatar for kvprajapati
0
95
Member Avatar for johnny.g

Hi all..need a little help from u all. i have created a windows application using vb.net wht i want to do is create a windows service for this application so that it can be started automatically or manually and started and stopped on demand. i have gone thr some forums …

Member Avatar for Luc001
0
152
Member Avatar for krishnisilva

hi, how can i valiadte each cell in a datagrid view seperately, i have one column int which is the 7th column and the 3rd and the 5th are calender control and the first two are combo boxes, and a check box column Question 1: how can i select on …

Member Avatar for kvprajapati
0
162
Member Avatar for dre-logics

I want a row to add data grid view that is linked to dataset and datatable. Aftet that I want to that [COLOR="Red"]new row [/COLOR]in the first cell i want to put a new value (data) [CODE] myConn.Open() myCommand1.CommandText = "select * from groups" myCommand1.Connection = myConn myAdapter1.SelectCommand = myCommand1 …

Member Avatar for dre-logics
0
160
Member Avatar for SuperTaejin

I want to make a program that control powerpoint slides for example, when I start power point in presentation mode as I click the button, then slide goes to next. And when I click one more, then go next slide. I don't know how to send message to powerpoint in …

Member Avatar for SuperTaejin
0
199
Member Avatar for CipherPol9

Hello I created a database on Access with two tables, [icode]Table1[/icode] and [icode]Table2[/icode]. My question is, it is possible to join the columns from [icode]Table2[/icode] in [icode]Table1[/icode]? If it is possible. What do i have to do? Thanks

Member Avatar for CipherPol9
0
71
Member Avatar for RASSHI
Member Avatar for kvprajapati
0
33
Member Avatar for kayjenx

So I have a database (for tracking customer applications through to approval etc.) in MS Access form & and all (but access just isnt the best way to do this for many reasons I wont get into). I have looked at lots of programming language and decide that VB was …

Member Avatar for kvprajapati
0
171
Member Avatar for Learner7

Hi, My code was working fine when I tried with 3 columns. Now, when I mode columns (13) it throws the error. Please see attached the file and do help me. Regards.

Member Avatar for kvprajapati
0
77
Member Avatar for MATTXtwo

Hi guys i'm trying to call an external .vb file class function is it like dim a as ClassName=new ClassName()? so how do you do with this kind of.. I try to search for return value from .vbs to project that i will compiled, but none got the answer.. #The …

Member Avatar for kvprajapati
0
100
Member Avatar for Mr.B

Hello All, I am a little new to .NET Developing, and have learned a great deal recently, but I'm stuck with something. I come from an ASP Background, so please excuse my ignorance ;-p I'm trying to subtract 2 variables, but they don't seem to 'see' one another. I can …

Member Avatar for Mr.B
0
112
Member Avatar for scooby36

I have a piece of code that works for adding multiple rows to a dataset but I think that it is a lot of code and thought maybe someone may know a better way of doing it. I need to add rows to the dataset based on the selection of …

Member Avatar for Alexpap
0
840
Member Avatar for chimpangkoy

hi.. im working with my thesis, can anyone help me to generate auto increment number. for example,when the form load for the first time it will appear transaction 1, and then next time i'll load the form it will be transaction 2, so on and so forth. i am using …

Member Avatar for Alexpap
0
111

The End.