20,285 Topics

Member Avatar for
Member Avatar for Mike Bishop

Morning all, I have the following code that gets a jpg image from sql which works fine. What i would now like to do is save this image as a file on my pc in a temp folder that i can use in a report. i would like to change …

Member Avatar for Mike Bishop
0
205
Member Avatar for mahs

i have listbox and i want to add three fields first name, middle name ,last name from customer details table to the listbox plz give me a solution for this

Member Avatar for Luc001
0
89
Member Avatar for allen2663

I am writing a program to store data and want to make the main page uneditable I have an edit button that will allow editing from another form but I don't want to change stuff by accident. I have disabeled all of the boxes but don't like the way it …

Member Avatar for allen2663
0
76
Member Avatar for like_bilal02

Dear Freinds I want to help regarding datagrid. i want that when i select any value from combobox of datagrid( value in combobox come from databse) the textbox of same datgrid show the value of slecete combo box no from same databse simply i select a item no form database …

Member Avatar for ShahanDev
0
136
Member Avatar for saiju_menon

Hi all I was using DHTML edit control for my application in vb.net to edit the HTML files in runtime. but now this componetnt is not supporting Windows 7. can any one suggest any alternative for this. Thnks/Regards SGM

0
47
Member Avatar for loginas
Member Avatar for like_bilal02

Dear Freinds i face aproblem in vb.net datagridview. i actually i give the query in datagridview 1st cell that autongenrate number but when new row add in grid the same number show which in the 1st row in datagrid one more thing i want to clear that when my database …

0
58
Member Avatar for Manchala

Hi everyone i am new in visual basic. net programming. i am facing problem that when i made a file in vb.net and run it on same computer than it runs fine, but when i copy it to another computer where vb.net or .net framework is not installed then it …

Member Avatar for jlego
0
1K
Member Avatar for BleepyE

If I create a save a text file, how do I get my application to save it into the end users directory? Ive current got this which saves into my user area. [CODE]file = My.Computer.FileSystem.OpenTextFileWriter("C:\Users\#####\Fruit\Fruit.txt", False)[/CODE] Thanks

Member Avatar for BleepyE
0
160
Member Avatar for a1a4a

Hello all I am on a windows application form where people can log in and add status ... and it's all online via sql database. What i am looking for is a sql query that Insert into the table the current time,so i can print on the application the time …

Member Avatar for jlego
0
119
Member Avatar for jamesl22

Hi, In vb.net, how would you search a folder and get it to make a list of the files in the directory and what sub-folders the files are in are in? Then, put the results in a multiline textbox. The list would look something like if we were searching in …

Member Avatar for Unhnd_Exception
0
169
Member Avatar for a1a4a

Hello all I am on a windows application form where people can log in and add status ... and it's all online via sql database. What i am looking for is a sql query that Insert into the table the current time,so i can print on the application the time …

Member Avatar for Unhnd_Exception
0
163
Member Avatar for jlivvers

Hi, is there an accepted emthod to print a selected row in a datagridview? I've done some reading and gotten as far as printing a page via the printform but I wondered can you drill down into certain rows or certain datagridviews? thanks,

Member Avatar for Mitja Bonca
0
155
Member Avatar for katmai539

Hello, i'm working on a xml-style format protocol for question-and-answer applications. The concept is simple: there are just a few types answers possible (just like in real life): open answers which are entered as strings, numeric answers as integers, multiple choice answers and ratings (which are just numeric integers, really, …

0
223
Member Avatar for laks_samy

Hi I am working in vs 2005 (vb.net), i am using france culture(fr-FR) in my application, so i need to convert the france currency amount (23,00 €) to decimal (23.00). any one help me.

Member Avatar for jlego
0
86
Member Avatar for tendaimare

Every time i try to run this codei get the following error: "'System.Data.DataRow.Protected Friend Sub New(builder As System.Data.DataRowBuilder)' is not accessible in this context because it is 'Protected Friend'. " this is my first time to insert using oledb and the With method. [CODE] Imports System.Data.OleDb Public Class frmAddd Dim …

Member Avatar for Mariandi
0
240
Member Avatar for Spacenoobie

First of Hi peeps .... I have a small prob that I want to run by anyone who could help me simplify this code, Well I'm trying to change the string value (123A456B789) into a numerical value like this '123' 'A=0' '456' 'B=1' '789', but for the same reason as …

Member Avatar for GeekByChoiCe
0
766
Member Avatar for sandeepparekh9

hi i am developing an application of which i want to create a DEMO version for 7 days.. i tried to make the demo stop in vb.net by checking for the current date and if its past 7 days then the app. wont start. but the problem is is the …

Member Avatar for sandeepparekh9
0
119
Member Avatar for VBRocks
Member Avatar for kvprajapati
0
49
Member Avatar for VBRocks

Hello, here is what I'm trying to accomplish. I have a listbox with web site links on them. How do I make a webrequest visit them all at once and make it finish load the page?

0
36
Member Avatar for Dheerajpro
Member Avatar for Lee21

I want to use a progressbar to show that I'm retrieving the records from the database so that the user wont be confuse if the program is still running or not. Here's my code. Please help me.. [CODE]Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load cs …

Member Avatar for Lee21
0
2K
Member Avatar for SoulReaper1680

Hey, I was trying to make a program which displays two chars A and B on the screen. Using the WASD keys, it lets you move the A char around and using the arrow keys it lets you move the B char around. I wrote the following: [CODE]Module Module1 Dim …

Member Avatar for SoulReaper1680
0
162
Member Avatar for CharliePrynn

I have this code. I need to loop through it, until button 2 is pressed. I also want to count how many times its looped and show how many times in a label. [code]Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load WebBrowser1.Navigate("www.WEBSITEHERE.COM") End …

Member Avatar for Unhnd_Exception
0
191
Member Avatar for IrshadIkhlas

Hi, Can anybody help me in getting the time differnece between 2 dates in time format HH:MM as example need time differnec between 23Dec 20:35 and 24DEC 3:10. I am able to get the difference for same date but failed to calculate for 2 dates. Thanks

Member Avatar for Unhnd_Exception
0
534
Member Avatar for BleepyE

If have this code which writes the following into a text file. [CODE]sWriter.WriteLine("a" & " " & A.Text)[/CODE] This is the result [QUOTE]a 45[/QUOTE] - Id like the text in A.text to be in speech marks, so the final result is something like his [QUOTE]a "45"[/QUOTE] But I cant seem …

Member Avatar for BleepyE
0
117
Member Avatar for BleepyE

I have a text file like this; Bananas=60 Tomatoes=34 Rasberries=102 Apples=23 If I have a form with textboxes or numericalupdowns is there anyway I could change the number of fruit and veg in the text file? Could it be possible to somehow open the textfile into the form then, edit …

Member Avatar for BleepyE
0
112
Member Avatar for BleepyE

Hey need some quick help, some strange error I havent seen before even though ive been using the code for some time. [CODE]Imports System.IO Public Class Form1 Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Me.Close() End Sub Private Sub ExitToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e …

Member Avatar for jlego
0
124
Member Avatar for RenanLazarotto

Hey guys! I need to use quotes inside a string variable... but I don't know how. If I simply put double quotes at the start and at the end, the program interprets it as a closed interval, like if every quote is a string. What can I do? I've searched …

Member Avatar for jlego
0
270
Member Avatar for bkruep

I am starting a butterfly program and having an issue and really just barely have it started and would like to get some help\feedback on how to do this. The following is the instructions and I will make a second post on what code I have so far... The butterfly …

Member Avatar for Unhnd_Exception
0
984
Member Avatar for jlego

i have a few habbits in vb .. 1) ME before anything local in a form, example: me.label1, me.textbox1 and so on. 2) string.empty or in vb6 vbnullstring instead of = "" 3) put call infront of a function call... call pull_data instead of pull_data 3) instead of using if …

0
70
Member Avatar for like_bilal02

Dear Freinds I have a few question Regarding VB.NET 1) I have a datgridview and i want when user input the datagrid 3rd cell the 4 cell of datagrid readonly = false means user not input value in 4th cell 2)i want a autonumber generate in textbox is alphanumeric like …

Member Avatar for ShahanDev
0
171
Member Avatar for Angrybirds

Folks,I'm currently working on a project for my final year exams.I want to use fingerprint recognition technology in my project.The two best free fingerprint recognition sdk providers that I came across were 1]verifinger which unfortunately doesnt support windows fingeprint scanner and 2]grFinger which has 0 days limitation but it's okay …

Member Avatar for sandeepparekh9
0
115
Member Avatar for ak24

Hello... I want to draw three straight lines on a form. Can you tell me if the following code is correct: [CODE]Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint Dim Line1 As System.Drawing.Graphics Dim PenLine As New System.Drawing.Pen(System.Drawing.Color.Black) Line1 = Me.CreateGraphics Line1.DrawLine(PenLine, 0, 129, 529, 129) …

Member Avatar for ak24
0
642
Member Avatar for Noorul Ariff

Friends... I'm doing INVENTORY project... front-end : vb.net back-end : Access I'm having PURCHASE, SALES tables... In sales form, i need to create CONTROLS during RUN-TIME... i.e, when we gone for shopping to a DEPARTMENT store, we buy LOT things... they will give us only one BILL... when they are …

Member Avatar for codeorder
0
569
Member Avatar for Noorul Ariff

Hi friends... My friend s doing an online project... He wants to know how many users(REGISTERED) are LOGGED-IN CURRENTLY in his site... i.e if i'm ADMINISTRATOR of this DANIWEB, i want to know the USERS CURRENTLY LOGGED-IN... I need the logic for this... Help me... Thanks in advance...

Member Avatar for Noorul Ariff
0
385
Member Avatar for tinstar

I am having a problem with the following piece of code: [CODE] For countInteger As Integer = 0 To 3 seatsSoldInteger = ticketDetail(indexInteger).seatsSoldInteger costDecimal = ticketDetail(indexInteger).costDecimal totalTicketSalesDecimal = seatsSoldInteger * costDecimal Next countInteger [/CODE] I can't get it to break out the totalTicketSalesDecimal for each countInteger

Member Avatar for jlego
0
283
Member Avatar for chirusmiles

hi frnds can i have any vb.net mini projects. if so please mail me to [b]email snipped[/b] plssssssssssssssssssssssss

Member Avatar for jlego
-2
202
Member Avatar for x2fair

I am only new in vb 2008 .I Want to populate a combo box in vb 2008 with mysql, but when i run the thing that appear is "System.__ComObject"..kindly check the errors...plz.. [code] Dim conn As ADODB.Connection Dim rs As ADODB.Recordset conn = New ADODB.Connection rs = New ADODB.Recordset With …

Member Avatar for jlego
0
208
Member Avatar for Scottyyboyy

hi all, i am a newbie to visual basic .net i have a vb.net database that has 3 textboxs that go to a listbox and also store in a database. i was wondering if i can extract the data from the listbox to excel like a csv file or something …

Member Avatar for Kylua
0
104
Member Avatar for FrodoBaggins

Hi, I have an array, and I want to split the contence into textboxes. I have written some code to do so, but it won't work and I can't figure out what's wrong with it. Could someone please help me with this [CODE] Dim bh As String Dim x As …

Member Avatar for Mariandi
0
115
Member Avatar for Maha Sh.

Hi, I'm comparing String with array of Strings and I got this error Object reference not set to an instance of an object. This is my code: [CODE]For Each Str As String In Word If Str.Contains(w1) = False Then MsgBox(w1 & _ Str.IndexOf(w1)) out += 1 End If Next[/CODE] The …

Member Avatar for bklynman01
0
168
Member Avatar for x2fair

can you help me about barcode picture printing... I have random numbers and that will be the barcode number then I want to convert it to its barcode lines...how to work with it.

-2
47
Member Avatar for x2fair

i have a combo box which contains one table on mySql database and I want to make it more good that when I input a leter all the data that starts on that letter will appear.Example when I type letter "A" all data that starts with letter "A" appears..plz help …

Member Avatar for x2fair
0
103
Member Avatar for RenanLazarotto

Hi! I've been searching for a while, but it seems that I can't find an easy way to get the current user profile folder. I've tried "%userprofile%" environment variable, but it didn't worked (or I'm doing something wrong). How can I do it? I want to add the value to …

Member Avatar for kvprajapati
0
1K
Member Avatar for stevanity

C# and VB.NET are very easy and very powerful languages to develop Windows applications. there are no fundamental advantages or disadvantages between then coz they both support every .net feature. But the point lies in the ease of use and the syntactical readability. I prefer C# more becoz it resembles …

Member Avatar for UsSy
-1
213
Member Avatar for whatsername97

so, i'm very new here, and very new to vb.net. i mean, i absolutely suck at it! anyway, i'm trying to create a 'digital diary' application. i need to be able to click a 'save' button to save the data (in this case the diary entry) into a database, and …

Member Avatar for Mike Askew
0
108
Member Avatar for iWarrior

I'm having a bit of a problem with coordinates and mapping PictureBoxes. Here's the situation: I've got a PictureBox holding an image of a football pitch. The aim is to record the shot positions on this pitch. So whenever the mouse is clicked on the pitch, I am recording the …

Member Avatar for Unhnd_Exception
0
654
Member Avatar for tinstar

I am a student in school and I'm trying to figure out why my saleSummaryForm is not being popluated with the information needed. Could someone clue me into what I am missing or what I did wrong? I know that there may be more code in what I am posting …

Member Avatar for jlego
0
159
Member Avatar for abrarHuniedi

How I can creat Label in visual basic without drag drop in design? EX: If I enter 5 in the Textbox, and click button result will apear 5 Labeles in the form.

Member Avatar for abrarHuniedi
0
102

The End.