VS2010 -- How To Create An IE Addon
Jan 19, 2010
I'm trying to create an IE addon that allows me to just switch proxy settings. I'm sure there is something like this already, but for me it's an exercise in programming and learning as well.
View 1 Replies
ADVERTISEMENT
May 2, 2011
How does one go about creating their own toolbar for Internet Explorer, or something along those lines? I've been doing some digging around the web, but nobody has really made it clear whether or not it's possible to do with vb.net. I tend to keep in mind that there is almost nothing that isn't possible in vb.net but that's almost.
View 2 Replies
Mar 23, 2012
I am trying to create a UserControl in VB.net, under VS2010. I have the code for the UserControl and I would like to add it to a form. My problem is that, according to every book and forum I have seen, after I build the UserControl, it should show up in the Toolbox. It doesn't. I even downloaded code from a book, the code executes perfectly, but their TrafficLight control doesn't go in the Toolbox (even though the book says it should - and that the only way to set its properties and to add it to the form is through the Control properties). I have tried to add the control to the form manually, by declaring it
Dim myObj As New SomeClass.SomeControl
and in the Designer.vb, identical with the buttons on the form:
Friend WithEvents myObj As SomeClass.SomeControl
With both, I get an error saying
'myObj' is already declared as 'Friend WithEvents myObj As SomeControl' in this class.
And either way, I get an error when I try to look at the design:
Could not find type 'SomeClass.SomeControl'. make sure that the assembly that contains this type is referenced. If this type is part of your development project, make sure the project has been successfully built using settings for your current platform or AnyCPU.
The control by itself builds and shows up in design view (not in the Toolbox though, even though it Imports System.ComponentModel and Inherits System.Windows.Forms.UserControl and... what else ? I tried to build it in a separate project, to see if I creating a separate dll will make a difference, though I really want it in the same project.
View 1 Replies
Jan 16, 2011
When i push the button,code create me a new form but i don't know where is it?I want do something with this form take on it any controls or something like that but i don't know how activate this new form?Where is this new form?
View 3 Replies
Sep 30, 2011
on vista trying to create a reference to a registered DLL which succeeds with VS2008 but not with VS2010 (get system cannot find the reference specified).on vista and win7 using dependency walker the DLL cannot find IESHIMS.DLL which is in the IE folder.
View 5 Replies
Aug 13, 2010
This is a followup to this thread, where I'm trying to draw two sets of dots using HatchBrushes to create VS2010-like interface. If you take a look at the zoomed image of the IDE background (blue with dark and light blue dots): that is what I'm trying to draw using GDI+. In the previous thread ForumAccount find the correct HashStyle to use (Percent20), but there is a problem: I need to draw two sets of these hatchstyles: once with a slightly darker color and once with a slightly lighter color, at an offset of one pixel downwards.
[Code]...
View 4 Replies
Jul 24, 2011
im trying to make a external WoW addon, but i keep getting an error when im using the hwnd function.Here's my code and i keep getting declare, findwindow, and SetFocusAPI underlined.
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Public Declare Function FindWindow Lib "user32.dll" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
[code]....
View 1 Replies
Jan 23, 2011
I recently started a project and I have successfully completed the autoclicker part. But I am wondering how to add on to the autoclicker to make it locates a color and then click on that color. So for example:
User presses find color button (color the mouse is currently over)
Cursor finds color red,
Cursor locates and clicks all color reds until new color is clicked,
Repeat.
View 7 Replies
Feb 17, 2009
Anyone know of a way to do addon's with a visual basic program? I want to create a program that has some basic functions, but to stay away from bloatware and unused functions. How would you create a main program when it is installed and then be able to add and remove features to it?
View 4 Replies
Jul 23, 2010
I would like to do the Post method in visual basic, is this possible ?Here is an addon that I truly like for Firefox, just to get a sense of what I'm talking about.[URL]..
View 3 Replies
Aug 17, 2011
doses microsoft hav graphic charts to add on tools
View 1 Replies
Mar 23, 2009
My idea is that i want to create a auto-shutdown app that will allow me to auto-shutdown after downloads have completed using IE6. Third part download managers have these built in for example however i would like to make one for IE download dialog. Any ideas on how do start. Detect when a download is active, set time, autoshutdown etc.
View 3 Replies
Dec 9, 2011
Trying to make a simple browser with some simple addon's. What Ive done is setup a menu(forum) for the user to enter their email providers web address and it will save it in a xml file. When they click on the email link, it should load the email xml iformation and place that info in the tb_html.text and navigate. I keep getting a null exception and im not sure what going on here. Here is the code:
Browsers:
Private Sub btn_Email_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_Email.Click
'Load Action
Dim SavedEmailObj As Storage
[code].....
View 2 Replies
Mar 7, 2012
I have a program in VB.NET that has a webbrowser contorl. I wanted to zoom on a page and i found a tutorial online that involved something like thiswebbrowser1.ActiveXInstance.ExecWB(OLECMD...When i went on and typed it on, there's nothing called ExecWB.Why is that? Is it because i'm using IE9?
View 1 Replies
Apr 5, 2012
I have been testing and experimenting with "one click publishing" for a week now, and still cannot get a successful deployment. The results i get are listed below
(4/5/2012 12:14:11 PM) An error occurred when the request was processed on the remote computer.
The application pool that you are trying to use has the 'managedRuntimeVersion' property set to 'v2.0'. This application requires 'v4.0'.
Publish failed to deploy.
========== Build: 1 succeeded or up-to-date, 0 failed, 0 skipped ==========
========== Publish: 0 succeeded, 1 failed, 0 skipped ==========
View 2 Replies
Jul 4, 2011
i recently use vs 2010 but i cant see the MaskedTextBox control in the toolbox.
View 1 Replies
Aug 4, 2011
I am trying to read configuration file using
ConfigurationManager.ConnectionStrings but it is not available in vs2010.
ConfigurationSettings doesn't read connectionstring section.
View 1 Replies
Nov 30, 2011
I am doing a sql statement to get all the data that starts with "A" in the database.
[Code]...
View 1 Replies
Nov 30, 2011
I am working on a login page for an asp.net application. I'm making my own login and everything is working so far: I get a connection, the query is asking to return Count from the table where the username and password match the username password in the table.
[Code]...
View 1 Replies
Jun 29, 2011
I was wondering if they was anyway to get webparts working in other browsers except IE if not is they any other free alternative that has the same drag and snap and saving capabilities?
View 3 Replies
May 9, 2011
can a vb6 project be imported into vs2010? I have a vb6 project that I have been working on and would prefer not to start all over again.
View 6 Replies
Aug 2, 2010
I cannot load my solution which includes a .RPTPROJ for the reports development.
The .RPTPROJ project is not recognized.Does anyone know why? And please don't say "It doesn't because it is not supported".
If it is not then Why?Are we to wait for the next SQL release? Isnt there a plugin to support .rptproj?
Apparently i need to run vs2005 (or 2008) to support the reports while running vs2010 for program development.
Is there already a plugin or patch? Does vs 2010 (vb.net) support the report viewer object?
Does vs 2010 (vb.net) even support .rdl files?
I am developing against sql server 2005 as this is the clients version.
View 5 Replies
Aug 19, 2011
i'm doing the project of database by using IBM-DB2 and i need to use the visual studio 2010 to connect with IBM-DB2 and i have saw the comment that posy by someone. I follow all the code there and now i found some have a blue line.
Imports System.Data.OleDb
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
'connection string
[code]....
View 1 Replies
Sep 2, 2010
i write project in visual studio 2010 , and i want to open same project in vs2005?i mean i want to convert from vs2010 to vs2005 ?
View 4 Replies
Feb 23, 2011
Just in case, I missed anything. As far as the google result, I don't see a capability to develop iPhone app using VS2010 (sorry, maybe I shouldn't ask this question here). right? Or, is there a way to write the code in VS, and then using some sort of converter...
View 10 Replies
Sep 9, 2011
I know that there are millions of posts about this already but I cant seem to find one that mirrors my issue. I am using VS2010 and want to automate excel and I'm trying to work through the example here.
MS Tutorial The problem is when I go to add the reference as mentioned 3.Add a reference to the Microsoft Excel Object Library. To do this, follow these steps: -On the Project menu, click Add Reference. -On the COM tab, locate Microsoft Excel Object Library, and click Select.There is no such reference available.
know if this is the right way to automate excel with VS2010.If it is could someone please let me know why I dont have the COM option for excel. im wanting to write in VB.net but if someone has an example in C# that would be fine. I have tried implementing automation using the Microsoft.Office.Interop.Excel.Application dll but i get the following exception when I try to create the excel application.
This line generates the error. EXL = New Microsoft.Office.Interop.Excel.Application()This is the exception
Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG))
View 1 Replies
Nov 5, 2010
I need to read an old-school INI file in a new project that I'm writing in VB.Net 4.0 Windows Forms....Here's the code I have that is not working:
Public Class Config
'Windows functions to call to process the INI file
Private Declare Function GetPrivateProfileSection Lib "kernel32" Alias
[code].....
View 7 Replies
Apr 1, 2010
In VS2008 we have menu Report->Data Sources... which opens "Report Data Sources" from here we can see Project data sources & we can add them into our report by pressing "Add to Report".but in VS2010 RC there is no such thing like this (no Data Sources... option inside Report menu)
View 1 Replies
Sep 29, 2011
How do I enable online help in VS2010? When I press F1 it says it cant find any content locally & I cant find where to set it to look online.
View 5 Replies
Jul 24, 2009
If not what else is needed.
Is it possible to install it as a virtual application?
View 6 Replies