[2008] Avoiding The Requirement Of .net Framework?
Jan 31, 2009
i get a lots of errors with my application because users doesn't have the .Net Framework installed so i was thinking, can't i take every .net framework resource that my application uses and needs, and add it as a reference in my application so that the user does not need to install .Net Framework?
View 6 Replies
ADVERTISEMENT
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
Sep 25, 2009
I have a requirement to run the following commands on the command prompt using VB.Net
CODE:
How to code on this...
View 6 Replies
May 19, 2010
I am writing a C# Windows application program and I'm using an add-on for creating chart in it,but when I run this program on another windows which has .net framework but not that package it does not work and give me exception.I want to know how can I correct this problem even with setup file?and if the answer is setup file then how should I do that?
View 1 Replies
Jan 24, 2011
If I am developing a windows forms application in Visual Studio 2008, does the end user that installs the application need dotnet 2.0, 3.0, 3.5? Only winforms, no web (except it calls web services).
View 4 Replies
Jun 30, 2009
documents that are required for a project. Such as:e.g: What sort of document I have create at the requirement analysis phase...etc I need to know all the documents that are required from start to end of the software project.
What's the part that MSF (Microsoft Solutions framework) plays?If we need to use MSF, what sort of documents that are required from it?
View 1 Replies
May 12, 2012
I have coded an asset management application which can submit asset information,retrieve and update it.The application can also send emails with excel file as attachment to employee's id by reading the name of the employee from the source excel file.I am using gmail as smtp host. Now I need to prepare a report on it which requires me to mention the requirement specifications which include
[Code]...
View 1 Replies
Nov 19, 2010
I have a simple web browser im seting up for a kiosk its pretty generic.It runs in full screen and on top of all other windows it has a combobox set to readonly, the combobox is fed by an array from a .txt file.This all works fine and the user has no way of directly accessing websites that arent supplied to the combobox from the txt file
....Until they click an advert.how to have the web browser check the address its being given against the array before allowing access to it?
View 2 Replies
Jun 13, 2011
whats the requirement of hardware for sql server
View 1 Replies
Mar 11, 2010
I want to display a message box to inform a user of a requirement. In this case, the requirement is to insert a USB flash drive. This is easy enough:
MessageBox.Show(blah, blah, blah)
This message box will only have an OK button. What I need to happen is this:The OK button should not be available (enabled) until after the flash drive has had a chance to initialize. We will say this takes 2-4 seconds. So how to I keep the OK button disabled during this time and then enable after the time has passed?
View 3 Replies
Jul 15, 2009
I am planning to write an application which will be available in 2 versions. one free and the other one paid. The only difference is that in free versions only a maximum of 2 DB entries are allowed. but its unlimited in paid version
View 3 Replies
Aug 10, 2009
I am planning to write an application which will be available in 2 versions. one free and the other one paid.The only difference is that in free versions only a maximum of 2 DB entries are allowed. but its unlimited in paid version.DB does not have more than 1 table with 5/6 fields.I am planning to use xml for free version and SQLite for paid version. Is this ok? are there any other options?
View 1 Replies
Mar 20, 2012
I'm wondering if there is any scheduler control in Vb.Net -MS VS 2005- and if not I hope I can find a one - free - that I could use on my application...
how to implement scheduling tasks requirement in my application..
View 1 Replies
Dec 16, 2009
I have an interface (called IPersistentBusinessObject) with a required function that looks like this:
Function GetFields(ByVal fromDatabase As clsODBCDatabase) As enumSuccessFailure
In a class, I try to satify the requirement with the following:
Public Function GetFields(ByVal fromDatabase As clsDatabase) As enumSuccessFailure Implements IPersistentBusinessObject.GetFields
In this example, clsDatabase inherits from clsODBCDatabase. So I'd expect this to work since clsDatabase does everything clsODBCDatabase does and more. However, it does not work. The compiler complains that I haven't properly satisifed the interface requirements for GetFields. Can anyone tell me why this does not work?In slightly different but related example, I have an interface that requires a function called 'AddItem' as in:
Sub AddItem(ByVal objObject As IPersistentBusinessObject)
In my 'building' class, I attempt to satisfy this requirement using:
Public Sub AddItem(ByVal building As clsBuilding) Implements IPersistentBusinessCollection.AddItem
In this example, clsBuilding implements the interface IPersistentBusinessObject. So I'd expect this to work since clsBuilding satisfies the interface contract. However, it does not work. The compiler complains that I haven't properly satisifed the interface requirements for AddItem. why this does not work?
View 10 Replies
Sep 29, 2009
am developing a simple crm application for my business using VS2005 and its default mssql server. The configuration of my server machine is:
Motherboard: INTEL DQ35MPE
Processor: P4 2.4 QuadCore Q6600
RAM : STRONTIUM RAM 2 GB PC667 DDR2 DIMM
[code].....
View 2 Replies
Oct 1, 2010
i have a class where are code the methode that i have to use in my form. i want to display on a button with a if statement a text value depending of the requirement are met. i put the code of the class here:
[Code]...
View 12 Replies
Jan 31, 2012
I try to disable a tabpages in .net but it doesn't work properly , if try to do this Me.TabControl1.TabPages(1).Enabled = False it let me enter to de tabpages .
Bhagabat Dayal Dash Software Developer Qlogix Solutions(India)
View 1 Replies
Jan 19, 2009
Im adding listviewitems and want to avoid duplication. Now currently, I have resorted to looping through the listview and comparing each items text property against what Im adding. But for a big table this is very slow. The ListView has a .Contains Method but this does not seem to do what I would have assumed; for example [code]Is there a way of doing this so I dont have to loop through all the items?
View 6 Replies
Sep 14, 2010
I have the following code block. I'm tired of typing the same IF statement to check if the string has any lenght before assignning them to the class properties of Employee.
Is there any better to accomplish this?
Dim title = txtTitle.Text.Trim
Dim firstName = txtFirstName.Text.Trim
[code].....
View 6 Replies
Oct 13, 2010
I'm working on a new DAL for my latest project. As the performance is essential I'm avoiding late binding/reflection as much as possible. One central part is the DAL function for populating Business Objects.One class is called in order to connect to the database with the given SQL (stored procedures can't be used in this environment) and the given Business Object or List is populated. As different Business Object types will be populated by the same function I made an Interface that all of the Business Objects implements with the Sub called "Fill". The question is - will reflection be used in this scenario? My thought was as I'm "describing" the objects trought the interface the compiler doesn't need to use Reflection.
[Code]...
View 3 Replies
Jul 19, 2011
I am using this expression to validate e-mail addresses:
"^[_a-z0-9-]+(.[a-z0-9-]+)@[a-z0-9-]+(.[a-z0-9-]+)*(.[a-z]{2,4})$"
I noticed that in order for the e-mail address to validate, I need to put in at least 3 characters before the @ symbol. Is this a requirement? What if I just want to have an e-mail address with 1 or 2 characters before the @ symbol?
View 3 Replies
Feb 15, 2012
I'm writing the following bits of code for a SaveFile Dialog box in Visual Basic 2010.NET. The code works well as the XLSX file is created and opens in Microsoft Excel. However, the problem that I am having is that if the program overwrites a file, the user is getting two prompts. One prompt is from the program's own SaveFile dialog confirming the choice. The other is from Microsoft Excel asking you the same. It's as if the program is running in the background.[code]
View 1 Replies
Sep 26, 2011
I want to avoid the creation of SQL queries inside the dataset. Here's the screenshot:
Dim search_by_dateofcanvass = sqlcomm.CommandText = "SELECT [#], Material_Name, Brand, Unit, Discount, Supplier, Category, Date_of_Canvass, City, ListPrice, Material_Description, NetPrice, Area FROM CanvassTable WHERE (Date_of_Canvass = " & DTPcanvass.Text & ")"
Me.CanvasstableTableAdapter.search_by_dateofcanvass(Me.FinalDatabaseDataSet.CanvassTable, datepick)
By the way that query can be use to search for date.
View 3 Replies
Sep 16, 2011
If dr("iname").ToString = DataGridView1.item(0).cells.item(0).valueThen Then
MsgBox("Similar items are not allowed.", MsgBoxStyle.Critical)
Exit Sub
End If
I need to avoid displaying similar data from my mysql database table iname to the gridview, but I can't identify the right syntax/code for that?
View 1 Replies
Jun 21, 2010
I want to insert number for City_Id and City_name , i wrote a query for auto generate number for City_Id,working fine but in the city name i want to avoid inserting duplicate value like if Mumbai is a City ihave already saved then system should not allow that name again. neither in small or in capital or mixed letter.
View 4 Replies
Sep 25, 2009
One feature of C# compiler is that namespace declaration by default follows the folder name structure in the project. By e.g. you have MyProject1MyDrawing and inside you create a class MyPoint the namespace for MyPoint will be MyProject1.MyDrawing
In VB I cant see any namespace declaration(apparently it implicitly 'inherits' the project(MyProject1) namespace). If I create a MyPoint and MyLine clases in the MyDrawing folder I need to surround each of created classes with "Namespace MyProject1.MyDrawing"..."End Namespace".
Is it possible to automatically name the namespaces like in C# by the folder name?
View 10 Replies
Jul 4, 2009
I have an MS Access database and an MS Visual Basic 2008 front end.I get this error when trying to update a record that has related records:The record cannot be deleted or changed because table 'X' includes related records.I only want to update one field in the row in the 'parent' table which is not the primary key field of either record but the 'Update' command seems to want to rewrite the whole datarow. Rewriting the whole row causes the error (as this updates the primary key). If I switch off refrential integrity checking in the underlying database this solves the problem except that I want to maintain referential integrity so its not really a solution. I have tried beginEdit and EndEdit with no success - same error.Is there a way to update just one field in a row and write that back to the database?
View 2 Replies
May 17, 2012
I need the Logitech HD Webcam C310 to be preselected.When the Main Form opens the Webcam must be running allready, withoute having to select it from the Video Source Window.
View 1 Replies
Sep 8, 2009
I've seen a good bit written on avoiding updating a form from a thread.However,I was wondering if that was a problem if the thread exists in an object that programatically builds the form?Thus the form and associated logic exist within the same "thread space." Seems on the face of it like it would work since everything in the form should be in a single dispatch queue.
View 8 Replies
Jul 26, 2010
This particular function is used to save the returned results for a ping sent across the internet. Unfortunately the code won't let me Use the streamwriter method or the fileopen method, because it says:"The process cannot access the file 'C:UsersChrisDocumentsPinging DataFilesave2.txt' because it is being used by another process."
Private Sub SaveToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveToolStripMenuItem.Click
FileOpen(1, "C:UsersChrisDocumentsPinging Datacount.txt", OpenMode.Input, OpenAccess.Read)
[code].....
View 1 Replies