Work Out Conversion And Loop Back To Menu Options?

Oct 24, 2010

I have this code below that I called a Conversion Wizard Because it converts temperature, weight and currency. It works so far but I am stuck. I don't know how to apply the correct loops to it. For example, Do While and Do Until. I want it to be able to work out a conversion then loop back to the Menu-options. So that you can do as many conversions as you like and end when option 4 is selected.

Option Explicit On
Module ConversionWizard
Sub Main()
Dim userOption As Integer
Dim farenHeight As Integer
[Code] .....

View 4 Replies


ADVERTISEMENT

Hypothetical Controls - Options Checked As Enabled In FrmConfig Effects - Controls (like Buttons/menu Options) Are Enabled In FrmMain

Nov 26, 2010

As i'm learning more and more about developing ive just got my head around creating classes and modules, i started wondering about something to do with configuration of applications where deployment is in a more diverse environment say in a company where different branches dont need access to all parts of a program, so i thought id throw the question out there in a basic sense and get some feedback. so i can go off and do some more reading and learning.

So the scenario in my head is like this.

So we have for arguments sake FrmConfig which is the master configuration form, then we have FrmMain which is the root menu our application general user interfaces with. So here based on what options are checked as enabled in FrmConfig effects what controls (like buttons/menu options) are enabled in FrmMain.

View 2 Replies

Add The Menu Options That Appear?

Aug 26, 2010

I want to learn how to add the menu options that appear when you click your right mouse button.So far I have a normal menu strip control, rich text box control and I have added a ContextMenuStrip control.

I have not got a clue on how to set the properties for the contextmenustrip on the richtextbox control, so when the user clicks the right mouse button the contextmenustrip appears.

View 4 Replies

Menu Options Using Threads?

Mar 29, 2010

I would like to have threads created and perform selected operations for a menu. Basically there are 3 options and for each option, a thread should go ahead and perform that operation whilst the option is available to select other options if the operation is running and not interactive. I have tried it and after correcting a lot of compiler errors its not running correctly with one thread hanging and not giving the option to select another process.

[Code]...

View 1 Replies

Right Click Menu Options

Mar 31, 2011

The user right clicks on my picturebox object. Good.When that happens, some code of mine executes and will generate a list of options.Then a menu appears where the mouse right-clicked, made up of these options.When the user clicks on one of these options, the menu is deleted and some code is run given the option index as parameter.How can I tell when the user right clicks? I can see an event handler for "click", but that includes left clicks.How do I create one of these menus? I mean, go ahead and right click something. That's the kind of menu I'm looking for.

View 2 Replies

Using Threads In Menu Options?

Mar 29, 2010

I have an app that has a console menu with 2/3 selections. One process involves uploading a file and performing a lengthy search process on its contents, whilst another process involves SQL queries and is an interactive process with the user. I wish to use threads to allow one process to run and the menu to offer the option for the second process to run.However you cannot run the first process twice.

main...
Dim tm As Thread = New Thread(AddressOf loadFile)
Dim ts As Thread = New Thread(AddressOf reports)

[code]....

View 2 Replies

Where To Start In Terms Of Making Those Options Get Pushed Down / Come Back Up

Jul 11, 2011

I'm just starting to use vb .net (using 2008 express edition) and I want to make a menu for my program that will be like a sidebar that when you click one of the options, a few sub-options will fold out that will push the main options below downwards - and then the sub-options will disappear and the options will go back into place when something else is selected.I am not sure exactly where to start in terms of making those options get pushed down/come back up..

View 3 Replies

Open A Form From A Menu, Closing It, And Reopening It From The Menu Doesnt Work?

Jun 22, 2010

This is going to be hard to explain but oh well.I have a form with a menu. When I hit option one, it opens another form (form2) inside that same form (mdiparent). When I hit X on form2, then try to open it again from the original form with a menu thru the menu, It says it cant access a disposed object. Here is the code: Form1:

[Code]...

View 1 Replies

Dropdown Menu To Change Available Options

Oct 13, 2011

My latest project is to write an app that has a drop-down menu where I can choose different office locations. Once a choice is made I want a handful of different buttons which would vary between location choice. When a button is clicked it will install a printer. I've got the button and install part down but don't know where to start with the dropdown and showing different options upon choice.

View 2 Replies

Making Two Menu Options Exclusive?

Jun 9, 2011

My app has a nice menu strip, with two tool strips, one containing file options, and other contanining options options (oO)The bad part is... the options toolstip has two subitems that should be excluse. Like: I click one, other gets unclicked and become not functional.I've tried it, but with no sucess.

View 4 Replies

VS 2008 Best Way To Create An Options Menu?

Mar 31, 2010

i have various options in my app, some complex some not, these 2 save on application exit and reload on application start themes, and layouts. There selected via a comobox each.So onto the question, how does everyone create options menus? With out using a menustrip/toolstrip?

The method i was using , was to have a picture box show a panel when it was clicked on, the panel had all the various options etc on it. This idea worked great, but meant working in design mode was a pain because the panel and everything on it had to be moved round to see the items under it on the form.

So today i decided to see what other ways i can implement a menu, and i changed it so the picturebox/button now opens a dialog, and all the options etc are on that dialog, this works great except options such as the combobox 1 and combobox2 last used setting (text data binding) doesn't load when the application is started, they only load when you go into the options. Which defeats the point, if a users going into the options just to load the settings its useless them been saved.

The time to initialize the dialog (for it to appear and be click able) is 5 - 15 seconds, not alot i know but the 1st method of using a panel it initializes instantly, but then its never really closed just made hidden, so i uses more system resources.So how does every one else implement there options menu?

View 6 Replies

Add Custom Options To Standard Context Menu Or Use Standard Options In Custom Context Menu

Dec 16, 2010

I have a text box field for which I want to use a couple of custom commands accessible via a context menu. I can add my custom context menu to my text box, but then I lose the standard windows ones (i.e. Undo, copy, paste, etc).

What I really want is a context menu with both my custom options and the standard windows options. I want that to take place only within my application (i.e. not like a shell extension).

View 2 Replies

MDI Child Form List / Sub-Menu Options

Jan 19, 2012

As you can see from the screen shot I have managed to get MDI Parents / Child forms working, and managed there to be a menu option on the Parent form that displays all the Child forms opened at the time. What I was wondering, and as of yet through research haven't discovered, is there a way when the list of windows is created, if a user highlights any child in the list it opens a sub-menu from its name (eg. Rename Window, Center Window, etc).

View 4 Replies

MDI Child Form List / Sub-Menu Options?

Jun 23, 2012

MDI Child Form List / Sub-Menu Options

View 12 Replies

VS 2010 - How To Add Options To Item Right Click Menu

Aug 31, 2010

If you right click a item.. it brings up the menu of things to do with it. How do I add something to that?

View 3 Replies

Make A Right Click Menu And Have It Access Options Like Copy, Paste?

Mar 14, 2009

I'm using the code from the following site to create a file manager within my app: [url]Which, I think is great. When I first started programming, I wanted to use this code, but I couldn't understand it. I love how now, I understand most of it and know how to implement it. Which, I owe much of my progress to some of you at this site Well, back to what I was saying. I want to be able to make a right click menu and have it access options like copy, paste, etc. I'm sure I can figure that out, but I can't seem to figure out how to make a right click menu.I thought I could manipulate a menustrip, but I wasn't sure how.

View 3 Replies

C++ - Conversion - Not Quite Giving Back The Right Data

Jun 15, 2012

Here's the function I'm a bit mystified by(Little rusty bitwise operators)

void two_one(unsigned char *in,int in_len,unsigned char *out)
{
unsigned char tmpc;
int i;

[CODE]...

I marked the two places that I don't quite understand. How to convert those pieces to Vb.Net.

Update: So this is what I came up with, but it's not quite giving me back the right data...Anything look wrong here?

Public Function TwoOne(ByVal inp As String) As String
Dim temp As New StringBuilder()
Dim tempc As Char

[code].......

View 2 Replies

Conversion Between Cartesian To Polar Coordinates And Back?

Nov 8, 2011

I Have been, for a long time, try to convert between Cartesian(Or Raster) coordinates and Polar coordinates.I have found plenty of sites, forums, etc. that explain how to do it, but have had a hard time putting it all into code as I was never great at math.I'm using Visual Studio 2010 Express, and Visual Basic.

View 4 Replies

Go Back To Previous Menu?

Sep 26, 2010

I have created a console application. So this is the problem. I have set a main menu, when I input A, it sends me to menu A, but how can I go back to the main menu? What is the correct code should I use?[code]...

View 2 Replies

Menu Bar Back And Fore Colour?

Oct 13, 2010

I attached a image of menu bar. I set the background color which is the form background color. But when run the application the color is still default.

View 3 Replies

String.ToCharArray() Stored In StringCollection Conversion To Numbers And Back

Aug 25, 2009

I have a string which was converted to a char array and stored in a stringcollection, how do I return the numerical value for the character in each string? How can I reverse this process, getting the character from the numerical value?

I know I could code a Select Case statement, but that would take a very long time as I need to cover every character a person could want to conceivably use in the English language, including punctuation. Is there already a method built into vb.net for doing this?

View 2 Replies

Make The Microsoft Office Button Menu Excel Options Button Invisible?

Aug 12, 2009

I am creating a VBA application using Excel 2007 and would like to make virtually all of the standard Office and Excel menus invisible to the user and present to the user only my custom menu controls. I have been successful in doing this for all objects on the Ribbon as well as those on the Microsoft Office Button Menu, with the exception of the "recently opened files list" box, that also has the "Excel Options" and "Exit Excel" buttons on it. Can anyone tell me the name of the object for this control so that I can make it invisible?

Here is the relevant snipit of XML code that is in my CustomUI.xml file:

[Code]...

View 1 Replies

Options To The User In A Menu - Create Sub-string - Replace A Word In The String

Feb 28, 2010

Problem: Your task is to take input from the user in string and give the following options to the user in a menu.

1- Find a String
2- Create sub-string
3- Erase a portion of a sting
4- Replace a word in the string
5- Count number of words and characters in the string without spaces.
6- Capitalize first character of each new sentence and convert the rest
of the characters to lower case.
7- Sort all the words in alphabetical order. (Use Bubble sort algorithm to perform sorting).

To perform all the above mentioned tasks you can only use pointers. Create a function to perform every task.

View 1 Replies

Conversion From C# To VB Work?

Feb 23, 2010

The original code:

public List<Contact> GetContactListEntityCompiledLINQ()
{
if (entities == null) entities = new CompanyEntities();
ObjectQuery<Contact> contacts = compiledQuery.Invoke(entities);
if (NoTracking) contacts.MergeOption = MergeOption.NoTracking;

[Code]...

Error 1 Extension method 'Public Function ToList() As System.Collections.Generic.List(Of TSource)' defined in 'System.Linq.Enumerable' is not generic (or has no free type parameters) and so cannot have type arguments.

View 2 Replies

Conversion To MB Does Not Work?

Feb 15, 2011

I have the below code (which goes through the C: drive and gets file info data) and want to convert the length to a "respectable" number - i.e MB. The problem is that the line below does not do anything to the code.

Line is: strlength = strlength * (1024 / 1024)

Private Sub btnclick_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnclick.Click
Dim strFilesinfo As System.IO.FileInfo

[Code].....

View 1 Replies

Is There A Way To Convert The Solution Back To Work With VB 2005

Dec 30, 2009

I want to let a Visual Basic 2005 project be edited on Visual Studio 2010 Without Conversion is that possible?

if there is a way to convert the solution back to work with Visual basic 2005.

View 9 Replies

Reset A Loop So The When It Loops It Goes Back To 0?

Apr 8, 2011

In the first loop once it cycles through once it does not reset the data so it continues to hold the previous data so therefore the outcome is incorrect. Can I reset it to start back at 0?

[Code]...

View 4 Replies

Get Mouse Back And Forward Buttons To Work In A Browser?

Nov 17, 2009

If MouseButtons.XButton2 Then CType(TabControl1.SelectedTab.Controls.Item(0), WebBrowser).GoForward()End If I've tried this code under Form1_load, but it's not working. I didn't make my browser using the webbrowser control, for the record.

View 2 Replies

One Menu Work In Ten Forms

Jun 1, 2009

i want to put one font dialog and one color dialog in one content strip menu that work in every form i have.

View 1 Replies

VS 2008 Catch Exception Write To Log And Then Get Back Into Loop?

Aug 5, 2009

How do i catch the exception, write to log and then get back into the loop?[code]i want that app keeps running although an exception is thrown.

View 11 Replies







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