Opening Old Projects?
Aug 16, 2009
Well on VS it has the most recent projects which is only like four. WHen I want to access an older one I click open then click on the folder. I don't know what to click after that but whatever I click never brings the form up but it has it's name in the solution explorer in the top right.
View 1 Replies
ADVERTISEMENT
Apr 29, 2010
Over the past months I have been working on small windows forms applications and learning vb as i go along. The aim was to pull these altogether into one big application.
I am now at the stage of pulling these together I have created a new project (called MainMenu) and designed all the buttons and interface. I have added my other projects (SISApp, CURApp) to this project. File > Add > Existing Project. I can see these projects in the solution explorer.
Now my problem. How can show Form2 in the SISApp project when I click ButtonX in the MainMenu project.
I dont just want to show Form2, i want all the functionality and the database connection in form2 to also work etc.
View 1 Replies
Sep 20, 2010
or saving VB 2010 project for VB 2008 use
View 2 Replies
Mar 15, 2009
Removing projects from VB2008 start page recent projects list. The above list is getting clogged. How do I remove items from this list?
View 3 Replies
Jul 27, 2010
I am making a program that edits my website with the input that I put in. But, it is requiring multiple forms (obviousily), but I don't know how to make it close the one I am in while opening the other. For example: I have a form that opens first that requires a Username and Password, so nobody can obviousily use it without knowing them. When I submit the correct username and password and go on with the editing, I need the login form to close. I do not know the coding for this part. Is it:
[Code]...
View 6 Replies
Apr 21, 2011
I want to take opening balance when i open a report between date parameter it show the opening balance, actually i have three columns "description" "debit" "credit" in crystal report now i want to add 1 more field which come throuhd formula which is opening balance. i have a data of debit credit from 2006. but user choose to show the data from 2008 so i want that the balcne from sum of debit and credit side between 2006 to 2007 end come in the shape of opening balance in the report and then add the debit and credit side of report into opening balance. i put a following fromual bt not accept it sum ({vr_detail.debitT})-sum({vr_detail.creditT}) > {?strtdte}
View 1 Replies
Jan 16, 2010
i want to ask that wat is sln? and how to see sln projects...
View 2 Replies
Mar 22, 2009
I notice you need a wizard to at least start to convert projects from VB6 to .Net
I also see it comes with VS Professional
Is it able to be downloaded and run with VS2008 Express ?
View 10 Replies
Jun 8, 2011
How can I create a namespace and classes in it, then save it, and reuse the namespace in other projects? Do I have to click on Create Class Library in Visual Studio?
View 2 Replies
Jun 26, 2009
Im gonna develop an application s/w using VB.Net & Oralce for a small company with 4 employees and a MD.
Each has their own PC connected through a Hub.The task of MD is to check in the employees daily work progress & to calculate their incentives in daily basics...
And each emp should be able to check their daily incentives from their PC using the passwords provided by the s/w Now my doubt is. how should I show the daily incentives updates to all emps PC from MD pc?(i.e) if i install the s/w in all PCs, will they'll get the updates automatically? DOES VB.NET can be used here or should we use ASP.NET?
View 1 Replies
Aug 30, 2011
I have a .Net solution with 5 projects in c# and one in visual basic. I want to know whether there would be a gain of performance to convert my visual basic project to C# in the day to day while I compile my solution.
View 3 Replies
Jan 28, 2010
I want to start learning how to add menus to my vb.net projects. how to code and design them.
View 4 Replies
Sep 13, 2010
How do you add new ocx files so they can be used in your projects? I download some free ocx files and cant use them right now cause I can't get them in the side bar thing.
View 2 Replies
May 4, 2009
I have a project named "slnAllForKids" in Visual Studio 2005. I have another project named "AFKLogin." There is a page called index.aspx in slnAllForKids. I want to redirect from index.aspx to home.aspx in AFKLogin when I click submit button in index.aspx.
View 1 Replies
May 4, 2009
I am currently doing a project which is to be linked with another project. I.e., when I click on some button in my current project's page I should get a page from the other project..
View 2 Replies
Apr 14, 2011
I'm going to build a large project and want to create several libraries (DLL) for it. I don't want to merge them all in one EXE, but want to use seperate DLL files.I don't want those DLL's to be used by others, so these DLL's should be protected so that they can only be used in my own project.I was thinking of using some sort of password in the New() proc, but that doesn't work for shared classes.
Other solution I was thinking of: is it possible to check if the calling assembly has the same strong name as the DLL?These solutions are just one of my ideas. I don't know if those will work and am not saying that one of them is the way to go.What is the best approach to accomplish this?
BTW: I also use a obfuscator to protect my code.
View 1 Replies
Dec 19, 2010
Every time I open a project, it closes the project I had open. I would like to have two or more projects open at a time. I like to do this so that I can reference old code, etc. The projects are not related in any way, so I don't want them linked in any way.
View 10 Replies
Sep 8, 2009
I have two .NET projects in the same domain. The first project I create long time ago in VB.NET. Now I create another project that I built in C#. How can I set up my new project in the same domain so I can access the new forms that I built in C#. Do I need to submit the whole folder from the project? Do I need to change anything in the web.config? Right now I am getting this error. [PhoneControl] is the new project in C#. [URL]
View 2 Replies
Mar 20, 2009
can anyone of u tell me how should i integrate three different modules of my project into one.specifically which all files i need to alter
View 1 Replies
Oct 20, 2009
I have made a class library for visual basic, now I have a dll. How can I now load the dll into other projects?
View 5 Replies
Mar 18, 2012
I know its odd to post 2 different projects in a day but hence the lecturer asked us to do 2 in 1 week what else can I do so here is the problem he wants us to make a tic tac toe game that will ask for player 1 and 2 name then generate a random number for who will play 1st ok.. I though of a solution for that but it seems that player 2 always plays 1st also amm when I click on new game that recalls the code that you will see bellow the lblplayer1.text and lblplayer2.text don't reset to the new values untill I re-use the new game command what seems to be the problem? sorry for the bad explanation my English aint the best
count_turn = 0
score1 = 0
score2 = 0
lblscorep1.Text = 0
[Code]...
View 5 Replies
Nov 17, 2009
I'm currently writting an class for importing data into application database from various formats. Basically, I want to pass a file path and the class would give back an class objects and from those objects I'll insert data into database. The problem is that I already have classes for containing data and classes that insert data from data-classes into database ready in the main application. But at the moment I cant Access the source of main application (Im at home and remote connection is down is what im trying to sayJ ). I only have setup.exe of application and the application is already instaled on my home pc (I have .exe in program files).
Is there any way I can add a reference of this application into my current Project so that i can use the classes that are defined in main application?
View 2 Replies
Dec 4, 2009
I have a Windows Forms UI, a Class Library, and a WebService. I need to be able to pass an Enumerated type through each of these layers (SystemType). For instance, the UI passes the type to the class library, which then passes the type to the Web Service.My question is, where do I define this enumeration type so they all know about it.
Options so far:
- Each project contains the exact same enumeration.
- Put the enumeration in its own project and reference this assembly from each of the other projects.
View 3 Replies
Apr 19, 2011
I've been poking around in some projects written by one of our contractors, and he seems to be storing a lot of settings in the main "app.config" file for the application, using, for example:
<add key="SomeClass/SomeValue" value="False"/>
And then referencing the key value in the "SomeClass" class in "SomeProjectLibrary" using
ConfigurationManager.AppSettings.Get("SomeClass/SomeValue")
While this works, I guess, it also pretty much sucks. I was wondering if anyone knew of some more elegant way of creating variables in the "app.config" file, which could then be used across various applications within a Solution?
View 1 Replies
Jun 30, 2009
Do you use 'strict off' option, 'explicit off'? Or may be 'strict custom' and some other options like 'Implicit type. Object assumed', 'Late binding', 'Implicit conversion'?
View 8 Replies
Dec 30, 2010
I'm using Visual Studio 2010 and coding in VB.NET.
My problem is that I've collected all the modules I've written and intend to reuse and placed them in a separate folder. When I want to add a module from the above folder to any given project, it takes a copy of the module and places in the project's source code folder, instead of referencing the module in the folder containing all the other modules.
Is it possible to include a module in my project and leave it in the folder with all the other modules, so that when I improve upon a module, it'll affect all the projects that uses/references that module. Instead of me having to manually copy the new module to all the projects that uses/references the module. Right now I have multiple instances of the exact same module that i need to update manually when I improve code or add functionality?
View 3 Replies
Jun 5, 2010
have a project and i compile it to EXE file but when i want to use it in another computer we need to install dot net framework 4 how can i attac
View 13 Replies
May 20, 2011
When I download a project source file like DDDPDS in codeplex and after I do a build I am not able to run or debug the applications since I encounter different Exceptions.I think it has to do with my knowledge of configuring a first time debug. For example I never had the chance to download a project from codeplex and run it truely withoutdifferent type of exception before even the main form comes up.This is not the first time that a project will not startup after build.
View 2 Replies
Jul 19, 2010
I have a base class ("MyBaseClass") in a project called "BaseFramework" which is included in several solutions within the company. There are several derived class's in various projects throughout the company that inherit from "MyBaseClass". If I then create a List and add derived class's to it, it will not serialize. I realise that if I were attempting to serialize this list, and the base class and derived class were in the same project, I could simply apply the "XmlInclude" attribute to the base class and include all of the derived class's. This is however not possible across projects, because that would require a circular dependency.
View 1 Replies
Dec 2, 2010
How can I have code-sharing between two projects without making a dll?
The issue is: I have a tool that syncs users & groups from LDAP to a database.
Now the tool is a windows service, but testing it as such is very difficult and time consuming.
Which is why I made a console application where I can test the LDAP syncing, and then just copy the respective sourcecode-files over to the service project.
But... keeping the common files in sync is a bit of a problem. I don't want to make a dll, because this probably creates me a problem with the 3rd project, a windows installer (for the service) where I have to use ExecutingAssembly path...
Is there a way to share the code without making a separate dll? Automagic statical linking, so to say ?
View 6 Replies