VS 2008 Do Not Want To Open Any Other Windows Or Tabs
Sep 28, 2009
I have created a web browser and am trying to get the link that is clicked that would normally open in a new window to open in the current window as I do not want to open any other windows or tabs. This is the code I have so far and it seems to work well kind of anyway, it opens the last url not the new one. Sometime it will open just an advert, it seems to open what ever link was last loaded on the site. [code]
View 5 Replies
ADVERTISEMENT
Aug 20, 2010
I find myself with the dilema of opening massive numbers of IE windows/tabs on subjects. This is really great content, but then I need to restart my computer. Rather than going into each and recording the URL/window name (which is listed in the window title bar, relating to the content of the web page), is there a way to capture that information within VB.NET (in a WinForm app)?
View 4 Replies
Mar 16, 2009
I just had to rebuild a PC and saved my old project files -- hopefully I'm going to be ok with a new installation. I just opened my new install of VB2008 and clicked on a project.
[Code]...
View 3 Replies
Jun 14, 2012
i have a login form , and another form with 2 tabs , if the user is admin ( compared with the database ) i want the two tabs to open , if not only on tab !this is my code so far and its not working ?
Code:
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
[code].....
View 1 Replies
Sep 23, 2009
I'am trying to create browser, and I need help with tabs...
[Code]...
View 5 Replies
Dec 31, 2011
I am building a web browser with tab control using VB 2010. I have everything working good so now I want to have it save the browser tabs when I shut down the browser and have them re-opened when I run the browser again like Chrome or Firefox would do.
View 2 Replies
Jun 7, 2011
How do you get all open tabs shown in a KryptonListbox
My fail attempt :TabpagesHtml.Items.Add(Form1.SuperKryptonNavigator.Pages.Item(0))
View 2 Replies
Jan 15, 2012
I am building a web browser with tab control using VB 2010. I have everything working good so now I want to have it save the browser tabs when I shut down the browser and have them re-opened when I run the browser again like Chrome or Firefox would do.
View 5 Replies
Nov 24, 2010
im making a tabbed web browser for private use which is basicly done apart from the fidly bits however i want to be able to hold down the "ctrl" key and press t to open a new tab like google chrome and firefox, im verry new to programing and dont even know where to start, so far i have been watching youtube tutorials and reading tutorials on here which has got me to the point where i can actualy use the browser and its verry handy but this would be an excelent feature.the way i open new tabs at the moment is by click a button called "new tab" using the following code. [code] these i could probably work out with google searching but im not to bothered if i can get it to work.
View 3 Replies
Oct 29, 2009
Has anyone implemented any effective solutions to address the numerous issues that are caused by IE8's session sharing functionality? We've gotten very close by writing a custom http module that compares session and view state values, but our efforts are thwarted by things such as accelerator keys and unaccceptable copying of session objects.
View 1 Replies
Mar 25, 2012
I am trying to return two menu tabs using System.Windows.Forms. I have tried using an array and tried using control.add but I cant seem to get this working. What am I doing wrong?
Public Function MonitorsInit() As System.Windows.Forms.TabPage Implements LabTech.Interfaces.ITabs.MonitorsInit
Dim TP As New Windows.Forms.TabPage("Ticket")
Dim TP1 As New Windows.Forms.TabPage("Ticket1")
TP.Controls.Add(TP1)
Return TP
End Function
[Code]...
View 5 Replies
Feb 2, 2010
I just created an idle lockout screen for my software (it's financial software, so if the program is inactive for 5 minutes, the login screen appears again).My question is... is there an easy way to hide all the other windows in my program that may be open? So let's say they are in frmData, and they have the dlgOptions screen open, with the dlgOptions_SelectItems dialog open from dlgOptions. There are 2 dialogs open on top of frmData. And, they are all opened with .ShowDialog().So, let's say they have that many windows open, and then leave there computer for 10 minutes. After 5 minutes, the login screen appears. But all that other stuff is in the background.Is there an easy way to "hide" all the other open windows, and just show the login screen, and then once login returns DialogResult.Yes, then show the forms/dialogs again? I could do this by delcaring instances of each form in a main module and doing it this way. But that sounds like a pain in the butt. Also, I don't know If I could hide frmMain while a dialog is open from it.
View 3 Replies
Mar 22, 2009
this error when i open my program in windows XP ....
View 2 Replies
Dec 1, 2009
how to code a button to open a windows console application with it's usage eg. 'Sample.exe -d file.txt' where sample.exe is the console app '-d' is an option of it's usage and file.txt is just a file which sample.exe runs like it has to run from the given commanding option(-d)..
View 3 Replies
Aug 14, 2009
How can I make it so when I click a command button It will open up Microsoft Windows XP Paint??
View 3 Replies
Mar 16, 2009
I was wondering if there was a solution to replacing the tab control's tabs with custom tabs made in Photoshop. I know there are plenty of super expensive programs that can do it, but I was wondering if there was a way to do it programmatically. I was thinking that maybe it could linked in some way with a .DLL?
View 1 Replies
Jan 20, 2010
I'm sure most people on here have opened an OpenFileDialog or SaveFileDialog and set the SelectedPath property to point to some directory...
Has anyone done this on a Windows 7 machine and been able to point the thing to a Library? If so, what do you set it to?
View 2 Replies
Mar 6, 2009
My code is basically a file parser/editor and it handles most files fine as they hold a handful of records concerning family members. However there are a few files that crash when trying to deal with them. Here is the problem.Each family member record creates 3 tabs that hold an average of 3 group boxes each. Each group box holds an average of 3 text boxes.So each member record creates 3x3x3 = 27 text boxes and some files get up to 289 family members which = 7803 text boxes.
The problem is the rare file with 400+ member records = 10,800 text boxes which causes a crash due to using up all the window handles. Each member has a separate tab page (with 3 subpages) but really only a dozen or so member pages are visible in the GUI with scroll arrows to move through them so I was thinking of somehow making the GUI a scrollable window so the tabs get built, displayed and disposed as the user scrolls left and right through the member tabs.
The files are parsed into a 3d list DataList(x,y,z) where x is the page number, y is the group box number and z is the text box number. So all the data is available. The code then traverses MyList and builds GuiList(x,y) where x is the page number and y is the groupbox number with all the textbox.text linked to MyList(x,y,z) locations so all text changes are reflected in the MyList.
I already have a memberCount variable and I am thinking of building, say, the first 30 member tabs with the middle 10 being visible in the GUI. If the selected tab > 20, then dispose of the first 10 tabs and create tabs 30-40.I am thinking I will keep all the member tab pages so I don't have to deal with inserts and indexing problems but just dispose all the group boxes and text boxes for tab pages out of view. I already have a deep clone sub that clones members when the user wants to add a new family member and I am thinking I will have to add something similar when a tabpage is passed in for disposal, it traverses and disposes each text box, then disposes the group box for each group box on the tab page.Additionally, another routine will rebuild the group boxes from the data held in MyList(x,y,z) when a tabpage(x) is passed in.
View 2 Replies
Jul 7, 2009
I was wondering if it was possible to have a program open Firefox, and have it open a bunch of tabs that all go to a link with a video, and then have it automatically play that video?
View 4 Replies
Aug 25, 2009
I have use VS2005, I have open windows explorer from code. when i click on search button it open New windows, and in this I click on All files and folders in Look in : combo by default C: and D: drives are set.
[Code]...
View 1 Replies
Mar 15, 2011
I'm making a tabbed browser and I want to get favicons in the tabs. I have a picturebox by the address bar that shows it just fine, but I want it in the tabs also. The tabs are owner drawn. Can I use the image key to display the favicon? If so, how? I've tried drawing the image in, but it draws it to every tab instead of just the one. Is there any way around this?
View 8 Replies
Aug 23, 2009
How do i make my button open a program and make it windows size?
View 6 Replies
May 18, 2009
I'm trying to make buttons that will open each of the "special folders" in Windows Vista. Here's an example:
Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
Process.Start("explorer.exe", Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments))
End Sub
As you can see in the above code, the button will open the Documents folder. My problem is the only folders this method can open are the documents, pictures and music folders, while I also want to open these folders below:
Downloads
Videos
User folder (aka the folder that has the user name on it)
Computer (aka My Computer in XP)
how to do that?
View 13 Replies
Jan 25, 2012
How do I open a Windows 7 Library like Documents, Pictures, Music, Videos and all other custom libraries from my app? I tried opening explorer.exe LibrariesDocuments but it doesn't work.
View 6 Replies
Aug 26, 2010
my application the user is going to be able to choose which tabs are going to be displayed, but I need help[ with this.
View 1 Replies
Jul 17, 2009
I wanna know How to Create Tabs in Web Browser To all Different Sites At The Same Time.
View 39 Replies
Oct 6, 2009
I have a form that has many tabs and I have some buttons just bellow the tabs, but if I could move those buttons and place them inside the tab I would save some space bellow and I could extend on the tabs. So is there a way of moving controls from one tab to another depending which one has focus.
View 6 Replies
Apr 25, 2010
I'm trying to search through all tabs to find a specific text. if the text is found, the tab will be hidden, or shown.
I tried this to hide:
btnHide
Dim txt As Object
Dim tabp As TabPage
For Each tabp In TabControl1.TabPages
[Code].....
View 8 Replies
Aug 24, 2009
First off I hope this is in the correct I am creating a calculator software in Visual Basic 2008 Express edition. I don't know if it is .NET or not, I assume it is? I downloaded this version: [URL]...Now, I will have tabs at the top. The tabcontrol is named "Tabs". On each tab I will have a different category of mathematical functions. Now, I need the backspace, clear, clear entry, equals, and all the numbers 0-9 to appear on every single tab. Is there a way of doing this without creating a new button named "Backspace2", "Backspace3" for tabs 2 & 3 for example?
View 11 Replies
Sep 21, 2009
I've been looking for an option where I could select the position of the tabs but didn't find nothing for it. as I create a new tab it goes on my tab list as the last tab, how to set the position of it?
View 8 Replies