VS 2010 - Connecting To Cleverbot And Using VB
Nov 28, 2011
i have never used visual basic to connect to web pages so i don't know where to start. I want my programme to connect to cleverbot.com and allow me to talk to that bot and let the cleverbot reply back onto my programme. how would i get around doing this?
View 5 Replies
ADVERTISEMENT
Mar 2, 2011
My professor said that if I create a cleverbot she will give me a high grade but the problem is I only have 2 weeks to do it. Please help me, i can connect vb 2008 to ms access ( i think i will need it)[code]...
View 39 Replies
Feb 28, 2011
I am after running into a problem with a project I am currently working on. I am trying to connect to an Oracle DB. I am running Oracle 10g Express.
Imports Oracle.DataAccess.Client
Module GlobalDefs
Public strSQL As String
[code].....
View 6 Replies
Oct 24, 2011
Does someone here experienced this error: ERROR [58005] [IBM] SQL0902C A system error (reason code = "") occurred. Subsequent SQL statements cannot be processed.sQLSTATE=58005..I'm Trying to make a program that will retrieve data from IBM i Series DB2.I established a code below that will check if the program can connect to the server but the error message above appeared.[code]The error will appear on CheckDB2.Open()
View 2 Replies
May 28, 2011
I have created a form that is supposed to fill in the labels with information from a connected database. I have been able to get the PubId field to rotate with the Publishers Names -- dropdown list. However, the rest of the labels do not change as the drop down list name changes.
[Code]...
View 2 Replies
Feb 10, 2012
I'm looking to have a program connect to a specific website, enter data, and then return something but without using the WebBrowser.For instance, I want it to:
Connect to a website
Login to the website
Return if it logged me in or some error
etc
I'm kindof new to VB so I'm not sure how to go about this Edit: I read up a little bit about using WebClient and I understand a small bit of it but not much
View 3 Replies
Apr 22, 2011
Am having a hard time co be connected to sql server 2008 enterprise edition.i am using oledb in this fashion
db.connectionstring="Provider=SQLOLEDB.1;User id=helen;password=123;Initial Catalog=mydb; Data Source=server"
but it gives this error: Login failed for user 'Helen'/ Is SQLclient a must to be connected to sql server?
View 2 Replies
Jan 27, 2012
I have 64bit winform app that is trying to connection Excel 2010 64bit. I researched a lot websites and came up with the following connection string:
Provider=Microsoft.ACE.OLEDB.12.0;data source=<Filename>;Extended Properties="Excel 14.0;HDR=Yes;IMEX=1"
But my code runs I get the following OleDBException
"Could not find installable ISAM."
I've downloaded and installed the correct version of "Microsoft Access database engine 2010".
View 2 Replies
May 7, 2010
I am trying connect to a SQL Server database i have created using Visual Basic.Both reside on my local machine (PAUL-PC).Here is what i have done so far but i am missing something (or more worryingly i have got it completely wrong).[code]So i have an MDI form and i want to make a connection to SQL Server when that form loads.I do not want to use a DSN if possible so am trying to use Oledb. Not sure also of the DataAdaptor declaration as in previous versions i used many years ago it was recordset.I would like to use a trusted connection to connect.
View 5 Replies
Jun 11, 2012
i am having a issue with my database connection. I have connected the database itself without much issue but i want to be able to edit, add and eventually delete from the atabase using Visual basic interface. This is for an A Level computing course that i teach, i remember a long time ago when i did the course this was fairly simple to do however i cannot for the life of me figure out how to do it at the moment.
View 1 Replies
Aug 29, 2010
im trying to connect my vb login/register to my Database/Table on my website.
View 2 Replies
Dec 5, 2011
Possible Duplicate: Creating a Serial Port in code in VB.net
I wanna connect RS232 to vb in order to set an input for motor such as the steps and motion. I'm really new with VB. I'm using VB2010 express. Can you help me with the coding?
View 1 Replies
Oct 3, 2011
I want my vb application to communicate with a MySql database on server on a LAN. What connection string can i use? Also, what syntax can i use? My application is installed on many computers in LAN with one central MySql database. I want all data to go to the database.
View 1 Replies
Feb 10, 2012
Possible Duplicate: Creating a Serial Port in code in VB.netye. I wanna connect RS232 to vb in order to set an input for motor such as the steps and motion.
View 5 Replies
Dec 13, 2011
I have installed Visual Studio 2010 and Oracle 11g in my Window 7. Oracle seem to be fine because i can connect to System user, Create user and create database. But the problem is that I can not connect the Oracle to my VB.net project and there is no System.Data.OracleClient Namespace. Do I need to install Oracle Client in my computer even though i have installed Oracle Server?
View 2 Replies
Dec 2, 2010
Having a bit of a problem connecting to a 2010 access database. Im using the following connection string which works fine for earlier versions of access. Can anyone give me a pointer to where im going wrong. [Code]
View 16 Replies
Jul 21, 2011
How to connect a combo box and an enum which is kept in another class? I have searched google a lot but the only solutions I can seem to find involve declaring an enum with the combo box. I however want to keep my enum elsewhere, not in the main gui element handling form. The closet thing I could guess was:
Combox99.DataSource = System.Enum.GetValues(GetType(MyBookList.OptionsList)
With MyBookList as a previously defined instance of the BookList class.
View 11 Replies
Oct 9, 2010
How do I connect to a mysql database, and write a new column to a certain table there?
View 8 Replies
May 8, 2012
So I will be writing a vb program that will need to connect to and display data from a SQL server in a list/dropdown menu. Eventually this program will be ported into a asp.net web app. For now it will be local.
View 8 Replies
Dec 8, 2010
connect to 2 separate databases that control a system of logging in/out and the other a database of items. Think of it like logging in to ebay and searching for items. The only problem is that the x64 computers that will be used to run the final solution dont allow for MS Access databases or SQL databases to work for whatever reason.What other options do we have in order to have an effective system? A series of generated text files with the input registration details is so far the
View 3 Replies
Sep 14, 2011
Previously i used Visual Studio 6 Professional Ed. Now on to 2010 Ultimate.I just want to know how to connect a .accdb (Access 2007 database) in VB 2010 and retrieve/edit/delete records....?
In VB 6.0. i used the code as below to open a .mdb database file....
xyz.mdb contains a table called "pwd" with fields "User" & "pwd"
Public db As Database Public rspwd As Recordset
Set db = OpenDatabase("xyz.mdb", False, False, ";pwd=abc") 'To Open Database
Set rspwd = db.OpenRecordset("select * from pwd", dbOpenDynaset) 'To Open a table as a recordset
View 15 Replies
Jun 20, 2010
I need to connect to an MySQL database in my VB.NET application (VB 2010 Express). When I attempt to use the Data Sources wizard to establish the connection, it does not provide an ODBC data source. I'm using Add New Data Source/Database/DataSet/New Connection which shows the Add Connection dialog. The only options it gives me for data sources are Access & SQL Server and the OLEDB data provider. It does not appear to give me the option of adding a new data source provider. Attached is an image of my current Change Data Source dialog. Where do I get the ODBC data source provider and how do I install it into Visual Studio?
View 3 Replies
Jun 20, 2010
Is there any way to have the program still run efficiently when connecting to an mysql database? Would System.Windows.Forms.Application.DoEvents() work anywhere?I have it connecting every 3 seconds on a timer and during that connection the program locks for a second.
View 2 Replies
Feb 29, 2012
I am trying to make a user account SQL database work with Visual Basic 2008 Express for login purposes, i.e. usernames & passwords. Plan is to host this server so people can login to use the the application and verify they have a valid account. I would like to host all the account information in SQL due to the possiblity of hundreds of users at any given time. I also need the ability to add data to the database for users registering for the first time. The SQL server will need to be able to access the SQL Server databases remote via WAN.
View 3 Replies
Feb 29, 2012
Here is the scoop: I am trying to make a user account SQL database work with Visual Basic 2008 Express for login purposes, i.e. usernames & passwords. Plan is to host this server so people can login to use the the application and verify they have a valid account. I would like to host all the account information in SQL due to the possiblity of hundreds of users at any given time. I also need the ability to add data to the database for users registering for the first time. The SQL server will need to be able to access the SQL Server databases remote via WAN.
View 1 Replies
Feb 29, 2012
there Dream in Code Community! Im an okay programmer as far as skill right now I am still learning as we all are I need some help from some experienced VB.NET programmers in the community, Here is the scoop: I am trying to make a user account SQL database work with Visual Basic 2008 Express for login purposes, i.e. usernames & passwords.
[Code]...
View 2 Replies
Nov 2, 2006
I am trying to figure out a way to connect 2 users within my VB.Net application.The goal would be to send strings/integers/booleans from one computer to another that could be translated on the other side. The effect being a multiplayer game, or a chat box or anything of the sorts.If I wanted to connect to a computer here in the office, I couldn't because I can only connect to the shared IP and not the local IP's...
View 7 Replies
Feb 14, 2011
I'm trying to write a method in VB.net so that when I click a button it queries the database and returns all the values which match a textbox which is located next to the button. I have no idea how to do this, I assume in the onclick method for the button I will need to pull in the value from the textbox, connect to the database and display the results to a gridview?
View 2 Replies
Jun 22, 2010
I have a database in the same workspace, I've tried to connect to this DB using this codes :
[Code]...
View 1 Replies
Dec 30, 2010
i have to do a hospital mangment system by VB.net and connec it with a DB and i do that by using Wizard ,the problme is that i dont know how i can validat the data thet the user will enter it and i don't know how to give each patient and staff member a uniqe ID and send it to the DB?
View 2 Replies