Create A Framework To Be The Basis Of All Our Drafting Toolsets?

Jan 4, 2011

I have been asked to create a Framework to be the basis of all our drafting toolsets. The approach I think is best is to outline all of the Classes that will be required (Text, dimensions etc), identify routines and properties required for the Classes and document in a spreadsheet.

View 2 Replies


ADVERTISEMENT

Create Apps Without .net Framework?

Apr 5, 2012

I have learned to create programs in VB.NET with Visual Studio, but the downside of that is that i need the .NET framework, which is not on every computer. Can I create a program in VB.NET without it needing the .NET framework? If yes, what tools do i need?

View 1 Replies

Create A List Of Records In .net Using The 1.1 Framework?

Jun 29, 2009

I am essentially trying to create a list of records in VB.net using the 1.1 framework.It seems that I should be using an object even though I have only properties but no methods (more like a traditional record), I would like to store a list of objects, how can I create the list and add an instance of the object to the list.I do have sample code that almost works but it is too poor for public display.

View 3 Replies

Create Excel Sheet Using Framework 2.0?

Mar 1, 2012

I have .net framework 2.0 . and I want to create an Excel sheet from vb.net programming. I have searched in google but didn't get the correct one. It was all for .net framework 3.5 or higher.

View 1 Replies

Create Pdf File Dynamically For .net 1.1 Framework

Mar 7, 2011

I need to create a pdf file dynamically in vb.net. It needs to contain several images and lines of text. I am using VS 2003, so whatever solution I use will need to be compatible with the .net 1.1 framework. The current method I am using is wpcubed, but this requires that all images be converted to bmp format before adding them to the pdf, which can be extremely slow when dealing with a large number of images.

I am aware that there are an awful lot of other 3rd party products that claim to do this, and I have had a search through them. But without registering, downloading, installing and writing code to use each of them in turn, it is very difficult to differentiate between them. So far I have looked into evo pdf and pdfsharp,tallcomponents, [URL] but none seem to work with .net 1.1. (Although they don't make this abundantly clear.)

View 2 Replies

"bank Ref  Id" Text Box And Value Is " Yy/98"One The Basis Of Selected Row?

Jan 26, 2012

I have a query table like below

[code]...

I have a "bank ref id" text box and value is " yy/98"One the basis of selected row, bank ref should update on second table.

View 2 Replies

VS 2005 Key Generation On The Basis Of Hardware Key

Feb 11, 2010

I have developed a software, now i want to float in market on license basis, what i want to do is data, there should be some code which generate sever hardware key and then prompt for license key.

View 1 Replies

Asp.net - Create A Composite Property In An Entity Framework Model?

Apr 6, 2011

I have two properties ("FIRST_NAME" and "LAST_NAME") I need to access as a single property (e.g. "FULL_NAME"). Is there a way for me to add a property to my entity model that contains the combine value of FIRST_NAME and LAST_NAME?

View 1 Replies

Create A Program With VS2008 While At Same Time It Will Use Microsoft Framework 4.0?

Sep 19, 2011

It might be funny , but I'll ask anyway : is it allowed to create a program with VS2008 while at the same time it will use the Microsoft framework 4.0 ? I am asking because I use VS2008 while at the same time I have the impression that framework 4.0 is "lighter" than 3.5 .

View 7 Replies

Generate Data On Basis Of User Input?

Sep 30, 2009

I want to create a page in asp.net website . it has to have one text box . the user enter the productcode in the textbox and click on search . when the user click search i want to display all the information about that product from product table.

[Code]...

View 2 Replies

Select Rows In Datagridview On Condition Basis?

Sep 8, 2009

i have datagridview with rows in it and one of the col show type of product. there are row with same type. on click of button i want to select all the row where productype = 1 (for example)

do i have to go thru each row in grid and check the condition for product type and then select it or there is another quick method.

View 2 Replies

In Entity Framework, We Can Use Model First, DB First, Code First But How Can We Create Table Programmatically?

Jun 9, 2012

In entity framework we can use 3 approaches model first , code first , database first but each one of them needs manual hand touch(means creating database or create model or write the POCO class codes or entity class codes) before proceeding to the next step ( using EF in context ).What if I want to create database and tables and table relationships programatically and still want to have to features of EntityFramework 4.3.

To be more specific ,from this example http://support.microsoft.com/kb/307283 we can create database , tables and everything using SQL command but we can't have the advantages of entity framework. So if we want to have that what should we do? To give the ability to create dynamic table fields those steps will not be sufficient. In all 3 steps database , table and table columns are fixed. There is no way that a user can create new tables or columns dynamically. http:[url].... in this post , it shows how to create manual db, tables and etc using SQL but it is based on ADO.NET but I want Entity Manager to do that.

View 3 Replies

Change Font Color In Datagridview On Condition Basis

Mar 12, 2012

i have my code as below in which i need to check the column(3) and column(4) for a condition and based on it i need to change color of the text and add some text to the value. Kindly guide for the same...

Dim sDs As DataSet
Dim sTable As DataTable
Dim sBuilder As SqlCommandBuilder

[Code].....

View 1 Replies

Querying For Datagridviews - Add The Payments For Bills On A Monthly Basis

Oct 2, 2009

I am developing a program in which I add the payments for my bills on a monthly basis. I have the design layout and the logic thinking, but having a little difficulty getting the database codes in place. I have 2 comboboxes that act as drop down boxes (1 lists all 12 months and the other lists the years, only 2009 for now for testing).

My access database has 3 columns (name, dates, amount). The names are pre-populated and the only columns displayed in the datagridview are name and amount.

When I choose a month and year, the datagridview should populate with the amounts entered from that month. I am having trouble debugging which lines of code are not working because there are no errors showing, just seems that it stops running at some point.

Dim Connection As OleDb.OleDbConnection = New OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\Administrator\My Documents\BillTracker.accdb;Jet OLEDB:Database Password=password")

[CODE]...

View 3 Replies

Using Collection - Store Info Of Employees On Daily Basis?

Aug 25, 2010

I am trying to come up with a way to store 3 pieces of information for each employee in the company on a daily basis. So for instance:
Day 1: Joe, 8, 80
Day 2: Sam, 10, 90
Day 3: Bill, 5, 40
Day 4: Bob, 8, 40
Day 5: Sue, 2, 50
I am very new to collections and most of the applications that I build are Create, Read, Update and Delete type applications that don't really need arrays so I have almost no experience with either.

This is what I have so far.
VB
'
Dim iDays As Integer = NumberDaysPerMonth(Date.Now)
Dim DayNumber(iDays) As Integer
Dim EmployeeRecords As List(Of String) = New List(Of String)
For i = 1 To DayNumber.Count - 1
[Code] .....

View 4 Replies

Error 0xc0000135 Says It Needs .Net Framework ... Create An Auto-Start CD ... Running App From CD Only - No Install Of App

Dec 10, 2009

My Application as you may remember ONLY runs from the CD and is never installed onto a computer. It is a Product Support CD. All Information that a customer may need is on this CD, they can Download PDF's and Drawings and even save some Software Apps that may be needed onto the user's Hard Drive, but the CD App running is never installed onto a computer.

[Code]...

View 5 Replies

VS 2008 - How To Show Sales (List Of Items) On Daily Basis

Jul 28, 2010

I have problem on my project on vb.net I'm using visual studio 2008. May I know how to do to show all my sales everyday. I have sale almost 5 items every day I want to have list for this. I'm new on vB.net..

View 22 Replies

Using A Collection : Store 3 Pieces Of Information For Each Employee In The Company On A Daily Basis?

Feb 27, 2006

I am trying to come up with a way to store 3 pieces of information for each employee in the company on a daily basis. So for instance

Day 1: Joe, 8, 80
Day 2: Sam, 10, 90
Day 3: Bill, 5, 40
Day 4: Bob, 8, 40
Day 5: Sue, 2, 50

most of the applications that I build are Create, Read, Update and Delete type applications that don't really need arrays so I have almost no experience with either.

VB
'
Dim iDays As Integer = NumberDaysPerMonth(Date.Now)
Dim DayNumber(iDays) As Integer

[code]....

View 19 Replies

Window Service To Send Autogenerated Mail On Basis Of A Field In DataBase

May 28, 2012

I need to create a window service that will check a Date field in the database and on the basis of that date it will send an auto generated mail.I am new in the field of Window service.

View 1 Replies

Performance Related Features For Migration From .net 2003 Framework 1.1 To .net 2008 Framework 3.5?

May 21, 2010

I am work on VB.net 2003 Framework 1.1 for last 3.5 years in windows Application.We are currently migrating to VB.net 2008 framework 3.5, but i don't know about the features which related to ADO.net and which is important to performance. I know linq to SQL but our architecture is made in .net 2003 so we should follow this.Any features which is very important to enhance the performance?

View 2 Replies

Create A VB Application In VS2008 Without Requiring The Application Be Run On A Computer With A .NET Framework In Place?

Feb 26, 2010

How can I create a VB application in VS2008 without requiring the application be run on a computer with a .NET framework in place?

View 4 Replies

VS 2008 Framework : Create An Application That Can Have "modules" Added To It?

Jul 7, 2009

I am trying to create an application that can have "modules" added to it. For example firefox can have firebug installed into it. I am trying to figure out how I can write my code so that other developers can put their controls where they want to and my program will know to use them. I am assuming that this is called making a framework.

View 29 Replies

VS 2005 - Create A "post Office" Program That Will Send Html Emails Thru The System.net.mail Framework

Oct 19, 2009

I am a one man dev shop and need some outside opinions on how to approach this project.

I need to create a "post office" program that will send html emails thru the system.net.mail framework.

For each job submitted to the postoffice the app would need to read a user created html email string from the database, read a string of email addresses to send to and send out the emails based on a set processing time.

The first step would be to parse out the email addresses to find out how many emails it needs to send out and determine how many it would need to send per minute to complete the job in 20 minutes tops. I.e. if 1000 email addresses are submitted per job it would determine that it needs to send 50 emails per minute to complete the job.

The part I am stuck on is how I should queue the emails. If the app determines it needs to send 50 a minute should I only load up the first 50 on a timer event then get the next 50 queued up for the next timer tick? Or would it be better to load up all 1000 in a loop and build in some kind of wait time after it sends the first 50?

View 3 Replies

Adding A Column And Values To It On The Basis Of Some Existing Colum Values?

Jan 4, 2011

i have retrived this datatable from datasource and i want to add a more colum 'category'basedon the each value of each Role, like if role column has the value '90 daya client' then in the same row it should have a value 'DC' in the category column.n make a temporatry dt1 table but to add related values.

S.No First Name Last Name Role Date
1 Us er1Name User1Name 90 Day Client 11/01/2011
2 User1NameAtt1 User1NameAtt1 90 Day Client 11/01/2011

[code].....

View 1 Replies

Upgrading .Net Project From Framework 1.1 To Framework 4.0?

Feb 2, 2011

I have a solution that I wish to upgrade from Vb.net framework 1.1 to framework 4.0. The solution consists of a number of projects, all but one of which compile to dll's. The master project compiles to a executable which provides a menuing system which dynamically loads the dll's and connects to entry points.

The projects contain normal classes, numbers of forms and also controls, which are either usercontrols or are inherited extensions of standard windows controls.There are a number of third party components (eg reporting and grid controls from Component One, Ribbon control from DevExpress etc).

[Code]...

View 4 Replies

Perform "DoEvents" On A Conditional Basis?

May 31, 2010

Several months ago, I asked someone here if it was possible to perform "DoEvents" on a conditional basis. This was for a VB6 application and it worked okay. It will not work in VB2010 and I was wondering if someone could tell my why?Error Message from VB 2010:

A call to PInvoke function 'MyApp.frmMain::GetQueueStatus' has unbalanced the stack. This is likely because the managed PInvoke signature does not match the unmanaged target signature. Check that the calling convention and parameters of the PInvoke signature match the target unmanaged signature.

[Code]...

View 9 Replies

Application Can Only Be Installed On A User By User Basis?

Jan 6, 2010

I have a few programs published via ClickOnce. These are highly specialized programs, and are only used by a relative handful of people, but the set of users is likely to change, and is spread over a fairly wide geographical area. The major advantage of ClickOnce....ok, for me, the ONLY advantage of ClickOnce, is that I can create updates and have them (mostly) installed when the end user runs the program. Over the brief time that I have used it, I have encountered these aggravations regarding ClickOnce:

1) The application can only be installed on a user by user basis (it can't be installed for all users at once). I understand why this is done for a general solution like ClickOnce, but it is certainly an aggravation.

2) Updates don't always appear to happen. Usually, the updates do happen when a person starts the program, but a fair number of times, the update isn't noticed, or recognized, or something. This causes the user to continue with the old version, which makes them think that I didn't fix the bug they had, which causes them to give me a raft of excrement, which results in me flipping them the bird. Much hilarity ensues (fortunately, I'm friendly with my entire user group, so this is a fairly accurate acconting of the sequence of events, except that I just laugh at them rather than replying in sign language).

3) Certificates expire in a year. Certificates are a great thing...for some situations. In my case, an alternative seems like it might be better.

4) Some settings in the manifest are so doggone hard to fix that I've nearly given up. I changed the URL that ClickOnce was supposed to go to for updates, and found it impossible to change the program to find the new location. It had to be there somewhere, and I found several candidates, but never could find the critical one.

Because of these issues, I have been tempted to write my own replacement. There are a few issues that I'd like some commentary on. For one thing, security is an issue that is hard to pin down. None of the data I am dealing with is worth a second thought. No cracking of that data would harm anybody or any thing. However, my first thought would be to have people install an app that would go to a web service to check for the existence of an updated version. If one was available, then the existing program files would be overwritten by the new files. If one was not available, then no overwrites would take place. Lastly, if the service couldn't connect, then no overwrites would take place (of course). If the files were compressed for transport, it would be kind of difficult to intercept and inject a different program into the transport stream, so the only weakness that I can see would be if somebody hacked the server that held the new version, and replaced it with something else. What am I missing here?Also, has anybody done anything like this, and if so, what else am I overlooking?

View 36 Replies

Software Created In An Older Framework Version Won't Run On A Newer Framework Version?

Apr 7, 2009

How come software created in an older framework version won't run on a newer framework version? Actually whenever i try to run some old specific software having .net 3.5 framework on my PC they show they needs .net framwork 1.1 . What a bad thing?My newer version of Photoshop ans Ms office open all lower version files.

View 6 Replies

Build Own Framework Using .Net Framework?

Nov 24, 2011

I work for a small company and we are planning to build our own framework using .net . For example if a dropdown is placed in the form and set the custom property to Users, then the users list from db from has to populate. The developer will drag and drop the custom control and set the connection string in config file. Other things are to be managed by the framework.

View 4 Replies

C# - Are Microsoft Entity Framework And ADO.NET Entity Framework (.edmx) The Same

May 13, 2010

c# - Are Microsoft Entity Framework and ADO.NET Entity Framework (.edmx) the same?

View 7 Replies







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