VS 2008 Create Expandable Forms?

Feb 13, 2010

IN vb.net, how would i be able to create expandable forms? For example, you have a form , and you click a button, expanding the form to a new size. i currently hav a button that uses a while loop to increment the increasing and decreasing size to make it look animated. any other options?

[Code]...

View 4 Replies


ADVERTISEMENT

VS 2008 Play Around With NickThissen's Expandable GroupBox Control

Nov 17, 2009

I decided to play around with NickThissen's Expandable GroupBox control.Expandable GroupBox//When I add a control to my form and debug or build the project, the Text of the GroupBox changes to the default. The Name and anything I put inside of the GroupBox stays the same, however.I also noticed that the control resizes to it's default size when I build and/or debug.

View 4 Replies

.net - Given A Large Number Of Objects, Create Multiple Forms In Designer For Them Or Use Code To Create The Forms?

Dec 29, 2010

If I have a large number of classes, each similar to the other in certain aspects (they all share a common base class, but each does things differently), and I need to create Windows forms for each to allow easy changing of their values through a GUI? Create one matching form for each object in VS' forms designer, Or Use code to create the forms dynamically at runtime.

#2 makes the most sense to me, because a lot of these objects will share very common features of the form, notably "Ok" and "Cancel" buttons. But one object might need to draw a textbox on the form while another might need to draw a combobox. Not to mention, if I want to put icons on the "Ok" and "Cancel" buttons, I'd have to do this for each copy of the form in designer, and that sounds like it could get out of hand quickly.But is drawing forms through code sane? VS' forms designer is pretty sophisticated and designed to make life easier. Am I wise to consider ignoring its functionality and diving into the trench warfare of forms design through code? Or are there examples of automating form creation based on an existing object's properties?

View 1 Replies

Datalist With Expandable Row For Comments?

Feb 23, 2009

I am completely Goggled out on this one. We currently have a datalist consisting of rows of data for our company. What I need to do is to add a link into the individual cells of a particular column called candidate profile. The link will be View Notes. When that link is clicked, I would like to have a new row expand right below the existing row to allow the additions of comments in the empty row. When the user comes to the page and there are existing comments for the row of data, have it expanded and give the user the ability to expand, or close the comments as they see fit. I also need to figure out the best way to allow the user to enter in the comments as well.

View 5 Replies

Using An ExpandableObjectConverter For An Expandable Property In An App?

Oct 5, 2011

i'm using an ExpandableObjectConverter for an expandable property in my app, but it doesn't work as expected.it seems to work inconsistently, but it's not working reliably.

here's the code:

Public Class timeConverter
Inherits ExpandableObjectConverter
Public Overrides Function CanConvertTo( _

[code].....

View 8 Replies

VS 2010 Expandable Row In Datagridview?

Mar 13, 2011

I'm maintaining a Master Table call "MaterialList" in Datagridview Windows Form now I want to ADD Expandable row option to that Datagridview.

For your information : MaterialList Table is link to MaterialSales Table with Primary Key MaterialCode. By the way if I click any item of MaterialList the Sales Details should appear in that GridView. I'm using Visual Basic 2010 and Database SQLServer.

View 1 Replies

Developing A Small Application Using VS2008, The Mdiparent Has A Expandable Panel With Button?

Feb 15, 2011

I am developing a small application using VS2008, the mdiparent has a expandable panel with Button 1 and Button 2 on it, which opens up child form 1 and child form 2. ( The two child forms are maximized within the mdiparent form)

The problem is, button 1 opens child form 1 and button 2 - child form 2. I cant open the two forms randomly. I have to close the topmost form to access the other forms below it and vice versa.

View 8 Replies

Create Web Style Forms In 2008?

Dec 11, 2010

How to create web style forms in visual basic 2008

View 1 Replies

Microsoft Visual Studio 2008 Will Not Create Resourse File For Forms Application?

Apr 19, 2011

The environment will not create a resource file for a newly created Windows Forms Application. When I add a button Visual Studio displays a dialog "File Exist". That'sall, plus an OK button. There is no file name or the file name is in unreadable characters.The dialog comes from Visual Studio because the title is "Microsoft Visual Studio".There is no resource file so it must be that the resource file cannot be created.I uninstalled and reinstalled Visual Studio 2008. It did not change anything.I believe the problem was caused by opening the same project rapidly twice on an i7 laptop. I have done this unintentionally before and I can testify that unpredictable

View 2 Replies

Create A Data Forms With Forms Wizard In VB 2005?

Jan 21, 2010

How to create a data forms with the data forms wizard in VB 2005

View 6 Replies

How To Create Actual 'wizard' That Allows Users To Use It To Create Their Own Forms

Dec 1, 2010

I've designed my own encryption application in VB 2008 that has a free tools section where users can choose a particular wizard to use from the drop down. The javascript wizards display the code required to put in their own sites. I already created wizards that users can well, use.I see people have their own "contact form wizards" on their websites all the time. Where users can use the wizard and get the displayed code to copy and paste on their sites. But trying to locate source codes to these things is very aggravating on the web.So what I want to do is create my own "form wizard" like out of javascript, that allows the user to put in some information then get the displayed code to put in their own websites. I'm not looking for the generator such as the online form generators.But the javascript source code(s) for the generator itself.Then I could simply put a form generator inside of my VB-app, that will allow the user to use the wizard, then get the html code to paste in their own sites. Preferably not the PHP one because the php backend is very difficult to put in a VB app.I know that it can be done. For example copying a web pages source code then putting it inside a string, then calling that string from a button click that will open the javascript page in the webbrowser inside the VB app.

View 2 Replies

VS 2008 Adding A Method To All Forms Existing Forms Without Changing Their Code?

Jul 28, 2009

just wondering if it is possible to add a method to all forms in my project without having to do it on one form and Inherit all my other forms from that one

View 3 Replies

VS 2008 : Get 2 Forms To Close At Different Times Using A Timer On Each Of The 2 Forms?

Apr 21, 2010

i have a problem with trying to get 2 forms to close at different times using a timer on each of the 2 forms.

This is my form layout:

Quote:
frmMain
Frm1
Frm2



Frm1 and Frm2 are identical to each other. FrmMain has 2 buttons on it. One button to call Frm1 and the other to call Frm2.Frm1 and Frm2 each has a timer. It counts down to 0 and then does a .close(). However, if i pause between clicking the second button they both seem to always disappears at the same time.I would do something like this...

Click on the first button (showing the Frm1 form)

wait about 10 secs...Click on the second button (showing the Frm2 form)they both are shown on screen...hen they both disappear at the same time.... which shouldn't happen since i clicked the Frm2 box 10 seconds AFTER Frm1... So Frm1 should hide before Frm2 does...but it does not.

[code]....

View 6 Replies

Create A Folder That Can Contain Forms?

May 12, 2012

Can forms be put into folders (inside Vb 2010) and still be accessed?For example.. the resources are contained in a folder inside the solution explorer...am i able to create a folder that can contain forms?

View 4 Replies

Create An Array Of Forms?

Sep 11, 2009

how to creat an array of forms : i tried this thing out:

View 11 Replies

Create Control ( OCX Or DLL ) To Run On Both Web And Win Forms?

Feb 18, 2009

I want to create A control Which should be a OCX or DLL and it should be able to run on both ASP Pages and Win forms.Which Template should i use.

View 2 Replies

Create New Forms At Runtime?

Jun 16, 2010

I'd like to know how I can craete new forms at runtime.

Lets say I press Command1, a new form would open with a text box and a button on it. If I click Command1 again, another form would open with a textbox and a command button.

View 3 Replies

Create Program With Different Forms?

Jul 13, 2010

i want to create program, with different forms, in that it would have a main form in which if the user decides to select other forms, it would change right in the main form, so disallowing the user from noticing that he/she is viewing another form.

View 9 Replies

Forms :: How To Create Control

Jul 4, 2011

How to create this control? What control is this that in the VS 2008? untitled.JPG

View 4 Replies

How To Create Borderless Forms

Aug 8, 2010

I am trying to make a borderless form so I set the "Form Border Style" property to "None". So then I ran it and could not move it around. How do I overcome this? Btw I already made the close button and etc.

View 13 Replies

Create A Class In Code That Contains Forms?

Mar 18, 2012

To me the answer to this question will be stupidly simple, but I cannot find it. I want to generate child forms to do simple tasks from my main form. I want to be able to create and destroy these child forms as I use the main form. I decided to create a class of the child form, with its own constructors and destructor. When I tried to do this using the Class Library Module, I could not access the Windows.Forms class to create a form.

View 4 Replies

Create A Simple Application Which Has 2 Forms?

Apr 20, 2010

I wanted to create a simple application which has 2 forms.the first one contains a combobox which has the list of names of reports.now i select this report and click on next which takes me to the 2nd form.there i have to enter 4 values(or parameters)like the date from and date to and other 2 values...using these 5 values i want to retrieve the respective reports from the archive folder based on these parameters...i just know how to select and move to the second form from the first..how do i achieve my goal of retrieving the pdf files.i want the result in a table form which will have column names of the parameters i pass and the last column with the report pdfs.

View 6 Replies

Create And Save Data To New Forms?

Jul 1, 2010

New to vb.net coming from vba. I am working on a mass balance model which collects a handful of 'user' data (less than 10 records) and then applies various equations to the data and records/reports the resulting values. I think I have a pretty good handle on the basic operators for a single 'user', having pretty extensive vba knowledge. However, I am having difficulty saving the new 'user' data and creating new 'users'. I need to keep the app as simple as possible for deployment to machines with nothing more than 2.0 and I do not really need a database, just a simple method of creating multiple 'users' as objects.

View 5 Replies

Create Forms And Connect Them To A Database?

Nov 18, 2011

how to create forms and connect them to a database etc. When you see some applications for using databases you dont just get the form in the middle of the screen you get a sort of form inside a surrounding platform. A bit like running Access DB inside the runtime environment.How do I do this in VB Express?

View 5 Replies

Create Multi-forms At Runtime?

Nov 24, 2010

Background: ok I have an app that hides in the system tray. During its operations in the background it can try to invoke an outside app several times.. and I need to track when the call errors out.. I was using messagebox's but for some reason if the app hidden the messagebox's dont come up and goto the forefront. So in reading about this I read I should just use a form to do it.. so I did.. works fine.. well works fine for one error.. but if the user tries to do 3 of the same operation.. and lets say first errors.. second works and third fails.. using one error form wont work.. since I diaplay the error one.. then need to display error 2.. I need 2 error forms so they can click OK on both.[code]...

View 2 Replies

Create Object In Forms During Runtime?

Oct 4, 2009

Trying to create an application where the objects in a form are created during Form.Load depending on the content in an ini-file.The objects I have in mind are textboxes and labels for a start.

View 5 Replies

Create Windows Forms From Tables?

Sep 10, 2009

I install Visual Studio 2008 Professional Edition and I don't see on the templates the Data Form Wizard...

how can I install the template?

I want to used to create windows forms from my tables.

View 2 Replies

Forms :: Create A 'button' In A Textbox?

Oct 24, 2010

My aim is to have a textbox in which a page of information is already written for the user to read. This box will have a vertical scrollbar, so I can't simply superimpose a button over the textbox. What I would like is to be able to have certain words underlined and in a different text colour (similar to a hyperlink), which, when clicked, will throw up a pop-up box.The purpose is to create a glossary such that if a new word is used in the textbox, I can allow the user to click on it

View 4 Replies

Forms :: Create A Application That Don't Need To Be Install

May 12, 2010

i, im new to this forum, but i know hot to use.i have 2 question

1- i want to create a application that make the same job that do CCleaner software, but i don't know the full code.can anyone tell me?

2-hot to create a application that don't need to be install

View 1 Replies

Forms :: Create A Custom Event?

Nov 17, 2010

I'm pretty sure i'm not doing this right but i hope by asking this someone can show me the right path.I've created a function that creates a label and 7 checkboxes arrays . So depending how many names i get from my database, it creates that many for the label and the other checkboxes.

Now my function is inside a module which i call in my Class Form during "Load".

So what i want to do is be able to code in an event where the user checks on one of these

View 2 Replies







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