Create An CPL Project?
Sep 18, 2009I can create a control panel app (cpl file) in VB.net
View 2 RepliesI can create a control panel app (cpl file) in VB.net
View 2 RepliesI have one successful VB program in VS Studio 2010 Express Now, I want to add features to it but keep the original as is. Is there a way to save the current project with a different name without loosing the path, resources used and code? I did try to copy the project directory to a different directory named "TMP" but it does not work.
how to create a new project from an existing project?
When I try to create a new project (any type), an error message appears saying "The filename, directory name, or volume label syntax is incorrect. (Exception from HRESULT: 0x8007007B)". Does anyone know what this means and how to fix it? This same program (VB 2005) is on my other computer and it works fine.
View 2 RepliesFor extra credit I need to create a project for my class. I am here asking what is some of your ideas on a project I already did a calculator and I don't know what else to do one one
View 3 RepliesI'm currently working on building a program that will take a MS Access database system produced by my company and create a VB.Net project with all the forms in it (obviously the code should be manually done, but to save time the forms and controls can be produced automatically).I have tried Googling and seem not to be able to find anything about this (which probably means I wasn't searching with the right keywords), I was wondering whether anyone knows any good resources on how to create the VB.Net project programmatically as I already know how to do all the access stuff.
View 1 RepliesCreate a project that contains a Pet class. Each object will contain pet name, animal type, breed and color. The form should contain text boxes to enter the information for the pets. A button or menu item should display the pet information on a separate form. Hint: Use a ReadOnly property on the input form to pass the object to the second form.
What I have done so far is create a new class with the name Pet and have instantiated each object with readonly property. I have also created another form where the information entered by the user will be displayed. Guess I kinda need to know what would be the next step? And I want to ensure what I have done so far is correct.
[Code]...
Calculate and display the total cost of the sale, as well as the total cost of all sales and the average cost of all sales. - Clear the box for the number of yards, the total cost, and return the quality, padding, and installation settings back to their defaults. Use constants for the cost of each quality of carpeting ($4.95 for Fabulous Flat, $8.95 for Precious Plush, or $12.95 for Super Sculptured), the padding charge ($1.25 per yard), and the installation charge ($3.50 per yard).
[Code]...
create plugin for my project.
View 1 RepliesSo every time I try to start a new project i get an error: No template information found.See application log in Event viewer for more details. To open Event viewer, click Start,click Control Panel, double-clickAdministrative Tools, and then double-click Event viewe
View 2 RepliesI'm struggling to create a crystal report in a VB project,The objective of the report is to return one row of multiple database tables.
This is working by a parameter selecting an ID number in a CASE table, the CASE table contains some forgien keys related to CUSTOMER,ORDER tables etc.., i want to select these forgien keys and return the one row that they relate to in the different tables i.e get all the data from the CUSTOMER table, from using the forgien key, without having to enter another parameter.but am struggling with the syntax.
This needs to be dynamtic, as any ID number able inputed.
so far all i have got is ...
({?CaseID} = "ALL" OR {Case.ID}={?CaseID})
which simple reurns the single row in the CASE table.
how can i create a desktop shortcut for my vb.net project that i've done.?my project is a Sudok game.. .i mean how can i open it without using Visual programs?
View 8 RepliesI want to create a file setup for my project that combine such as sql express,crystal report and .NET framework.
View 5 RepliesI have to create a new project and in that project I have to create a inherited form from an older project. When I choose an inherited form, it says that I only can choose a dll file. But in my older project there is only an exe file. In all subfolders I cannot find a dll file. Can anyone help me to create a dll file for the older project so I can inherit that file in the new project.
View 6 Repliesany one to make a complete exe file of my vb project its urgent need for me.
View 2 Replieshow to create my first project in visual studio
View 2 RepliesI'm working with BCM to create Business Project. I'm able to create the Business Project but what i would like to do that to create the Business Project with it's ItemProperties Vaue. For example : BusinessProject.ItemProperties("Project Start Date").Value = dtpStartDate.Value.Date. It gives an error (System.NullReferenceException: Object Reference not set to an instance of an object).
But when i edit the existing Business Project it allows me to add ItemProperties Value.
how to create a own project file in my program?
Like my filetype is "*.test" and if i open it with my program my listview and other things will load info.
When I try to create a new Project (File --- New Project --- Windows Application) I get the following error:The filename, directory name, or volume label syntx is incorrect.Exception from HRESULT: 0x8007007B)I tried changing the default directories for projects, that didn't work.
View 15 RepliesHow do I create separate files in a VB Express 2010 project?[code]...
Query 1: When creating class files, the VB Book by Loffelmann & Purohit (p 172) says, put the class in a class file that has the same name as the class. However, as shown, I want to have two or more related classes in this file. Do I need a separate file for each class? That would get cumbersome!
Query 2: Can I create a file similar to MyOutput.vb so that both MyModule and MyClass can include statements like[code]...
i was create the .exe of vb.net project with sql server in backend. when i install it any other computer that time it is not connect to the data base. whta i do for that.
View 1 RepliesI need to create two diff app
1.Windows application
2.WPFapplication
in a same project.I need to call forms and pages of both app and integrate them ex How to call WPF page from a win application)
I have a question for many years.. Suppose if I Deployed a project using Setup Project. After some time, I added some features or modify it on customer demand.
1) How do I make a upgrade project so that the user runs the setup and the new changes are upgraded on the client system.
2) How do I automatically create ODBC System DSN Connections.
Do anyone know how to create a .exe file from my vb.net project? I do not want the one in the /bin folder. This is because i want it to be able to run my application from a single EXE file.
View 6 RepliesI was wondering if a project, program, could make .exe files with the stuff u add into it, so basicly another form on a diferent .exe
View 6 Repliesi develop a project in vb.net using visual studio 2005 professinoal edition at front end and SQL Server 2005 professional edition at back end. now project is complete and i have to give it to customer. so how do i create its exe file now. i mean that how to give it completely to user?
View 6 Repliesis it possible to use a dll in my project without having to create an instance of the dll? for example I have a dll that has three basic math functions:
[Code]...
I have a relatively small project and I'm using a 3 tier architecture. Now I'm thinking about on how to split up some of the functions in different data classes.
For example I have a User class and a Group class. My User class has a User.GetGroups function and my Group class has a Group.GetUsers function. Would I put the first in the UserData class as UserData.GetGroups or in GroupData.GetGroupsForUser or perhaps a completely separate UserGoupData class?
I hear COM here and there and I want to know is COM and a COM dll the same thing, and most important: when I create a Class library project is that a COM component?
View 3 RepliesI have an error that keeps regenerating when the form is closed and open back up.
1) Windows Form Application (Project: TestProject)
2) Add class in same project:
Public Class Test : Inherits System.Windows.Forms.TextBox
3) Drag and drop into the form within the project (works fine)
4) Close form
5) Re-open form... then error about the class Test in the project not defined
Actual Error: Type 'TestProject.Test' is not defined.
Is there a best way around this besides creating a separate project and putting the 'Test' class in that separate project and referring that separate project in the 'TestProject'?
Modified Added: By the way... i've used Global.TestProject.Test... but then again another error generate with the custom property within the 'Test' class.
As you can see thats a properties window for an object, but is there a way to customize the properties, so that everytime I create a new project some custom values stay the same?
View 4 Replies