Make Tabbed Window Forms Instead Of Using Multiple Ones?

Jan 30, 2009

Is there any way to make tabbed window forms instead of using multiple ones

View 1 Replies


ADVERTISEMENT

MDI Window With Multiple Child Forms

Mar 12, 2012

I have an MDI window with multiple child forms. The user can hide or display child windows by checking/unchecking in a View menu on the main form, calling on either the Show or Hide methods for that form. Each time I call the show method do I also have to specify myForm.MdiParent = Me, or do I only have to specify that once, ie does vb remember that the form will always be a child? it doesnt appear to be a form property any more (from vb6).Second question relates to forms themselves. If I have created a form at design time, is it more efficient to create an instance of that form using New, or simply show the form as it is by just loading it.What are the pros or cons, memory and speed wise? In my case I will never need more than one copy of that form to appear, I'm using VB2005.

View 2 Replies

Printing Multiple Window Forms?

Nov 27, 2010

I need your help in printing multiple window forms in a project. I have about 8 different forms in the project. I can print individual form using PrintForm. What I need is a function that I can call to print all or anyone form I chose.

View 5 Replies

Tabbed Webbrowser New Popup Window?

Apr 24, 2010

I have built myself a tabbed web browser but for the life of me I cannot get popups to work properly, they keep opening in a new Internet Explorer window instead of opening in a window from my browser. how to get a popup such as a login window etc to open in either a new window of my browser. how to implement it and get it to work..

View 1 Replies

VS 2005 Accessing The Controls Of Multiple Data Window(mdw) Forms

Oct 21, 2009

I have to make some automatization on a web server, I use Visual Studio 2005 Visual Basic Windows Console Application. I want to make a load/performance test of the web server, so I open several Internet Explorer instances, and I login the application, that is not a problem. But after that I have a mess on the page and I cannot make any more automatization...The composition of the page after the login is like this: I have the default form, another form and a multiple data window(mdw) controller, which dinamically can switches the forms on this part.

The problem is that I don't know how to access the controls of this mdw forms. I couldn't find much about this mdw controller and I am not an expert.

My code is here:

Imports System
Imports System.Diagnostics
Imports System.Web.Ui.Webcontrols

[Code].....

View 5 Replies

How To Make Multiple Forms

Jun 25, 2011

I have been working for a while on this. I am trying to figure out how to make multiple forms .Such as a login form that leads to a second form. [code]

View 13 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

Forms :: Make The Window Form Always Full Size Inside The MDI Container?

Jul 12, 2011

I had a master form which has a MDI container.When I was load the master form, I will also display another form inside the MDI container.But I was fail to maximize the child form to fix the MDI container. The image below is my problem Untitled2.jpg. I need to expand the form above to touch the MDI container border. (Full size in the MDi container)But I was fail even I was set the child form window state to Maximized

View 3 Replies

VS 2010 Tabbed Web Browser Bookmarks - Multiple?

Nov 28, 2010

i have posted here a few times on various issues and found all the help given was substantial to get the problem resolved, im working on a tabbed webbrowser and im currently adding a bookmarks feature, i am verry new to coding and require some simple i have a menu item "bookmark" and the options of that item are dropdown items "bookmark this page" "Edit bookmarks" "add custom bookmark"Codes for them are below:

[Code]...

the problem is when i click "bookmark this page" or any of the options within that bookmark menu it navigates the page to a search page and searches for "bookmark this page" then adds that search page as the bookmark :-S so really the bookmark thing is working but its bookmarking the wrong thing.but i cant find anywhere to fix this, im wondering if someone was willing to help me, im thinking the easyest way is to give someone my whole solution and files ect and that way evrything is there and can be looked in to

i also have some other problems that dont really bother me at the moment like history not showing unless u type something into the address bar but as a i said thats small and i havent even attempted a fix on it, so if i cant work it out ill come back .

View 1 Replies

Make Listbox To Be Used In Multiple Forms?

Apr 3, 2010

I am designing a degree audit program for school, and have a listbox where all the classes needed are contained. I have a separate form for each year (Freshman, sophomore, etc.), which also contain listboxes which are empty. The idea is to add the selected class from the first listbox into the empty listbox in the appropriate year form. However, to do this I would like to have the same listbox (the first one with all the classes) appear on each form, but still reflect changes made to it from other listboxes (classes transferred out of it).

To do this, would I need to create a listbox with global properties? Or would it be better to create a global function containing all the classes and have its contents called to the appropriate listbox?

View 12 Replies

Forms - Tabbed Webrowser Events

Aug 16, 2011

I have a tabbed webbrowser I want to add an event to it to make it so IE doesn't pop up when I click a link, with a normal webrowser that is easy but I guess I have to do a handler with the tabs being part of the browser and all. I have little experience with handlers. [Code]

View 4 Replies

Make A Variable That Is Recognised Through Multiple Forms?

Apr 3, 2011

I have a problem with my program. I wanted to know how i can make a global variable like an integer be recognised in any form so in essence linking to two forms together. Also how do I store an integer that has been typed by the user into the textbox? This integer will then be stored in the global variable. I have got two forms, one is for the user to interact with and the other is going to be used for displaying the global variable.

View 1 Replies

Multiple Forms / Make Each Individual Checkbox?

Jan 4, 2011

I need to make a program (or if someone wants to make it for me, feel free to do so) that has a starter form with a combobox where you can select different sizes, like 2x2, 4x4, 6x6 and so on. When i then press the button to choose size, a new form would pop up , with 4 different grids of checkboxes, (white, red, green, blue).Do i have to make each form (frm2x2, frm4x4) and make each individual checkbox, or is there some other much greater solution?Because, in the end, i don't feel like naming 576 different checkboxes for just 1 form.

After all that has been made, it would be saved to a text file, with 0 being anything thats unchecked, 1 is white, 2 is red and so on. And it would look something similar to this:

[Code]...

View 3 Replies

VS 2008 CSV Or XML - Make Data Available To Multiple Forms At The Same Time?

Nov 4, 2010

I have used CSV files before for a simple database of about 12,000 items - this was a simple one page form... Now I want to have the same database but with the data available to multiple forms at the same time.. eg.. Form 1 displaying persons 1,2,3,5,7 name, addy, phone etc and form 2 pulling info for persons 2,3,4,8... Is this possible with CSV files?? or even XML?... The only other thing is that I do it all in .NET 2.0....

View 3 Replies

VS 2010 Make Multiple Forms Have The Same OnClosing Event?

Aug 21, 2011

how to have all forms have the same on closing event with the exception of one form (Form1). I want the forms to show Form1 when one of the other forms is closed. I know there is a way to do it, I just can't work out how.

My code at the moment assumes that each form will have a boolean declared on it as false that will only turn true if you use a legitimate way off of the page (i.e. a regular button on the form). If you instead click the exit button on the title panel it will find the boolean is false and show Form1.

So the only problem I really have is getting the code to apply to all forms without writing it for all of them.

View 3 Replies

How To Make A Tabbed Form

Sep 6, 2009

how would i make a tabbed form?I like.....Understandable Answers

1 2 3 4 5
- - - - - Rate yourself And Have A Kitkat
5 5 5 5 5

View 1 Replies

Make A Pop-Up Blocker For Tabbed Browser?

Apr 18, 2010

How do you make a popup-blocker for a tabbed browser that allows you to see the popup or ignore it.

What i wanna do is make it so when a popup appears,a small form appears with 2 buttons.

button1 allows you to ignore the popup (form dissapears and popup does not show) and button 2 allows u to see the popup (form dissapears and popup opens in new window).

View 10 Replies

Make Favorites In Tabbed Web Browser?

Nov 21, 2010

How can I easily create History and favorites to my tabbed web Browser, so that they are a dropdown menu in my toolstrip and then users can click and the url would be entered into the textbox and the 'go' button performs click (I know how to perform click)

View 14 Replies

VS 2008 Make A Tabbed Webbrowser

Nov 3, 2009

so I am trying to make a tabbed webbrowser. I got the tabs working ok, but here is where I am stumped... Among other things, I want the URL box to display the current URL, however I can only make it display the any one of the tabs URL's at once. I have a class I made that holds the code for my custom webbrowser control, called "Client" and each time I make a new tab on my browser it creates a new instance of Client and adds a number to the end (Client1, Client2) I want to be able to manipulate the Client in each of my tabs, depending on the current tab that is selected.

View 4 Replies

Make A PictureBox Become The Favicon Of The Url On A Tabbed Webbrowser?

Apr 11, 2010

Whats the code to make the picturebox become the favicon of the website in the navigation textbox?

I found this code but it's for non-tabbed webbrowser.How would you change it to work for a Tabbed Webbrowser?[code]...

View 10 Replies

Make A Web Browser With Tabbed Browsing With 2008?

Mar 22, 2010

I've tried multiple times to create a web browser with tabbed browsing. I know that I have to use "tab control".

I have succeeded in creating a semi-tabbed browsing. People are able to add new tabs, but the webbrowser component only appears in one tab page.[code]...

View 1 Replies

VS 2008 - Tabbed Browser Automation - Send Commands To A Tabbed Browser?

Dec 7, 2009

I was just wondering how I could send commands to a tabbed browser. Such as navigation. I know of webbrowser1.navigate, but that will not work with the tabbed browser. I would also like to use an commands to automatically login. But I am not sure how I could do that in a tabbed browser either. Webbrowser1.document.getelementbyid does not work for this.

View 2 Replies

Make A Window Not Associated With The Application Minimize Or Maximize Its Window State In Vb?

Dec 12, 2011

If you have ever noticed in the Task Manager, when you right-click on the running task, you have many options which include 'Minimize' and 'Maximize'. Is there anyway to do achieve this in vb?

View 1 Replies

Forms :: Resize And Already Open Window To Automatically Accomodate A New Open Window?

Feb 24, 2009

if you guys have used office 2003 or better( i am sure all) then you would have seen that when the help window open it causes the active windows say of MS WORD to change accordingly so that this help windows fits with it along the right side and this functionality i want to implement in my VB windows application and have no idea how to do it Also i have seen this feature in GOOGLE DESKTOP GADGETS...

i want to implement that when my application opens which ever is the active window( of any application) snaps to the left and allows my application to fir in the right hand side i am developing my application in VS 2005 using Visual Basic.

View 1 Replies

Application That Has Multiple Front Ends Developed Using Windows Forms / WPF / ASP / Compact Framework Mobile Forms

Apr 9, 2010

I have the requirement to create an application that has multiple front ends developed using Windows Forms, WPF, ASP and Compact Framework Mobile Forms.I would like to be able to create a series of obejct representing the business logic and have this logic accessible from the various front ends available. My first thought was to use remoting as I'd like to be able to pass the business objects back and forth between client and server but the compact framework doesn't support remoting and also transferring a full framework business object to a compact framework business object doesn't seem possible.My next thought was to use web services but again the passing of business objects seems to be very hard to accomplish. Without doing this I would have to create individual web methods for each business operation.

Finally my next option is to use sockets and write the whole client/server logic within some classes and expose them to the UI/Business layer. My only problem with this is it is not scaleable should the number of clients increase dramatically whereas using remoting or web services I can host the solution via ASP.Net.Does anybody have an ideas on the best way forward for this or even have any input on how they would write an application that required a windows form, wpf, asp website and mobile device GUI all of which want to use the same business logic?

View 3 Replies

Forms :: Multiple Forms, Closing Events And Sub Routines?

May 25, 2010

I have googled high and low to find an answer to this but I must be searching wrong.I have an application which has a listview displaying some items that are stored in a SQL Compact database. I am using a second form to add new items to this list directly into the database.When the second form closes I want to call the sub in my first form to refresh the list from the database.

How can I get it to fire the form1 sub routine on the close event of form2

View 3 Replies

Multiple Forms Program Needs To Open Successive Forms Somehow?

Nov 3, 2009

i was doing a fair amount of programming many years ago, like 10 it feels like, so I'm sorely not up to date on how my newly downloaded Visual Basic Express expects me to communicate with it.I am writing a program that pulls a cell from a database after the user has gone through several forms to determine which cells they want. When I write it like that, it doesn't sound very efficient, but I've designed it this way for usability.Here's where I have a problem: Should I store the path the user takes in a string, an array, what?

Here's an example:Someone wants baseball stats and trivia. They run my program, main form pops up, they select National League button, the NL Form pops up. Now the way my program is set up right now, is there are two ListBoxes on the form, one is populated, and as the user selects a Team from ListBox1, it jumps to ListBox2. Once they've selected all the teams they want info for, they click a button Next.

What I now need the program to do is show the next form "Team: name" once for each team, and insert the name of the team on the form in the appropriate label which I'll have blank. This form will also do the Listbox thing except the first listbox will populated with Topics like HR Stats, Pitching Stats, Coach History, etc.

View 1 Replies

Forms :: Creating Paragraph Styles Of Text In Window Forms Text Controls?

May 8, 2010

I am trying to build a NOTEPAD/WORDPAD like application with vb.net on visual studio 2008.

I need an option to define and choose (MsWord, or CSS like) paragraphs styles, such as: "heading1", "green quotes", etc.

View 1 Replies

IDE :: Excluding Forms To Convert A Window Forms Application To Class Library Application

Jan 16, 2012

I am not able to find the Exclude Command in VB 2010 Express. I have no idea which version of Visual Studio it is working with. I've got one 217MB VB 2010 Express file and many 2008 VB Express files with one of them measuring 31 MB. There many other SQL files and .Net Files.

View 4 Replies

Forms :: Maintaining Multiple Forms Positioning?

Jul 26, 2010

Launch a dialogue window from the main form, and then another dialogue window from that dialogue window. If you close the second dialogue window and call dispose the main form vanishes under any other open windows. This doesn't happen by closing a dialogue window normally, but I am attempting (rightly or wrongly) to stop memory useage creeping up by disposing of it.

So, the question is - what method can be employed to maintain the position of the windows?

View 4 Replies







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