20,278 Topics

Member Avatar for
Member Avatar for Vox30z

Hello all! I am trying to add to items to a combobox by using the "enter" key. It does work when I add the first item, but if I manually clear the box and add another items it does not get added to the list. (1) I click in the …

Member Avatar for pritesh2010
0
411
Member Avatar for pracks

hiii...everyone i m a bsc-it student and need some good project topic in vb...plzz suggest me some topics..

Member Avatar for onlyvidya
-1
135
Member Avatar for G_Waddell

Hi, Ever had an application that you want to store [B][U]user specific[/U][/B] settings on? e.g. login name or Form background colours, User specifc DSN connections etc. So the next time they run the app the information is there for them? This can be achieved in VB.net with just a few …

6
2K
Member Avatar for Maya Pawar

Hi friends, I have different query in access and vb.net. Sometimes record are inserted sometimes not. All coding is correct. when record is not inserted,it gives an exception that 'could not open;database is locked' What is this exception??? My database is not having password. I m using access2007 database. since …

Member Avatar for G_Waddell
0
447
Member Avatar for Maya Pawar

Hi friemds, I have a form which contains one textbox and datagridview. I wnt what, When i type e in textbox ,all records should be displayed which name is begining with e from table in access. I have each 5 records which is begining with a,b,c when i press b …

Member Avatar for leahrose87
1
86
Member Avatar for GrimR7529

Hi, I am having trouble removing a line from a text file. When I click on the button in order to remove the line it gives me an error that access to the file is not possible. Now I assume that the file is in use during me wanting to …

Member Avatar for GrimR7529
0
86
Member Avatar for scorpio26krf

I have a web page where I am trying to populate the PSI # into the txtPSI depending on which customer is selected in ddlCustomers. I have written it a way it has worked on a past project and it compiles with no errors, however it doesn't work when it …

Member Avatar for jugosoft
0
101
Member Avatar for starlight849

Hi guys and gals, I appreciate any help in advance. I have two textbox controls and I want to accept input for textbox 1 and textbox 2. However, when user enters text into textbox 1 I would like textbox 2 to mirror the same text as it is typed. I …

Member Avatar for GeekByChoiCe
0
274
Member Avatar for leahrose87

I have so many form in different module in one solution. I already instantiate a new Form as a global variables in my parent form. Then, call the code [CODE] frm.show() [/CODE] in my button1 event any idea?

Member Avatar for leahrose87
0
92
Member Avatar for TwijoO

hi, due to my FTP server not liking to upload .exe files in order to get my auto updater to work i have to rename the folder .file before i upload [I](example: C:/.../desktop/twijoo.exe.file)[/I] after this is downloaded i need it to check the application folder for any files ending with …

Member Avatar for TwijoO
0
174
Member Avatar for jay200032

Hi Everyone, Is there any easy way of changing the default hover color of a Toolstrip button in Visual Basic.NET

0
92
Member Avatar for saranyasara

hi we are doing ATM project in VB.NET using sql connection....how to create database in sql...there are two labels in my project namely pinno and acctno.i had database with three fields pinno ,acctno and amt.how to check the details i entered in textbox1,textbox2 are same when compared with database...pls answer …

Member Avatar for pweegar
0
102
Member Avatar for Tekito

I'm about to write a new program in Visual Basic. I have Visual Studio 6.0, but it's limitations are starting to become a problem and I'm wondering about trying Visual Studio 2008 Express (unfortunately purchasing the full version is not an option). I would hate to get halfway through and …

Member Avatar for pweegar
0
218
Member Avatar for nanosani

I have installed Visual studio and then after that I installed msdn library from a network location on my of my client pcs ... but what I get is when I press F1, it says that the external help should be installed and then tells me to insert the msdn …

Member Avatar for cadmarysoft
0
113
Member Avatar for chandruswami
Member Avatar for Nick Evan
0
92
Member Avatar for tungnk1993

I want to write an application that can detect whether a value in CSS file has changed or not, how can I do that ? Please post example code / import as much as possible. Tkq

Member Avatar for Some-Jackass
0
125
Member Avatar for Nikon70

I have a sqlite database and want to update the sort column in my table. e.g. Col1 - Col2 C - 4 A - 3 B - 5 I want to sort on col1 then update Col2 with new values i.e. 1-3 Don't know if it's possible but doing it …

Member Avatar for mfas
0
90
Member Avatar for toomuchtodo

Hello all. I am very new to VB.Net and am currently learning the basics and mechanics of how the software functions, my past was mainly with Matlab, so naming variables and such is quite different to me now. My question is this: How can I read data from a .csv …

Member Avatar for G_Waddell
1
368
Member Avatar for tferrier18

Hey Guys, First of all, any help on this would be very much appreciated! Ok so. Every year my friends try and get ballot tokens to falls festival but we fail and have to buy them off ebay. I don't want to do that again so I'm trying to create …

Member Avatar for tferrier18
0
126
Member Avatar for leahrose87

hi! I am developing a window based application. I want to show my menu to be separated by a vertical separator. Just like this: File | Edit Anyone?Is it possible?

Member Avatar for leahrose87
0
2K
Member Avatar for neolyte120109

Private Sub btnOk_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOk.Click If txtuser.Text = "" Then MsgBox("Please Enter a Username or Password, DOnt leave it blank", MsgBoxStyle.Exclamation, "Access Error") ElseIf txtPass.Text = "" Then MsgBox("Please Enter a Username or Password, DOnt leave it blank", MsgBoxStyle.Exclamation, "Access Error") Else End …

Member Avatar for Teme64
0
159
Member Avatar for Nelson Fana

[code] I am working with tab controls (tab1, tab2, etc) I want to more than one panel in tab1 and switch between them using a button. My problem is working with more than one panel in tab1. Please help. This is an educational program i am working on for schools …

Member Avatar for leahrose87
0
96
Member Avatar for shuhana84

Function selectDB17() Dim cn As New SqlConnection Dim cmd As New SqlCommand cn.ConnectionString = ("server=EKS-HQ;database=BGB;user id=administrator;password=admineks2005") cn.Open() cmd.Connection = cn cmd.CommandText = "SELECT KODSTATE,USERID,PASSWORD,KUMPULAN FROM USERID" Dim lrd As SqlDataReader = cmd.ExecuteReader() Try Do While lrd.Read() If lrd.HasRows Then a = lrd("KODSTATE") b = lrd("USERID") c = lrd("PASSWORD") d = …

Member Avatar for pritesh2010
0
263
Member Avatar for b1izzard

Hi all I am trying to insert a record into MS-Access database using VS2008 as front end and this is my code i am using to connect to the database. login.mdb has two tables(login,schedules) [CODE] Dim con As New OleDb.OleDbConnection Dim cmd As OleDbCommand Dim myquery As String Dim count …

Member Avatar for shuhana84
0
248
Member Avatar for rss2363

I'm trying to write out animals from a database. All the samples I see for creating View pages have hard-coded "nodes" in the URLs, but since I'm reading my data from a database, I don't know all the "nodes". I can get my first view to work but my second …

0
95
Member Avatar for vamsikrishna20

Hello Sir, I am using a web application . I need to be able to access the clipboard data using javascript . I have completed implementing this in internet explorer but haivng an issue implemnting this feature in mozilla . code in internet explorer: document.getElementById('ClipboardContent').value = window.clipboardData.getData('Text'); Regards, vamsi.

0
86
Member Avatar for goboxe

Hi, I am looking at functions that convert standard date to Julian data and vice versa. I tried to search the forum, but found nothing. Thanks, G

Member Avatar for tratak
0
117
Member Avatar for Awah Mohamed

hi guys . i need your help to start vb so please tell me how to start learning vb and where can i get free resorces and support

Member Avatar for Nikon70
0
109
Member Avatar for hirenpatel53
Member Avatar for hirenpatel53
0
197
Member Avatar for balu_s

[I]<<split from [URL="http://www.daniweb.com/forums/thread289067.html"]here[/URL]>>[/I] As tha same i 2 had tried but t is coming error like [B]Default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, [COLOR="Red"]error: 40 [/COLOR]- Could not open a connection to SQL Server)).[/B]

Member Avatar for pritesh2010
0
62

The End.