Load A Program Into A Tab?

Jul 11, 2011

Could I load a program into a tab?

I have a program and have been trying to put it in to modules (instead of just one massive peice of code) and was thinking I could make some of it as "mini programs" and run them when needed.

1) Is that possable?

2) Is it a good idea? (the "mini programs" would not be needed to run the main program just used very rarely for changing setting etc)

View 7 Replies


ADVERTISEMENT

Program Saving User Selected Image And Reloading It Upon Program Load

Jul 4, 2012

I have my rpg, still, first time working on it n ages, and I want each user to be able to set their own personalized picture background for the game...

each character in the game has its own dedicated folder for each file that the character has relating to it...

what I want to know how to do, is to have my game copy the loaded/chosen background image to their respective characters data folder, and have the game reload/reset the games default background image, to the one piced by he player...I am having a hard time figuring out how to do this however...I've tried a lot of different things...and nothing is working yet...

here is my example code right now:

[Code].....

View 3 Replies

Program Files Are All Mixed Up - In Class Saved Program In With Load Of Other Test Programs For The Same Assignment

Jan 8, 2010

In class i saved my program in with load of other test programs for the same assignment and got everything mixed up i finally figured out what was what and loaded the program in Visual Basic. Now my program doesn't recognize one of my forms when i try to access the design view of it. I hit run for the hell of it and the program runs with errors of course but the form1 "the missing one" shows up with all the buttons etc and i can use it.

Heres the link to the files. [URL]

View 3 Replies

Program Fails To Load When Publish Database Vb Program?

Apr 13, 2012

i have a application that i designed for an assignment which uses a DB (ACCESS) However when i publish the application it fails to load even though the application completes. I have managed to find that it is the database that is not copying over, how do i solve this (the db is located when debugging and is also in the project files)

View 3 Replies

Forms :: How To Load A .swf From Program

Sep 9, 2009

Basically what I want is for the program to have an extension/directory called "Flash" and then when you click button one for example it will get that file. Anyone know how to do this and make it work? I have the following AxShockwaveFlash1.Movie = "/flash/flash.swf"

View 3 Replies

Load A Folder In A VB Program?

Sep 5, 2010

I'm trying to make a custom skin maker for a program I'm working for. The concept is, you provide all the images needed for the program in a folder and then load that folder into the program which then sorts out each image in their respective areas. I know how to load files, but instead of making the user load the files one by one I'd like them to be able to load them from a folder.On a related note, I'd also like to know if it was possible to allow my users to move their controls around the program. For example, say they'd like their exit button in a different location as it'd look nicer with their skin, is there a way to allow them to move it? Particularly, it'd be nice to have a check box that enabled or disabled the ability to drag them around so they don't accidentally drag it when trying to click it.Also, how could I save their changes to this skin so it'd load up the same every time without overriding the default skin.

Finally, I have a piece of code that allows me to drag the form around as it has no normal border but I have a button that keeps it on top at all times, I'd like that button to also disable the ability to move the program while active and restore the mobility once clicked again. Here is the code used to move the program if that helps any.

[code]...

View 11 Replies

Load A Program With Windows?

Sep 13, 2011

I am trying to do a program in which I would like that program load with Windows. Ok, When I restart the computer and when I arrive to the desktop, program did not run. I am doing all this in Vb 2010.[code]...

View 4 Replies

Load Pictures Into A Program?

Aug 12, 2009

What is the best way to do? Load the pictures to the program and using many different forms? or just make a folder to the pictures and load them by using the [code]....

View 15 Replies

Load Program On Shut-down?

May 17, 2009

I'm trying to make a system on my computer in which I can find out log-on versus log-off times, I already know how to load a program at log-on, I just need to know how to load a program at log-off or shut-down.

View 4 Replies

Load The DLL Ati2edxx.dll Into Program?

Nov 16, 2011

I'm trying to load the DLL ati2edxx.dll into my program to access temperatures from my ATI video card. Every time I load it I get the error "A reference to 'PATH' could not be added. make sure the file is accessible, and that it is a valid assembly or COM component".

why I may be getting these errors? I tried loading the DLL up in C# as well and got the same error.

The two gentlemen on this link seemed to get it to work just fine.

EDIT: It appears that the DLL is 32-Bit? How can I load it if im on a 64-Bit operating system?

View 5 Replies

Make A Program Load Before Another?

Apr 26, 2011

im making a game and i want it to start first but i made the game first so i cant seem to get the second form to load first?

View 2 Replies

Program To Load The Text File?

Apr 3, 2009

I've been staring at my code for a few hours, and cannot think of the next part.For my final I need to make a hangman program Pretty much I have a button to load a .txt, a label, a multiline textbox(which will be hidden later), and a normal textbox. I need the program to load the txt file, and randomly select a word. Then have the program put a " - " for every letter in that word The program loads the txt file,to the multiline textbox,but I don't know what to put next. EDIT:After looking at my book i noticed it shows how to make a hangman program, but without loading a text file. So, all I need is the code that will make it select a word randomly from the list, and i think I can do the rest..

View 2 Replies

Load Program Inside MdiParent?

Dec 7, 2010

How run a program inside a MdiParent?

View 5 Replies

Load Program With A Specified URL When A Button Is Clicked?

Jul 31, 2009

Is there a way to load Internet Explorer with a specified URL when a button is clicked?

View 3 Replies

Make To Load The Program From That Welc.vb?

Nov 24, 2009

i want to make 1 slide for welcome message i make new .vb named: welc.vb make to load the program from that welc.vb for code it put:

Public Class Wel Inherits System.Windows.Forms.Form Private Sub Wel_Load_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

[Code]...

How to make it when the slide finished to close the welc.vb and start the form1.vb

View 5 Replies

Program Crashes When Try Run It - Won't Load Form

Apr 27, 2010

I've just finished creating a program in VB 2008, and when I run it, the opening form will load but when I try proceed I get this error:

[Code]...

View 2 Replies

Program Does Not Load The Embedded Dll At Startup

Mar 16, 2012

I want to use my Dll from the program's resource:

Private Sub MyApplication_Startup(ByVal sender As Object, ByVal e As Microsoft.VisualBasic.ApplicationServices.StartupEventArgs) Handles Me.Startup
Dim app As AppDomain = AppDomain.CurrentDomain

[code]....

My problem is: the program does not load the embedded Dll at startup. I have no idea what may the problem, because I use this code in my older programs and that worked. But now I just got an object not found (the object is in the embedded Dll) error message.

View 7 Replies

Program That Load Some Data From Internet?

May 17, 2012

I have a little problem whit passing delegates. I have a program that load some data from internet. When the loading starts i create new thread for this. What I want is, when the loading ends I want to call one procedure in my form. So when I initializing class I want to pass that procedure. But I have problems with implementation. This is the pseudo code off my class and how it should look like.

Public Class GetArtistInfo
Public Delegate Sub RefreshInfoSub()
Public RefreshSub As RefreshInfoSub
Public Sub New(ByVal RefreshInfo As RefreshInfoSub)
RefreshSub = Address Of RefreshInfo
End Sub

[Code]...

View 5 Replies

Load An XML Document Using A Relative Path In Program?

Aug 10, 2009

In VB.net when loading in XML documents using System.Xml.Xmldocument is there a way that I can specify a relative path to the file?[code]...

The XML doc I'm trying to load is in the same directory as the VB class. But I'm having trouble accessing it without using a full path to the XML doc.

View 2 Replies

Load And Activate Events For A Form In Program?

Nov 18, 2011

I am having three forms

1. Main page

2. Input page

3. Output page

I want load event to be activated whenever coming from Main page to Inputpage and activate event when coming from output page to input page.But what i am getting is that only for the first time load is activated and for all other only activate is called.

View 2 Replies

Load Array From A LINQ Query Using Program?

Oct 25, 2010

I am new to LINQ, but have been able to query SQL using LINQ to SQL and then I can data bind the results to a GRID or DROPDOWN LIST with no problem. What I would like to do is load a column into an array. I have seen examples for something like this in C#[code]...

View 12 Replies

Load Data After Selection In Dropdown In Program?

Mar 12, 2012

I am reading data from a mysql database table.I have populated a dropdown with the relevant slections, i want the rest of the form to load data once i select the plate number .[code]...

View 1 Replies

Load In Image / File From Location Of Program?

Sep 7, 2009

If I create an array of bitmaps, something like Dim PictureArray(10) as New Bitmap..How do I then load my pictures into the array? If I try Picture Array(1) = "("c:image.bmp") I get an error.Also, can someone remind me of how I load in an image/file from the location of my program? Do I just use ("image.bmp") or do I need to specify curdir or something?

View 15 Replies

Run Program Access Database Load To Treeview

Aug 15, 2011

I start program for a library and I have to use Treeview and Access DataBase..I find methode to load database to treeview but the problem is save changes after I run program Access Database load to treeview and I edit tree but how I can save changes before I close program?

View 1 Replies

Unable To Load DLL On Computers With Do Not Have Program Installed

Dec 13, 2007

I created a program using visual basic. For some functions the program accesses a dll which was created using visual c++. When the program is run on a computer that does not have visual studio installed, functions which make calls to the dll generate an error: Unable to load DLL 'filename.dll': This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. (Exception from HRESULT: 0x800736B1).Reinstalling the application does not help, and when the program is run on a computer that does have visual studio installed, calls to the dll work as expected without generating any type of error.Is there some component that is installed with Visual Studio that I need to attach to my program installation? Is there some way I can create or access the dll such that it does not need this component?

View 10 Replies

VS 2008 How To Load Program Instalation Files

Feb 14, 2010

i was thinking yesterday that is how do i load program instalation files thro vb.net 2008 like when i click a button in vb .net It instals a program within the vb.net

View 4 Replies

C# - Load The Settings The User Used The Last Time When The Program Starts

Jul 18, 2009

My typical application has a couple of textboxes, checkbuttons, radiobuttons, and so. I always want to load the settings the user used the last time when the program starts, and also want to save the settings as the users clicks "Save settings" or closes the application. When the user attempts to save the settings, I'll have to check each of the controls for input errors (sometimes they have to have a max length, other times only caps, other times other things, there isn't a rule for them all, everytime it'll be different), and only if everything OK i'll let him save the options. If there is something wrong, no option is saved and my error-control provider will pop up a description of the input type info that should be put in that control.

I've been designing this from scratch for all my projects, but it's being a pain to do it. So I'd thought maybe now was the time to do some library to help me. I thought initially that maybe it'd be a good idea to have all the controls on my form that are going to be part of this save/load process to have an attribute associated with them, something like this [Code]

View 2 Replies

Creating And Writing To Text File Upon Program Load

Oct 27, 2010

I want to create and write to a text file upon Program Load...this is my code (does not work):
Dim path As String = "C:Documents and SettingsAll UsersDocumentsThe Bible Study Tool est.txt"
My.Computer.FileSystem.CreateDirectory(path)
'create and write to settings file
My.Computer.FileSystem.WriteAllText(path, "Some meaningless Text!!!!")
The directory is there, but the text file is not....

View 8 Replies

Made To Load A Program With An Incorrect Format" Error

May 3, 2010

My pc is 32bit and run vs2008.Once I try to install my windows app into a client laptop which is 64bit, I got an error said that

An attempt was made to load a program with an incorrect format

View 4 Replies

VS 2008 Setting A Delay - Allow Another Form To Load After My Program Display's

Feb 28, 2010

I need a way to allow another form to load after my program display's an introduction cut-scene without loading the form in the middle of the cut-scene. Sort of like a delay.

View 2 Replies







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