Whats Requirement Of Hardware For Sql Server

Jun 13, 2011

whats the requirement of hardware for sql server

View 1 Replies


ADVERTISEMENT

VS 2005 Server And Client Minimum Requirement?

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

Whats The Bare Minimal Need To Connect To A Irc Server Then Join The Channel

Aug 4, 2010

Whats the bare minimal you need to connect to a irc server then join the channel? vb6 use to use winsock whats vb.net equilivent?

View 2 Replies

DOS Command - Requirement To Run ?

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

C# - Embedding Dll Requirement In Program?

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

End User .Net Version Requirement?

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

Create At The Requirement Analysis Phase?

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

Requirement Specifications Of Asset Management?

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

Simple Web Browser One Tricky Requirement?

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

[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

C# - Whats The Point Of Tuple (Of T)

Sep 30, 2011

Possible Duplicate: What's the purpose of the Tuple(T1)/Singleton in .net?

Trying to mimic a Tuple as implemented in .Net 4 (For .Net 3) I just realized there is a Tuple(Of T)? This was quite a surprize!

Tuple<string> result = new Tuple<string>("Data");

Instead of this

return "Data";

Isn't the whole point of a tuple that its a container for "loosely related data that isnt cohesive enough to make another class"?

View 2 Replies

VS 2008 Whats The Better For Next Loop?

Mar 25, 2010

I have a question, i have worked in several languages in my life (including several versions of basic) but i wonder whether in .NET using a variable or equation in a loop is a lot slower than not using one? Take the following identical loops

Dim test(999) As Integer
For count As Integer = 0 to 999
test(count) = count
Next

[Code]...

Now the 2nd case is good because it is easier to adjust the code should the array size need to change yet my background tells me the 1st case is the one in terms of performance, test.Length - 1 is calculated each time the loop runs. a loop of the 2nd kind for example has a massive effect on java as well as VBscript or javascript.So heres the question, would test.Length - 1 be calculated each time the loop ran, or just the first time?

View 14 Replies

Display A Message Box To Inform A User Of A Requirement?

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

Handle 2 Different Versions(free, Pro) Database Requirement?

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

How To Handle 2 Different Versions (free / Pro) Database Requirement

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

Implement Scheduling Tasks Requirement In Application?

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

Using Derived Class To Satisfy Interface Requirement?

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

Restrict Whats Pasted Into A Textbox?

Dec 28, 2010

Private Sub Recipient_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles Recipient.KeyPress
If Char.IsLetter(e.KeyChar) Then[code].....

View 6 Replies

Whats The Difference Between (As) And (=) In Object Declaration

Jun 2, 2011

if I created a new object like this Dim sqlconn As New SqlClient.SqlConnection(cs)
and Dim sqlconn = New SqlClient.SqlConnection(cs) Whats the difference?

View 1 Replies

Display On A Button With A If Statement A Text Value Depending Of The Requirement Are Met

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

How To Enable Or Disible Tabpage Depend Upon The User Requirement

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

Can't Figure Out Whats Wrong With This Two Basic Codes?

Oct 12, 2010

No errors are given in either first or second code besides theinputbox whats wrong here ?

1:)
Dim readings(-1) As integer
2:)

[code].....

View 2 Replies

Make A Combobox Display Whats In The Sql Database?

Jun 9, 2011

I'm doing a project involving VB.Net 2008 and SQL.

I'm trying to make a combobox display whats in the sql database that is connected on the left hand side.

View 5 Replies

Send Whats In Textbox1 When They Push Enter?

Apr 20, 2009

Im trying finish my Chat room and I just need to know how to make it send when they push enter so they dont have to click the button.How would I make it send Whats in textbox1 when they push enter?

View 6 Replies

VS 2010 Save Whats In Text Box To File?

Sep 30, 2010

I have a RichText area, and wanted to create a button, that will take whats in the RichText area, and come up with the prompt for the user to save somewhere on the machine..

View 1 Replies

C# - Whats The Page Life Cycle In Ajax Call In Asp.net

Mar 28, 2010

whats the page life cycle in Ajax call in Asp.net?

View 2 Replies

Constructor - Whats The Best Way To Initialize Shared Members In A Class In VB.Net?

Dec 8, 2010

I was looking on the interweb to see if there were any good examples on how to initialize shared members within a class while still initializing instance variables. I did find an expression that might fit to the answer:

[code]...

How do I initialize both instance and shared members without re-initializing the shared members every time an object is created from a class? Thanks!

View 2 Replies

Forms :: Check Whats The Highest Rev Number In A Folder

Dec 3, 2009

i'm trying to check whats the highest rev number in a folder (file names are 123456_rev01.*, 123456_rev02.*).

here is my code

For j = 1 To File.Exists("c: est123456" & "*" & j & ".*") = False
MsgBox("looking at rev" & j)
j = j + 1

[Code].....

View 4 Replies

Log On Parameters Error 20536 - Common But Whats The Solution?

Jan 3, 2006

I have found lots of posts on the web citing this problem but none of them have solutions, please could someone shed some light on this and help me find a solution otherwise my applicvation will lose a lot of the functionality I have planned?

I have produced a program in VB5 and I have designed a report in crystalreports (4.6). I want to click a button on a form in the program and viewthe report in a view window not in the CR4.6 editor.

I am using the following code to try to call the report however when ittries to start I get a 20536 - Incorrect log on procedures.Additional information:I'm running Win XPI have crystal report control 4.6 selected in the project components menuI have put a CR control on the formI have crystal report control 4.6 selected in the references menu If fixed will this open the report in the viewer window rather than the fullCR editor? (that's what I want)

[Code]...

View 2 Replies

Whats The Event Handler Name For Holding Click A Button

Dec 16, 2009

whats the event handler name for holding click a button.

View 6 Replies







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