Organize Application Are Going To Be Able To Separate Every Program / Webpage (over 400) From Each Other

Oct 18, 2010

We have an ASP classic ERP (very large application) that we want to rewrite using ASP.NET. I am looking for a way to organize the application so we are going to be able to separate every program / webpage (over 400) from each other. Every program needs to be independent because many developers will work on the project at the same time.Visual Studio seems to make a DLL for every assembly so I was wondering if it's a good idea to make a huge solution with one project per DLL.[code]This way, we would be able to deploy every program separately without altering the others. We would also have over a thousand DLL to manage...

View 3 Replies


ADVERTISEMENT

A Program To Organize Programs?

Dec 21, 2011

I'm working on a program, just to learn a bit more about programming. The program's function (if I manage to do it) will be to accept drag/drop files and create a link to them within the program itself. For example: I drag and drop the .exe to a game I have installed; the program then creates a shortcut within itself; the shortcut is displayed in the program with the name/icon; if I click the icon within the program, game launches.I've already manually coded something to this same effect, but it doesn't automatically add new shortcuts/buttons so I have to keep going back in and reprogramming another button every time I install a new game/program. I'd like to be able to just drag/drop and be ready to go. Any ideas on how I can get this function? I'm using Microsoft Visual Studio 2010.

View 9 Replies

VS 2008 - Code - Application That Will Organize The Movies And Their Release Dates

Sep 18, 2009

I am making an application that will organize the movies and their release dates for me and that it will notify me whenever a movie is released. So far I have the layout almost done with some parts missing.

BASICS

1. At the top as you can see I want the text to display the current day and having the tool tip to say "Today is Tuesday 19, 2009" while I want the text to be centered.

2. I want to have a poster with a specific size (dimensions) that will be displayed when the movie is selected at the data grid and I want the buttons to be able to select the previous or next data grid line, meaning next/previous movie.

3. I want to make the buttons either check all the boxes or uncheck them all. And I want the validate button to be able to compare the date of the selected movie with the current day and tell me If it was released today or not.

4. I will make a menu at the top that will be giving you the ability to add movies or select and delete movies, while when adding being able to specify a poster for the movie.

5. I want every time that I run the app to automatically check the dates and either ask me to remove those who have been released some time ago or give me a message like "Movie was released today".

View 3 Replies

Separate Data From A HTML WebPage?

Jan 16, 2012

I have a full source code of a webpage. The following code on richtextbox1 from a webpage that is relevant to what we need.

[code]...

View 14 Replies

C# - Write All The Control Events In A Separate Class File In Different Layer Rather Than In Code-behind Of Webpage?

Nov 16, 2011

Can we write all the control events in a seperate class file in different layer rather than in code-behind of web-page ?

View 1 Replies

Force Separate Application To Foreground?

Jan 29, 2010

How would I go about forcing a seperate application to the foreground?

View 1 Replies

Opening A File In A Separate Program?

Jun 18, 2012

I need to be able to open a selected file (upon the user selecting it from his/her computer) in different browsers (CHROME, FIREFOX etc) I have downloaded the portable versions and placed and have figured out how to get them to open, but am not sure how to open the file selected in each seperate browser. is it possible to dictate the position and size of each window that opens? Because preferably I would like to be able to divide the screen up with each of the browsers selected.

View 1 Replies

Separate Character Of Some Word Using Program?

Nov 18, 2011

The assignment is to separate the consecutive characters in whole word .

View 15 Replies

VS 2010 With Separate Update Program?

Jul 1, 2010

Well need to make a separate update program and I need some way of getting my main application's version. I thought about making a text file with the version but I can't write to the program files folder with permission, thats why I have a second program. I also though about making the update program's version the same as the main application, but that doesn't seem right because I have to update the update program. So is there a way I can get the main applications version inside the update program?

View 5 Replies

Clicking Button In Separate Application Not Working?

Nov 7, 2011

I am trying to automate an application and I need to respond to a prompt that is being issued by the application that I've started. The application is issueing a message and I'm using some api controls to respond so that it doesn't stop but they are ignored. here's the code I'm using and I'm hoping someone will look at it and tell me what's wrong. The odd thing is it works on my laptop (Windows 7 Pro 64 bit) but fails on my desktop maching (same OS).

If p.Start() Then
Dim nWnd As IntPtr
Dim ceroIntPtr As New IntPtr(0)
Dim Wnd_name As String

[code]....

View 1 Replies

Use Threading In Application To Put Two Functionality In Two Separate Threads?

May 2, 2009

I have one applicatin developed in my ap i have two main functionalities

1)Copyig Folders & Files from one source to destination

2) And I am showing status of copying in richtextbox and progrss with progress bar

Here i need to use threading bcz i am copying files from one server to another server and some large size files while copying my application always gone to stuck and i am not able to see status of copying and progressbar so how i use threading in my applicatio to put two functionalitis in two seperate threads.

View 4 Replies

VS 2008 : Force Separate Application To Foreground?

Jul 14, 2006

How would I go about forcing a seperate application to the foreground?

View 8 Replies

Forms :: Create Separate Parts/winforms Of The Same Application?

Sep 19, 2011

is it a bad idea to create separate parts/winforms of the same application (using the same SQL Server DB) in different executable files. For example for a School IS: A Receptionist App, A Teacher App, A Principal App and so on.

View 2 Replies

String Manipulation - Separate Three Fields Of The Phone Number And Display In Three Separate Text Boxes?

Feb 23, 2012

I created a telephone number form where the user enters the telephone number in a text box as (nnn) nnn-nnnn. The first 3 digits in parenthesis are the ISD code, the next three are the area code and the last four are the local number. I need to separate out these three fields of the phone number and display in three separate text boxes labeled appropriately. Now, suppose the user enters the phone number in a text box as a continuous string of 10 digits, where the first three represent the ISD code, the next three represent the area code and the last four represent the local number. I'm lost as how to change this string into the form (nnn) nnn-nnnn. This is what I have

[code]...

View 3 Replies

Call/run Excel Macro Within A Separate Visual Studio Application?

Dec 14, 2010

I'm looking to call an excel macro (excel version 07) within a separate visual studio application (visual studio express 2010). Basically, a user clicks a browse dialog button to select a xls or xlsm file which is then added to a listbox. Next, I would like the macro to run when another button is clicked. The macro looks at the first column in excel and moves the listed .tif images from one folder to another. I referenced the excel libraries, but seem to be getting hung up on a few code statements (''''ERROR see code below). I would like to run the macro within visual studio for any selected excel file or add the macro somehow to the selected excel file and run it.

'Here is the button click procedure

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
filenames = lstFiles.SelectedItem

[Code].....

View 5 Replies

Create Separate Object Instances For New Objects In Separate TabPages?

Sep 17, 2010

I have a TabControl object on my form with many tabs created in code (TabPages) and my problem is that the same objects that are in the initial TabPage needs to be in the other TabPages created in code, I have this done in code when the user clicks the 'New Tab' menu option, however the same code is used for any new tabs created. The problem created here is that I have an event against one of the objects that appear in the other TabPages, but because the same code is used to create any new tab pages, the event will only work on the newest tab page, if that makes sense? By the way these objects that appear on the other TabPages are properties at the top so events can be handled against them in the respective subroutine.

[Code]...

View 5 Replies

Possible To Have Separate Combo Boxes That Will Give Separate ID Values But Using Same Table?

Apr 30, 2010

I'll get straight to my problem - I'm currently coding in Visual Studio.I have a table (countries) with the columns ID | Name. The table is filled with around 28 records.I also have a form with 4 combo boxes (set up as 1,2,3 & 4) that I want the user to select. These combo boxes will display the names from the table countries. I then want to use the selected names in the combo boxes to Insert into their corresponding ID into another table. For example England would have the ID 1, USA the ID 2 etc.So, is it possible to have separate combo boxes that will give separate ID values but using the same table? At the moment I can't seem to find a solution.Eventually the form will have more than 4 combo boxes so I don't want to use separate bindingsources for each combo box.

View 5 Replies

Show One Selected Entry Of Datagridview On Separate Form In Program?

Jul 15, 2011

I want to show selected entry of DGV on Separate form in VB .Net.When double click on one row of DGV then this row must be open in new form. How can I do it?

View 1 Replies

Unit Test Private Functions From A Separate Project In Program?

Mar 15, 2009

As I develop code, I often want to unit test some of the building blocks of a class even if they are normally private. If my unit tests are inside the project, I can use "Friend" to accomplish this and still keep the functions private for normal use. But I would rather move my NUnit tests into their own separate project(s).

View 3 Replies

How To Organize Code

Aug 15, 2011

I have an auto generated class file whit many partial classes (auto generated from an xsd schema). I use VS2010 and VB.NET.[code]I'm developing a part of and business application. The application is used for registration of persons data, invoicing, accounting, and so on. The part I'm developing is a reporting system to the authority via wcf services. In my part I will use VB.NET but the other parts of the system are developed in VB6. We use an SQL server and nearly all the business logic is located at the server side. Because I'm used to use VB6 its difficult to grasp all the OOP things I need to remember to write the code as it should be. In my part of the application I get an xsd schema from the authority and auto generate my schema class file from the xsd file with xsd.exe. I see that it's a much better solution that you suggest, but when I looked at my auto generated class file after reading your answer I see that every partial class has a MyBase = New line in the constructor.I can use this in a way, like you suggest? Sorry for not understanding this earlier! If I understand the behavior of MyBase correct, I can write [code]how should I generate the xml based on the xsd? I want to do this for multiple xsd schemas. Isn't it the a good solution to deserialize the xsd (with xsd.exe) to a class, create object of that class and populate it with data, and then serialize the object back to xml?

View 2 Replies

How To Organize Textboxes

Sep 14, 2011

A form has 10 textboxes,The form receives data,based on the data received some texboxes are visible or not with the .Visible Property. lets say for example, 5 textboxes are invisible, the other 5 textboxes will be visible and there will be some space between textboxes and it will look weird.for example in this image:I want to organize the remaining textboxes, so it would look like this:

which textboxes are visible or not can vary, it could be the first, second or fifth, or the last four, etc. So, how can i organize the remaining visible textboxes?

View 5 Replies

Cash Register Program With Separate Forms For The Items And The Display Form?

Jan 15, 2011

I have this cash register program with separate forms for the items and the display form. The code works untill you press the button 2x. It says 5.5 + 5.5 = 11.5??? Can you fix this code?

CashReg.ListBox1.Items.Add("Item 1")
Dim cash As String
cash = (5.5)[code]....

View 3 Replies

Are Modules Used To Organize Code

Apr 11, 2011

I have been brought onto a project where a large amount of code has been written. Most of the code is appearing in the MainWindow.xaml.vb file (yes, this is a wpf project but I think the question is appropriate for this forum). The folks who developed the previous versions in Visual Basic 6 told me that they organized their code by using Modules. I was not aware of this practice and I have actually never even used modules. Can I use modules in this way so that I can logically group different areas of functionality within the application? Or is there a more preferred method?

View 2 Replies

How To Organize Data In Dataset

May 4, 2010

I have created a table in a dataset and inserted data through for...loot statement. but i want to sorting or ordering data on a particular field. How it to be possibel please give some tips.

In addition to that when I add column in a table I mention only column name, but I can't maintion field type or data type. when I mentioing it gives a error. so only I have had to work on only filed name.

View 2 Replies

VS 2010 How To Organize Classes

Jun 28, 2011

I need some help with how to organize classes in VB.NET. I have a class called parent with methods for adding, deleting etc. But I also need a method that returns a list of all the parents, a list with parent objects. Where do I put this method? Do I put it in the parent class or do I need to make another class called parents?

View 1 Replies

Organize XSD Dataset Layout In Designer?

Jul 22, 2010

I've got several pretty massive dataset's with a lot of tables/relations in each.I've came in this morning and one of the datasets has sorted itself into a very readable Vertical form with all relations and tables displaying perfectly readable.Is there a command to "Arrange" the layout of the tables?

View 4 Replies

Read And Organize Data From File?

Sep 12, 2011

I am reading in part information from a CSV File. When I read the data in, I have a display form/window that displays the data as:

"D159483,172 Cylinder,9/12/2011,2:38:53 PM,,Brian,30,6"

I would rather have the data look like[code]...

View 1 Replies

Application To Be Notified When A Webpage Changes?

Dec 18, 2010

I'm trying to write an application that will notify me when a webpage changes. I used a web browser form and it opens the main website fine. You have to click a submit button to get to the page that I need to track. After this page opens I copy the text I want to track into an input box and then I need to refresh the page every minute or so to see if the text changes.The problem I am having is I cannot get the page to refresh properly. I send the WebBrowser1.Refresh() command but my ap stops responding, but only sometimes. If the refresh works then I get a popup window where I need to send [enter] to get the page to

View 7 Replies

Program Changes Text On A Webpage

Jun 5, 2012

For web development usually when a person makes a web site for someone else they have a program if the customer wants that can edit the text on a page. How would this be done? Accessing a ftp server by chance?

View 2 Replies

The PrintDocument Control - Organize The Records In The Leaves

Mar 7, 2012

My report document...Print. I have a code to organize the records in the leaves, but when a records pans more than a line that belongs to the same registeris dependent not displayed correctly..

Well this is the result that I own:

Private Sub PrintDocument7_PrintPage_BeginPrint(ByVal sender As System.Object, ByVal e As System.Drawing.Printing.PrintEventArgs) Handles PrintDocument7.BeginPrint

array7 = base7.relatorio_Imovel_Cadastrados

[CODE]...

[URL]

This is what i need: [URL]

View 2 Replies







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