Jasimons's Q&A profile
Visual Studio Team System Newbie!! TFS requirements
Hi all, I'm going to install TFS. After reading documentation and resources, of course, not all of them, I wonder if: 1. Is TFS require active directory domain controller 2. May I install everything, active directory domain controller, DNS server, Web server, SQL 2005 server, Sharepoint server on the same box Win2003 Enterprise Edition Server Best Regards, Hi, for Dual Server Installation, AD is necessary. But not to Single Server Installation. For Single Server Installation you can use a computer that is member of the workgroup. (almost documentation say that). regards - gabriel ...Show All
SQL Server Unable to perform a Manual install of SQL Mobile
I'm trying to install SQL Mobile from a Windows XP SP machine to a Dell Axim X51v mobile device. I've read the installation procedures and I've been unable to locate the cab files. I have located "DLLs" and Zip files but no CAB files. Where else might I find the CAB files Hi Louis, The CAB files for SQL Mobile are placed in the following locations when you install VS2005: <drive:>\Program Files\Microsoft Visual Studio 8\SmartDevices\SDK\SQL Server\Mobile\v3.0\wce400\armv4 Or <drive:>\Program Files\Microsoft Visual Studio 8\SmartDevices\SDK\SQL Server\Mobile\ ...Show All
Visual Studio Express Editions How to change te MIDI-Parent form.
Helle, I wil work with midi forms but how can i change te midi parrent form. I don`t really know. Please let me know. You can also go to the child's form_load event handler and place this: me.mdiparent = my.forms.form1 ...Show All
Visual C# Connecting to a shared folder on another Machine
I'm developing a Windows Service. The service needs to write an xml string to a file and drop it in a shared folder on another server. What is the best way to establish a connection to the shared folder on the other machine You won't need to specifically make a connection, if the share already exists then simply write to it like you would a local folder or file. The .NET Framework and Windows will worry about connecting to and disconnecting from the share. ...Show All
Visual Studio Express Editions Cursor Reset
I am having a user input a 3 digit interger value. This number is then compared to a random number. If the incorrect value is entered, the user has to reguess. I would like for the incorrect 3 digits to be highlighted so the user can immediately retype. Is this a property setting If not a property, how does I code this. The text box for user input is txtGuessInt and the variable in my program is GuessInt GuessInt = Integer .Parse( Me .txtGuessInt.Text) If GuessInt > maxInteger Or GuessInt < minInteger Then MessageBox.Show( "Your Guess Needs to be between 0 and " & maxInteger) Else If ...Show All
Visual Studio Team System Issue with Load Test DB connection
I have stumbled across an issue regarding the connection string administration to the LoadTest DB. I have read other threads re: configuring this via the Test Controller Admin dialogue and did manage to get it working briefly. For other reasons I did a un-install and re-install (without incident), but when I re-entered the dialogue to alter it again, the Load Test Results connection string configuration dialogue could not find my destination DB, which is (local). Upon quitting out of this the connection string now displays as: Microsoft.Data.ConnectionUI.DataConnectionDialog+BasicConnectionProperties. Clicking on the ellipses next ...Show All
SQL Server SQL Server 2005 Management Studio error when open connection to remote SQL server
The PC is a Windows XP Pro SP2, with IE 7 beta2 7.0.5299.0 , Firefox 1.5.0.1 The following are currently isntalled, VS.Net 2003, VS 2005 team for software developer, SQL 2003 Dev Edition, SQL 2005 Ent Workstation Components, VSS 2003 and VSS 2005. Everything were happily working until last couple of days then this error started to show up whenever I double click a remote sql server fromt he regiested servers list and open it in the Object Explorer, after the error the object list will remain in "Expanding ..." message: TITLE: Microsoft SQL Server Management Studio ------------------------------ Unable to cast COM object of type ...Show All
Visual FoxPro newbee - does VFP9 have a runtime engine?
In a former life I programmed in dBase/Clipper/FoxBase and other extinct languages. An old Clipper application from 1987 needs updating and they do not have a Clipper compiler. My thought is to rewrite the app in Visual FoxPro 9, which I will order next week. I need to figure out how many copies of VFP9 to purchase. One copy for me, one at the client location... Is there a runtime engine in VFP9 Do I need a software license for each user What do you think Thanks for your help, I certainly need it!!! Hi Steve, I can tell you this, VFP 9 is NOT the same as DBase/Clipper/FoxBase. I'm doubting you're go ...Show All
Visual C++ Problem with Link Error. metadata operation failed (8013110E): Database file is corrupt and may not be usable
I met this problem and can't figure out the reason. Its a .net windows form application. In this class, I had around 30 member functions. When I added a new member function (Its input and output are same as others), I got this link error. I can fix it by just deleting that function and moving the implementation part into the caller function. Could anyone tell me the reason of it thanks Have you tried a clean and rebuild all That used to solve these sort of problems in the VC6 days. I've not seen anything like it recently tho. ...Show All
Visual Studio Stepping through the debugger takes a life time.
Hi all, I have just gone through the process of upgrading to VS 2005 from VS 2003 and have noticed that when I debug my application stepping through it takes an absolute age now. It takes around 12-15 seconds for each step - making my debugging life hell :( Are there any ways I can look in to actually speeding this up Thanks Tryst Are you running into this http://blogs.msdn.com/greggm/archive/2005/11/18/494648.aspx ...Show All
SQL Server Answer to your question
Hope someone can help me with this question. I am wondering if it's possible to create a stored procedure in a database that retrieves data from a table in another database. database1 has dbo.table1 database2 has stored procedure db1_getTable1data -- Insert statements for procedure here SELECT * FROM [database1][dbo] . table1 WHERE PC_ID = @PC_ID any help would be greatly appreciated. Thanks Rod Hi, you are close: SELECT * FROM [database1].[dbo] . table1 WHERE PC_ID = @PC_ID So you can use the three part name: Database.Owner.Objectname (whereas owner has t ...Show All
Visual Basic Catching SQL Server connection exception
Hello All! I have a small VB 2005 read-only app with a SQL Server back end. I am working on error handling. When filling table adapters,I want to catch exceptions thrown when a SQL Server connection cannot be established and display a certain message to the user. I would like to test for an error number but I am not sure exactly wich kind of exception and property to look for. What's the best way to do this Is there a better way to test the connection before I try to fill a table adapter Thanks for the help. The Try...Catch block is the easiest way IMHO. You can check for specific errors/error types and handle them accordingy ...Show All
Visual Basic Cursor where I want?
When Button3 on Form1 is pressed, some text is displayed to RichTextBox1. Then, I use RichTextBox1.Focus() to put Focus to RichTextBox1. But, then the cursor becomes located at the beginning of RichTextBox1. I want it to be located right after where the text is displayed in RichTextBox1 after pressing Button3. A TextBox has a selectionstart property which also works to position the cursor. You could do tb.SelectionStart = tb.Text.Length IRTB has the same. ...Show All
.NET Development OdbcDataReader and Null Values
All, When dealing with a recordset created through the datareader, how does one deal with null values I have an ODBC database with plenty of them and I am wondering if there is a better way to handle this issue than coding a if (reader.isDbNull) statement for each and every one. As a side note, I was playing around with the dataset/datatable which seems overkill for one forward only, read only row that I am trying to access but what is the correct method for pulling out a single field from the dataset I understand there is a way to have the dataset transform the nulls the empty strings. Maybe this is my solut ...Show All
Smart Device Development Can I use Visual Studio 2005 to develop Compaq iPAQ (H3600 series) applications?
Hi (a newbie question) Can I use Visual Studio 2005 to develop Compaq iPAQ (H3600 series - Model=3660) applications I have not used the iPAQ for over a year or two. If this is possible what are the main tasks I'd have to do e.g. Q1) Is the current verion of the iPAQ o/s pocket pc 2002 ok Or do I need to upgrade this to a later view If so I assume I would look on the compaq site (i.e. I guess I fishing for any constaints that may exist re my iPAQ being too old a model) Q2) I assume I'll need the VS2005 compact framework on the device itself So reading through the VS2005 doco should give me ...Show All
