Whats Requirement Of Hardware For Sql Server
Jun 13, 2011whats the requirement of hardware for sql server
View 1 Replieswhats the requirement of hardware for sql server
View 1 Repliesam 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].....
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 RepliesI have a requirement to run the following commands on the command prompt using VB.Net
CODE:
How to code on this...
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 RepliesIf 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 Repliesdocuments 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?
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]...
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?
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 RepliesPossible 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"?
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?
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?
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 RepliesI 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 RepliesI'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..
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?
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].....
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?
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]...
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)
No errors are given in either first or second code besides theinputbox whats wrong here ?
1:)
Dim readings(-1) As integer
2:)
[code].....
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.
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 RepliesI 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 Replieswhats the page life cycle in Ajax call in Asp.net?
View 2 RepliesI 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!
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].....
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]...
whats the event handler name for holding click a button.
View 6 Replies