Open An External Browser Window And Refresh It Inside Application?

Feb 27, 2012

We have an existing VB.net application. Upon an event, we need to open a browser window. I'm able to open the browser window like this:

System.Diagnostics.Process.Start("http://s3web01/suggestions?item=" + strItem + "&co=" + strOrder)

Upon another event, we need to refresh the browser window with different parameters for strItem and strOrder.

If I call the same code above, it opens a new tab in the browser window. Is there any way to refresh the same browser window that was previously opened?

View 1 Replies


ADVERTISEMENT

Open External Application Inside MDI Form?

Jan 9, 2012

I need to open some external applications such as notepad.exe inside the VB.NET MDI form, and also I need to make sure that there is exactly only one copy of this running always.[code]....

View 1 Replies

Open External Applications Inside Of The MDI Application?

Apr 9, 2009

Whats up all I've recently been working with the MDI options in vb.net but I have a question. Is there away to open external applications inside of the MDI application. What I mean is Taking command prompt for example and opening it withing my MDI app. It only shows the file in my app and not on the taskbar. Can I do it or no?

View 2 Replies

Refresh Parent Browser Window On GridView Page Change?

Apr 17, 2012

I'm using ASP.net; I have a popup browser window that contains an databound gridview with textboxes. It has an "Add to Order" button which takes the values entered and updates the database, then closes the popup and refreshes the parent. This currently works perfectly using window.opener.document.forms[0].submit();self.close(); in a RegisterScriptBlock

I now need to update the database on gridview page chage so that textbox values are not lost. I put window.opener.document.forms[0].submit(); into the PageIndexChanging event of the datagrid, but it does not refresh the parent window. Refreshing the parent window with the order lines helps the user see what they have already ordered. My update database method runs fine, just not the parent browser refresh. I also tried "window.opener.location.href = window.opener.location.href" to no avail.Refresh parent browser window on GridView page change?

View 1 Replies

Child Window Open Inside Of The Main Window Form?

Oct 12, 2010

I have create a project with one main form window and also i have to use a number of other forms as well. now i want to open these other forms inside the main window and not outside. I'm using Visual Studio .NET 2010 as developing environment.

View 1 Replies

Prevent WebBrowser Control Open External Browser

Apr 14, 2012

I have a windows form that have 5 webbrowser control. I also have serveral links of URLs and each webbrowser will open them. My problem is that after all links already opened, when I close my windows forms, sometimes my application suddenly open my default browser automatically and open url that on my URL list. I already tried to make all webbrowser to navigate to "about:blank"to make sure there are not loading any webpage before I close my application but the problem is still occur. This has given me a headache since this problem is not always occur when I close my application.

View 6 Replies

VS 2008 : Open External .exe In Same Window?

Jun 28, 2009

1. Open external .exe in same window as application

2. Embedd a .exe in a VB application.

The .exe was not made in VB.

View 1 Replies

Make 'Button1' Open A External Program Of There Choice Using The File Browser

Feb 26, 2011

Question 1: How to make 'Button1' open a external program of there choice using the File Browser.

Question 2: How to send 'TextBox1.Text' to an external process

Question 3: How to save data in a .dll file made from Visual Basic

If anyone has source codes that I code edit for Visual Basic 10/08,And If you could sort of walk me through what I would need to edit to make it work for my programs

View 3 Replies

Open And See Data Inside A .ISO Bin File From Inside An Application

Mar 30, 2010

im new to coding (started coding last month) so im a little stuck on how to do this, im making some emulation programs to learn coding with, and a part of it is to point the app to a .iso/.bin file and scan the data inside of the iso/bin to check if a file exists.[code]My issue is i cant find any class examples, or any information etc on how to code it so my application can see the data inside of the iso/bin instead of just see'ing the iso/bin file, so that i can then check the data inside the iso to see if the file exists etc.Im a novice still at coding so making a new class myself to look inside the iso/bin is to complex for me.

View 1 Replies

How To Open Web Browser In A New Window

Mar 18, 2009

Having problems trying to find or come up with code to open my current web browser i have made, in a new window using the file option in the menu strip

View 1 Replies

Open New Window In Web Browser?

Jun 9, 2011

this is code which opens new window link in same programe

Private Sub WebBrowser1_NewWindow(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles WebBrowser1.NewWindow
' This will be triggered only when link tries to open in new window.

[Code]......

View 1 Replies

Open Window Behind Browser?

Feb 5, 2010

I have a website that upon a person going to it, it checks a timestamp on the database. If the timestamp is over 4 hours old then it opens a popup winodw that runs a database import/update sub that updats the database. Then closes itself out afterward.

The reasoning for doing it this way is it allows the person browsing to continue about their business while a seperate window takes care of the update.

Right now this popup appears as the focus.Is there a way to make the popup load behind the current browser window as to not intrude the users navigation?[code]...

View 2 Replies

Open Word Document Inside The MicroSoft Web Browser Control?

Apr 26, 2011

ow can open word document inside the "Microsoft Web Browser" control using vb.net.Word document open inside the "microsoft web browser" control by using VS 2008,vb.net, office 2003 and Win Xp. but it is not open inside the "microsoft web browser" control by using VS2008,vb.net office 2007 and Win 7.

View 1 Replies

External Application Window Position?

Aug 5, 2010

how can I make start my external application "DXSETUP.exe" at center screen position using this code?

Private Sub Panel3_MouseClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel3.MouseClick
Try
Me.Hide()
Threading.Thread.Sleep(2000)

[code]....

View 3 Replies

Open As A New Window And Open As A New Tab In Own Browser?

Aug 6, 2009

I am making a browser and i have putted tabs in it too. But when i click "open in new window" in my browser the internet explorar pops up. I want my browser window to pop up. Secondly the "open in new tab" option is not avaliable when i right click a link. How to make it avaliable and the new tab should open in my browser(not internet explorar)

View 2 Replies

Open Default Browser In A Controlled Window?

Jun 9, 2012

i want to open the DEFAULT webbrowser of a computer in a controlled window in vb.net , and inside that windows (of the controlled default browser ) to open a webpage and remain in this page for a certain time ... then open another webpage in the same window and remain again for certain time ....

View 1 Replies

VS 2010 Linking - Open In A New Window With Web Browser?

Feb 4, 2010

When i'm clicking on a link in a page i've navigated to in my web browser it opens with Internet Explorer. How can i make it open in a new window with my webbrowser? I'm using a tab control inted of webbrowser control btw, you can post codes for both of them

View 1 Replies

Programmatically Maximize An External Application's Window?

Sep 4, 2009

I have an application right now that starts a process, then opens a file associated with that process (system.diagnostics.process.start("WM.exe")), however, the way they save, there is a window within a window. It's like in photoshop cs3 when you have many windows within the big window of the application. Right now I use an api call to findwindow which is the application itself, but within that I need to find the subwindow, of which I know the apptitle, and then I need to set its windowstate to maximized. Does anyone know how this can be done? I think there's a way to hook a handle, but how does one also maximize?

View 1 Replies

Forms :: Open New Default Browser Window From Button

Aug 10, 2011

Just a quick qquestion. My application opens a web browser window with the click of a button. Today it looks like this: Process.Start("[URL])(It's not this website, but this is just an example.) This will open the requested website with a specified number at the end of the adress.

[Code]...

View 4 Replies

Api Call - Moving And Resize External Window From Application

Jun 5, 2009

I had been looking for a way to move and resize an external window from my application and I came across this method: [Code] now this does not work, after looking around I many threads about how api calls in .net are different.

View 6 Replies

Open External Application In MDI Container?

Sep 5, 2009

Is it possible to get an external application like Windows Live Messenger inside a MDI Container in my application?

View 4 Replies

Forms :: Make Browser Control Open A Link In A Brand New Window?

Dec 18, 2009

I have a form with a webbrowser control on it, and I load up a local file in it with some code for a rotating banner (so I can support my app with advertising).The problem I'm having is, it is for example, a banner ad in the small banner sized control, when the user click's it, it loads the new page within the same control, which is way too small.I'd like for any click in the control to load up the link in IE itself, outside of my app. Putting target=_blank so far hasn't helped. Below is the code that I am loading up in my control.

<!--/* OpenX Javascript Tag v2.8.2 */-->
<center>
<script type='text/javascript'><!--//<![CDATA[

[code]....

View 2 Replies

Javascript - How Window.moveto Function Working On Multiple Tab Open In Browser

Sep 24, 2010

I have to maximiize my screen for mutiple tabs. window.moveto is not working.I am using this code:

if(document.all)
{
top.window.resizeTo(screen.availWidth,screen.availHeight);
}

[code]....

View 1 Replies

VS 2008 Open External PDF File From Application?

Mar 22, 2010

I have a pdf that I want to be able to open when a button is clicked within the application that I have built in Visual Studio 2008 in .Net.

View 2 Replies

Make The Controls Inside The Application, Resize According To The Main Window?

Jun 3, 2012

Let's say I make an application where the window (by default) is 1280x720, but the user is able to resize as How can I make the controls inside the application, resize according to the main window?

View 2 Replies

Open Xml File Inside Application?

May 2, 2012

I have made a form that exports to xml and refer's to a xsl sheet to open into html format. Now what I want to do is build this program with these xml and xsl files in it. I also want the user to push submit and the xml inside the build opens up.

I understand the Diagnostics.Process.Start but for some reason its not referring to my xsl file its just loading all the values in order. My question to yall is how do i set a path inside my application for the xsl and xml to refer to each other.

Is it a dll i need to compile if so any guidance their. Im a beginner and am still learning.

View 3 Replies

Use Chrome Browser On Second Screen When Open Application

Apr 12, 2012

i need to use chrome browser on my second screen when i open my application i have added --kiosk to chrome shortcut on the desktop and would need to do this: proces.start (chrome.exe) but on my second screen is there any chance to do this?

View 3 Replies

Open Word Inside Application And Send Queries To MS SQL

Aug 6, 2009

I'm developing an application with Visual Studio 2008 (with visual basic), first of all, I'll give a brief of what I'm planning this module will do.

It's an accounting application, that I use to administrate some of my company's movemets. The application links directly with MS SQL server 2005, and sends queries to the database like: client name, employee Id, transacion type etc. Right now I'm developing a contracts module, wich is intended to be used with Microsoft Word 2007. We want the module to do the following: (It's a contract document; the document should get the variables from the application like contract type [that would change the template of contract used in microsoft word depending on the type], Client name, Salesman name, today's date, name of the company's representative)

1) After the data has been captured from the application (the application has a capture module that sends the info to the database), instantly send the capturer to microsoft Word, to a layout that has variable fields that should fill themselves with the database information ( I don't have a clue on how to do that )

2) The capturer should be able to change text in the contract layout and fix the variables info in case they were misstyped, adn when he/she saves the document; if there were any variables edited, they should get updated in the database; and the application should be saved with a name that has variables on its name ( 1)today's date in DDMMYY format, 2)First 2 letters of the client's name, 3)last 3 digits from tye contract number), save the file in a directory where all contracts are in .docx format (could use any frmat, it actually doesn't matters), and send the file location to the databse; to a table field named "file" wich only has the file's route.

3)From my application, when consulting the data, give the app access to the file directly; simply by getting the query form the database.

View 1 Replies

Open PDF In Net Window Application?

Feb 16, 2010

There three way to open PDF in .Net Window Application

1) Process.Start

2) MS Browser Control

3) PDF Com Copmonent

I do not want to use process.start (coz it not open in same window)

in 2 and 3 there is a big issue with focus. Both the control grab the focus

View 1 Replies

Why Firefox Browser Always Try To Open File After Published Application

Jul 11, 2011

Dear Expert, Why firefox browser always try to open my file after I published my VB application. This things happen in VS 2008? If anyone out there has the same problem like me. I have this problem since I installed firefox. If firefox has a problem with its browser when we use Microsoft Visual Studio? Do I need to set anything in my VS 2008 to avoid this thing happen?

View 10 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved