Cannot Connect To Website?
Jan 24, 2011
we need to add the texture image resources to the project. If you have not done so already, download the textures from [URL]I have not been able to link to any rkimble sites: Just wondering if it still exists / is in service?
View 1 Replies
ADVERTISEMENT
Jun 16, 2010
i have an application, that just connect a website through a proxy server.So i need to find out the proxy server type.Like SOCKS5, HTTP and Is there any way to find it out?
View 1 Replies
Jul 6, 2011
I am trying to write an SSIS package that connect to an XML feed to download FX rates and import them into an SQL table.
i have the code below, but cannot figure out how to implement logging in through a proxy.[code]....
View 1 Replies
Sep 6, 2010
I need to download records from my Access database into a ClickOnce vb.net windows app at the same web site as the ClickOnce host. Is that possible? What would the path be if the site was [URL]
View 2 Replies
Apr 11, 2010
I was wondering if there is a way that I can connect directly to for example FaceBook, without using the WebBrowser control?
View 16 Replies
Jan 4, 2012
how can I connect to a access (*.mdb) file from a website and edit it?
View 1 Replies
Dec 4, 2009
i want to connect to mysql located on my website's server in visual basic.
View 1 Replies
Jun 15, 2010
I've got a vb (desktop) app (not a web app) that needs to connect to my website, I've been told that embedding my MySQL database credentials is a big mistake for several reasons.So, I've built a web script in PHP that runs on my server called web-service.php, it's located at www.example.com/web-service.php.Now, I'm trying to connect with this code:
Code:
Dim hwrRequest As HttpWebRequest = HttpWebRequest.Create("http://www.example.com/web-service.php")
hwrRequest.Method = "POST"
Using swWriter As New StreamWriter(hwrRequest.GetRequestStream) 'POST the info
[code]....
And when I do, I get the error "The remote server returned an error: {401} Unauthorised.", but I shouldn't need any credentials to access this. I'm just trying to POST a username and password to that page and have it query the database and then get the returned content, I'd prefer to use POST than GET so you can't see the user/pass in the URL (if possible).
EDIT: I used CPanel to password protect my website so it can't be accessed, after supplying my user & pass to access it, everything works.
View 1 Replies
Sep 21, 2009
I want to connect to an MySQL database on the website, I want to write and retrieve information from that database into a table on my program.
Can anybody link me to a tutorial on how to do this? Or give me some insight, I'm relatively new to Visual Basic (7 months) and I'm not exactly sure on how to do this.
View 1 Replies
Dec 22, 2009
Is there a way to make your webbrowser connect (or your computer ping) to a website via proxy server? (ex: 123.123.123.123 :: 12345)
Not a proxy like corpask, but an IP and port.
View 4 Replies
Sep 27, 2010
[code]...
when the Internet it's ok,this code it's okay,too.but when the Internet it's not connect or the webside server it's so busy,it's going to error,it said "Webexpection it's not handle".what should I do?
View 4 Replies
Jul 16, 2011
it's just for a program registration. i would store all of the registration codes in the access database, then export it to XML, then upload it to my web host. I would then somehow connect it to my Visual Basics login form (Which I have already made). If this can't be done, having them register through the form and having all the allowed codes on the internet (So i can easily edit them)!
View 5 Replies
Feb 19, 2010
What Im making is like a face book and tagged login from my app
1. I have Combobox with 3 urls in there ( Facebook.com Tagged.com and Bebo.com )
2. I have a Form2 with webbrowser
3. I have a Button when clicked it should open up my form 2 and preview of the website which I selected in my combobox in form1
All I'm trying to do is when I select lets say facebook in my form 1 and click load it should open up my form 2 with facebook website in it.[code]Now when I click my button in form 1 it will load Form2 ( named Explorer1) but my form2 is not showing me facebook or tagged page for some reason
View 13 Replies
Feb 26, 2011
i'm creating a website that allows people to upload images to the website in a folder called images on the Site. But I don't know how to upload a file and I'v searched everywhere Please Note: In this Website were not Using the asp:fileupload, were developing our own interface
View 1 Replies
Apr 6, 2009
What I want is: To scan a website every 15 mins or so, (craigslist in this case), and email myself any new posts that come up. I know I need to use WebClient, but I never used that before. Another question would be how to only email when a new post is up and not receive the same email every 15 mins.
View 2 Replies
Sep 30, 2011
We have a VB.Net application which works fine in our tests in different Windows XP SP3 machines. However there is one machine in which is displaying this error:
Unable to connect to any of the specified MySQL hosts
Using the mysql command, we can successfully connect to the database. We already checked for any other application or firewall that could be blocking the connection but it seems fine. We also reinstalled the system (no errors during the installation) but the MySQL error message doesn't change.
The system settings are exactly the same as in the other computers. We are using "localhost" as server in the connection string. The "hosts" file has its default values (nothing strange in there).
View 1 Replies
Jan 16, 2012
I'm working on an application where I'm using an webcam image. I have code that works when using the built in iSight (It's an Apple running boot camp windows 7) camera. However after installing a second USB powered Microsoft Life Cam I am unable to connect to this second camera. When runnign this code I only ever get one input device:
Private Sub LoadDeviceList()
Dim strName As String = Space(100)
Dim strVer As String = Space(100)
[Code].....
View 3 Replies
May 29, 2012
I am trying to connect to my remote MySql Database within Visual Studio using the compact framework.
I can successfully add a data source and preview the data within the IDE so assume that the connection is ok regarding Connection strings and remote access.
However, when I attempt to access the data using any run time control I get the following error when the table is loaded using the .fill method.
MySql.Data.MySqlClient.MySqlException was unhandled
ErrorCode=-2147467259
Message="Unable to connect to any of the specified MySQL hosts."
[Code]....
View 9 Replies
Jan 25, 2011
I have a ASP.NET 2.0 website created in C# that acts as a completely independent site and I am looking to integrate this into an existing ASP.NET 2.0 website created in VB.NET. Unfortunately I just don't know much about the server management side of ASP.NET yet so too much I'm unaware of when it comes to IIS configuration etc. Does anyone have any advice as to how I can go about integrating this? Basically I want to host it in a subdirectory from root so when you hit example.com/myindependantsite/ it will pull up my C# site.
One possible solution I came across mentioned just dropping the project folder into the root directory and setting up that directory as an application virtual directory in IIS? A few other random questions were small things like would my application relative links (~/for-example.aspx) stay relative to my root subdirectory if it's made into an application virtual directory? Just trying to get this running on their site but like I said it's completely independent so want to preserve my websites environment.
View 4 Replies
Sep 9, 2011
I want to create a program to fetch information from a website (that's fine). However, you need to be logged in to get this information. I just want two simple textbox controls that I would type my username and password into and hit submit and the information would be returned to me so I can use it. (I don't want to use a webbrowser control)
View 2 Replies
Jun 5, 2011
when connecting to sql server i get getting this error . please help how to resolve this problem
[Code]..
An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 2)
[Code]..
View 2 Replies
Dec 9, 2009
I have a program that needs to obtain a page's XML Source and then it reads and graphs data from it. I have built the program around just one sample of the xml but now i would like the program to get the xml source every time it loads/press a button ext... But i'm not sure where to start on getting the XML page source of a website.
View 19 Replies
May 2, 2011
I want to create a program that uses IPHlpApi.dll to get the tcp/ip of all connections. It successfully gets the local address and port, the remote address and port, and the status. Now I want to get the website title or url. So far I use this
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code]....
View 2 Replies
Dec 29, 2009
Is it possible to have C# and vb.net in the same asp.net website? without separating in class libraries.
View 6 Replies
Jun 21, 2010
So right now, im working on a "log in" app, that logs into facebook.com
I have a
username textbox1
password textbox2
However I dont know how to click the "Login" on facebook.com
I can go to facebook.com/login.php and get that to work...
A few questions, how can i check to make a user is not logged in, and if they are, to press the "logout" option, and clear any cookies from facebook?
Here is what i had so far. just unsure how to check cookies or if someone is logged in.
If InStr(WebBrowser1.DocumentText.ToString(), "Not you? Click here.") > 0 Then
WebBrowser1.Navigate("http://facebook.com/login.php")
End If
[Code]....
View 5 Replies
Jan 21, 2011
I learned I can log into websites using the web browser control provided in VBE 2008 and have done so successfully on several different sites that I use daily at my job. I came across 1 site that uses a lot of pop up windows to navigate through it. The problem is, when I log in using the my web browser control, the pop up (which pulls up the internet explorer) brings up the login screen, I assume because of the site uses sessions. My work around is to attempt to login using the internet explorer. I'm having trouble getting it to work and unable to find answers in the forum (hope I looked in the right place). The app is not doing anything, can someone assist? Here is what I have:
[Code]...
View 6 Replies
Nov 27, 2009
im useing vs 2008 and am trying to log into a website via vb.net and a windows form, without much luck, wondering if someone could point me i the right direction
[Code]...
View 5 Replies
Oct 23, 2010
I originally posted this in the ASP.NET forum because I wasn't sure if this would be more of an ASP.NET thing or VB.NET thing. But, since I haven't received any responses, I thought to take my chances here.
I have an app that, among other things, utilizes a bunch of different portable command line apps. My app is downloaded by the user and then they choose to download whichever command line apps they'd like.
The problem, is that this can be anywhere from 70MBs of data to 900MBs. So that the users won't have to download additional files and to eliminate an additional step to use the app, I'd like to run the portable CLIs directly from my website.
View 2 Replies
Jul 23, 2010
I am new to creating websites for people on a money-earning basis.. I created my Dads website for my final year project, and he will pay me eventually but obviously I cant charge him as much as anyone else.I have just been to a trade show where I picked up 1 definite and 2 possible sites to do. The definite one is as follows:They want a site which:Has a catalogue for the customer to view, as well as being able to order products at a retail price.Has an administrative section with order tracking, catalogue management and page view stats.Has other basic pages such as Contact Us, Terms etc (all the usual).Enables customers to post comments about items, as well as manage their accounts (addresses, payment details etc).Is linked up to sage pay or paypal (or something similar).My task is to design this site from scratch and launch it for them. They already have the hosting sorted out, so no need to worry about that in the quote. I am planning on using .net and SQL Server, if this makes any difference.Basically what I would like is to get some quotes for what other people would charge if they were given the task.
View 2 Replies
Jul 19, 2010
I'm getting desperate here trying to find the problem, and I don't know where to start looking for it.
Here are the symptoms:I've noticed, that when a user logs on in the morning, he is then immediately logged off, then when he logs on again, everything is fine and he can work on the site.
Every once in a while, when the user clicks a link, the page takes a lot of time to load, but it never actually loads, and the user is thrown to the login page.Also, after an Exception has occurred in the website, the user is then thrown to the login page. It's as if the exception clears somehow the session.
[Code]...
View 5 Replies