CreateObject (InternetExplorer.Application) With Protected Mode ON With Trusted Site
Sep 13, 2010
I have one project created with VB 6.0. Step to reproduced this issue,
1. Start Internet explorer and add the site "[url]" to trusted site. now set protected mode check box to Off for the trusted site zone.
2. Open the Visual Basic 6.0 and created standard Exe project.
3. From Tools -> references add "Microsoft Internet Controls".
4. Copy and Paste below code. [Code]
View 1 Replies
ADVERTISEMENT
Sep 16, 2010
What is the real mode , protected mode , supervisor mode and the hypervisor mode ?
View 1 Replies
Jan 23, 2012
vb.net applications that runs at the client-side work in unsecured environment, these applications connects to a mysql database server so... it contains the username and the password of the mysql database in the connection-string in the application itself.isn't there any way to digitally sign my applications so the database server only accepts the requests from the trusted applications?I want to this to prevent the hackers from hijacking my database
View 1 Replies
Oct 21, 2011
Or in another way of understanding how to bypass the firewall of Windows in VB.NET?
View 1 Replies
Aug 19, 2009
I have a leagcy application written in VB6 which makes posts to URLs using the InternetExplorer.application object.Once a post is made i would like to be able to see the status which was returned (i.e. 404 - page not found)
I can't find any properties of the object which will give me this information,
View 1 Replies
Mar 26, 2010
I am not sure if this is possiable but I am looking to build an application that will login to a web site, navigate the site and download files. I would like to do this all in code and able to run multiple instances of the program to get information from many different web sites. Is something like this possiable in VB.net?
View 3 Replies
Oct 14, 2010
i am using visual studio 2005 on win 7 with office 2007. i have developed win application. i am using microsoft activex spreadsheet component in my program. so it automatically creates reference to AxInterop.OWC11.dll When i run program in debug mode (open program and click RUN in toolbar it works) but if i run directly .exe (go to bin elease doubleclick .exe) it give error at loading point of that component. It says "Attempted to read or write protected memory. This is often an indication that other memory has been corrupted." An unhandled exception occurrs.
[Code]...
View 3 Replies
Apr 28, 2009
Out of 70 users of my application 2 are getting the following message when they to run the application... That assembly does not allow partially trusted callers. The reason for the error is that by default .net applications run from a network location have limited permissions. You need to use caspol.exe to add the network folder where your application is being run from to the Trusted Zone. If you do a search on these forums you will find plenty examples of how to do this. It is fairly simple. It will have to be done on every machine that will be running the application and a simple cmd file can be made to do this. The only difference is that I've asked our service desk to install the application to the local C drive which I believe they did.
View 10 Replies
Aug 25, 2010
How can I license a technology from Microsoft ?I want to license the dos protected mode interface "DPMI".
I've 14 years old so that I don't have many experience for programing this mode.
I want this technology because I'm making an operating system.
I've made another three 16-bit OS but i want to make a one that's using 32-bit.
[Code]...
View 2 Replies
Apr 1, 2010
I'm an Egyptian boy I've 13 years old and i live in Saudi Arabia and i have some prizes in Programing
so that i want an answer from anyone to the following question: I have just known this word "DPMI" DOS Protected Mode Interface and i have searched for it but i didn't find any thing that's help me i want some information about it and how can i make a simple one because i have made a simple operating system and i want to upgrade it and my simple system is 16-bit how can i make it a 32-bit
View 6 Replies
Jun 18, 2010
I have some code I am trying to get to work. I open a url and then I want to get that same url address from the opened we page web. For some reason when I place parameters in the object.navigate statement the locationURL comes back empty
[Code]...
View 2 Replies
Sep 21, 2009
I have a program that is able to print selected drawings to a printer near the person who requested the drawing. recently we updated from autocad 2008 and inventor 2008 to autocad 2010 en inventor 2010. With opening of inventor 2010 I don't have any problems. I'm usung visual studio 2005 I open autocad with the following text:
[Code]...
View 8 Replies
Nov 24, 2009
In my vb.net applications, I do a lot of reading/writing to excel files.This is one of the simpler bits of code I use:
Dim objApp As Object, objBook As Object, objSheet As Object
objApp = CreateObject("Excel.Application")
objBook = objApp.Workbooks.Open("C:maid2cleanM2CPrinters.xls")
objSheet = objBook.Worksheets.Item(1)
[code]....
It's never been fast but in the last few weeks it seems to take forever.The "createobject" line is taking 4 seconds to run. is there any way I can find out why it's slowed down?
View 4 Replies
Apr 12, 2010
I am having a Friend Class InterceptingChannelBase class.It has a property as below:
Protected ReadOnly Property InnerChannel() As TChannel
Get
Return Me.innerChannelT
[code]....
This class is being inherited by (Friend Class InterceptingInputChannel) class which in turn contains another (Private Class TryReceiveAsyncResult) class.The property above is being used in this private class as below:
Public Sub New(ByVal channel As InterceptingInputChannel(Of TInputChannel), ByVal timeout As TimeSpan, ByVal callback As AsyncCallback, ByVal state As Object)
MyBase.New(channel, callback, state)
[code]....
I am getting the error on the above underlined statement saying that Protected Readonly Property InnerChannel is not accessible in this context because it is declared asa Protected.As far as i think,if i declare a property in class as 'Protected' then if this class is inherited by 'another' class then i can use this property and it should not throw an error.
View 3 Replies
Nov 10, 2011
Dim box As MultiTextBox = New MultiTextBox
Dim i As Integer
for i = 1 to 3 Step 1
lengthWidthHeight = MultiTextBox.GetItemValues()
Next i
This excerpt of code is using the NXOpen API. In the NXOpen API, the MultiTextBox class is public. However, when I compile the code I get the message:
'NXOpen.UIStyler.MultiTextBox.Protected Sub New(ptr As System.IntPtr)' is not accessible >in this context because it is 'Protected'
My question is, how am I getting an error about protected scope? Could it also be that the API documentation is incorrect?
View 2 Replies
Feb 15, 2010
Any advantages of protected modifiers in console application in Visual Basic .NET
View 2 Replies
Jul 11, 2009
how to open password protected MS Access database using vb.net windows application?
View 2 Replies
Mar 18, 2010
I've inherited a web site, which I've converted into a web application in VS2008. The conversion has worked for everything except a Gallery control.The compile error I'm getting is:Type 'Gallery' is not defined in file: gallery_oct07.aspx.designer.vb
Option Strict On
Option Explicit On
Partial Public Class gallery_oct07
[code]....
View 4 Replies
Jun 10, 2009
i designed a very simple vb.net application. i would like to my users to be able to access it through a website instead of locally. is this posible? how do i do it? does the webserver have to have special extensions? do i have to convert the program into a different format?
View 2 Replies
Feb 21, 2009
I am currently working on the login system I want this application to be for anyone who is a register member of my site, with that saying is their anyway I can use the login information from my Apache xampp mysql database? Then when the user information is correct I want it to close that login box open up a splash screen for about 5-10 seconds then show the user part of the application. I already have the table and database created in php myadmin.
View 25 Replies
Jul 20, 2010
I have no idea why when I compile and run my application in x64 mode or anycpu my application crashes some time. some times it returns : Unhandled Exception
Attempted to read or write protected memory. This is often an indication that other memory is corrupt. and some times just says x has stopped working w/o details, any one knows anything about it ?
View 1 Replies
Nov 7, 2008
I want to create an application that can run in both GUI and CLI mode. Basically what I want is when a user double clicks an EXE they get the GUI but when they run it through a command prompt they can supply CLI arguments and run entirely in the command prompt. I know that VBScript has the difference between Wscript and Cscript, but I don't know how to do that in VB.
View 8 Replies
Mar 24, 2009
I am developing an application in vb.net2008,Sql Server 2005But there is a problem while running my application on Customer Machine. It throws some security related issues Access Denied or so on....And also my application does not run in Windows Vista.I am changing in my app.manifest file like this ....
[Code].....
View 1 Replies
Nov 10, 2011
How can i put a application running while computer is in the log off mode?
View 1 Replies
Mar 14, 2009
how to login a site from a windows form application
View 5 Replies
May 21, 2010
In my application (VB2008),I am using MS flex grid and it was workingfine on 32bit mode. When I tried to compile the same code base in 64 bit ,it crashes the application.
View 2 Replies
Mar 27, 2009
My intentions are to add command line switching. I am trying to see if i could run my application in varoius ways i.e.
App.exe -S - Start the application in XX Mode
app.exe -T30 - Start application with 30 second delay
and that kinda switching.
View 7 Replies
Feb 9, 2010
Ive got an app that holds a list of site we have, At each site there are a few devices. The idea is when they click on a site all the details for the site are loaded and then a second thread sits and pings each device to see if its live. Im trying to do this in a seperate thread so if they click another site while its still pinging them it doesn't wait before it switches site. This all seems to be workling fine except if you click through the sites quickly, when you do that it will eventually come up with
Quote:
{"Collection was modified; enumeration operation might not execute."}
The error flags up on the "Next" line in "ThreadedPing"
Thread stuff
Public Sub ThreadedPing(ByVal dt As DataTable)
Try
Dim dr As DataRow
[CODE]...
View 2 Replies
Oct 13, 2010
When i publish my program i choose to let the application check for updates via a website and if their is one update automatically when the program starts. Is their a way were on the main user form i can make it so that the user can change the update site with out me building the program again with the new site. I want to do this becuase the site i use goes down alot so when i changed the update url no one was able to download the update for the new update server.
View 16 Replies
May 19, 2011
I'm deploying a VB.Net app (VS 2010 Pro) that requiers the user click a command button to open IE to a financial WEB site and download informaion from the site. The app works fine in every detail when installed on the development computer. But, on the target computer when the command button is clicked an unhandled exception occurs which says: System.IO. FileNotFoundException:File Not found.My code behind the button is Shell("C:Program Files (x86)Internet Exploreriexplore.exe www,fidelity.com",AppWinStyle.NormalFocus)
This works fine on the development computer. Do I need a way to code this as a relative path? If so,can you tell me how this is done?Throughout the app I have written relative paths to needed files using paths like (Open(Environment. GEtFolderPath (Environment. SpecialFoldder.Desktop) + "File Name). They all work fine when deployed.
View 7 Replies