20,284 Topics
| |
Hi all! I am trying to connect to a remote MySQL database. This database is located on my LAN at the address 192.168.1.2. I am using MySQL Connector/ODBC 3.51 (MyODBC 3.51) for the connection. The connection string that I am using is the following- Driver={MySQL ODBC 3.51 Driver};Server=192.168.1.2;Database=mydb;User=root; Password=;Option=3; The … | |
Hi. I am using Visual Studio 2008, and Sql Server 2000, and I have the following code: [CODE] 'Load connection module connection() cmd = con.CreateCommand cmd.CommandText = "SELECT * FROM tblUser WHERE username = 'xxx' " da.SelectCommand = cmd da.Fill(ds, "tblUser") dt = ds.Tables("tblUser") MsgBox(dt.Rows.Count) [/CODE] I don't know why … | |
Suppose mine textfile contains the foll. records-- Sunday, July 13, 20086:29:55 PM^^1^^ritu Sunday, July 13, 20086:29:55 PM^^2^^ritu Sunday, July 13, 20086:29:55 PM^^3^^ritu Sunday, July 13, 20086:29:55 PM^^4^^ritu Sunday, July 13, 20086:29:55 PM^^5^^ritu Ion Form_Load,I want that in Combobox only date is picked. My code is as follows- Private Sub Form1_Load(ByVal … | |
can someone please help me in making a bank simulation program in vb.net does somebody know any links where in i can see sample bank simulation programs??? | |
Ok, first of all this is the first time I've used the forums on this site cos only recently joined. I've been studying computing at college for about 5 years and graduated from Sunderland Uni in 2006. Throughout the time I was at college the programming languages we were studying … | |
hello friends, can anybody gave a snippet for reading data from my sound card (ie linein, microphone ......) i am using soundmax integrated audio controler(analog systems) . i am not experianced in Direct sound so the code using mm api with in the os is more welcome. | |
I've gotten a share setup by using this: [CODE=vbnet] Dim objWMI As Object = GetObject("winmgmts:\\localhost\root\cimv2") Dim objShare As Object = objWMI.Get("Win32_Share") intRC = objShare.Create(strPath, strName & "$", intType, intMaxAllowed, strDescr) '$ added to share name to make share "hidden" [/CODE] But, the share from above allows users to read and … | |
I am very new to VB.NET What is a good desk reference book for applying VB.NET to AutoCAD 2008? | |
I have a class named Account so I have a question. In the declarations of a new instance Dim Newaccount as Account -----but I can declare this like.. Dim Newaccount As Account = New Account which are the differences between both declarations?? are the same or not? excuse me english... … | |
hi friends. . One again plea for help in project idea. . Doing my final yr. . Need some good project idea. . nothing hi-fi something innovative. . Thanks pls do help | |
Can anyone help me translate this regex match in Perl to a VB.Net Regex match? Heres the perl regex: if ($line =~ /\\([\w\d\s\-]+?\.\w{3})\"\t\"/) { print "LINE: $1\n" } # regex match And heres what I have for the VB regex, but its currently not working: [code=VB] Dim fs As New … | |
can someone help me???? i need to make a bank account simulation on savings and checking acount.... can someone help me???? please help me guys... | |
Im having trouble trying to pass a parameter to a SQL query that I am trying to run on a DataTable, that Im using to Dynamically populate a treeview. Im not having any trouble filling the first nodes, but to fill the second nodes, I have to use a query … | |
I wanna make a program for a little shop the progs idea is to calculate the daily amount and the items and monthly report but I don't know where to start please help me :) :) | |
Does anyone know how to transfer files from a pc to pc ? im trying to make a file share program, i am trying to use [CODE]my.computer.network.uploadfile(**location**,**ipadress**)[/CODE] but its not working anybody now how?? | |
I'm experimenting currently with notification in VB.net and working with baloons in the system tray succesfully. My problem is that I would like the baloon to display an ok/cancel dialog with the user like firewall-programs do. Can you tell me how to create this functionality. As far as have come … | |
Hi all, I'm trying to consume a Service called GetMemberPointsAvailable using VB.NET. Here is the wsdl: [url]http://sp-s3g-uat.iclp.com.au/ws/egapi/v1-0/egapi.cfc?wsdl[/url] This service is written in coldfusion - axis engine. The steps: I'm using VB.net on Visual Studio 2005. I created a new windows application project. Then I added a web reference with URL … | |
I try to access a same database using two different system, a) a window based system and b) a web based system. Both are using VB.NET. But it seem like the there is either one of them can access the database at a time. When one of them running, the … | |
Right now Im having trouble getting data from a MySQL table and creating a new datatable to store this. I have a TreeView control that I am trying to dynamically add nodes to. The query that I have is returning the Attachments column of all rows where Owner = (parameter), … | |
i have 2 tables with same fields except that table2 has 1 additional field..but otherwise table1 and table2 have same fields and have different number of records in each and each row in each table could be the same or completely different.. i am trying to add the distinct values … | |
Hi all, I whant to create a small program, to monitor 2 or more mailboxes on a exchange server, we have the mailboxes configured in outlook but there will be only a notification of your own account not for the others, is it posible to create a small program that … | |
Hai all. In my appliction im having MDI parent form. and i made frm2 as topmost form But problem is whenever i open some other appliction still that frm2 will come on top. whenver my application is open or active then only frm2 should be on top. Thanks | |
how to copy data from one table to other table in vb.net from internet | |
please take a look : [Code] 'this is linq to sql Dim searchParam As String Select Case Me.SearchToolStripComboBox.Text Case "Name" : searchParam = "Teacher.Name" Case "Address" : searchParam = "Teacher.Address" Case "Phone" : searchParam = "Teacher.Phone" Case "Handphone" : searchParam = "Teacher.Handphone" Case "Email" : searchParam = "Teacher.Email" Case "Website" … | |
Hi, i"m creating an application involving multiple forms i"ve successfully linked the forms but the problem is when a new form(form2) is linked by a button control form1 is also running,so i placed the following code in the load event of form2 "form1.close()" this segment of code terminates the entire … | |
How do you check if a button was clicked in Visual Basic .NET ? | |
Hi all, I just have a Question on how to enable users to enter "Time" in my form. Am using vb.net. Just a guidline where to start from would be nice and helpful. Thanks in advance, | |
[Imports System] [Imports arun.VB.Namespaces] [ Class Hello] [Shared Sub Main()] [Dim m As New Hello] [System.Console.WriteLine(m.GetMessage())] [End Sub] 'Main [End Class] 'Hello [Namespace arun.VB.Namespaces] [Public Class Hello] [Public Function GetMessage() As String] [Return "Hello, world"] [End Function] 'GetMessage [End Class] 'Hello [End Namespace] 'arun.VB.Namespaces hi all.. i am new to … | |
I have a program that lists files found from a search, and when the user selects one of the files and clicks open, it will open the file they've selected. I only want them to be able to open one file at a time, and I want an error box … | |
Folks: this is a very small part of my code.. i have 2 comboboxes filled with RAM values(integers). by using the "nothing" keyword i just want to make sure that both the combo boxes have some values filled in them.. say i choose 1 from combobox1 and 2 from combobox2.. … |
The End.