msindel's Q&A profile
Visual Studio -Y<username>,<password> Doesn't work
I am using ss.exe from the command line and I would like to be forced to enter the username and the password. however even if i hard code in -Y<username>,<password> it still acts as if the option was just -Y<username> meaning that it disreguards the password and still prompts for it. I would like to be able to prompt at the beginning of my script for a password and then put that variable in the <password> part myself but at this point I can't even hard code the name and password to get it to work. any ideas thanks. From the ( $variable_for_their_password_they_entered) form it sounds ...Show All
Visual Studio Team System Adding new Test Types
Hi, Can anyone tell me where I can get information on how to add my own test types to Team Test. An example would be really helpful. TIA Let me try to help. For that I need more information. Could you answer a few questions for me 1. Do you see your files unzipped under VSINSTALLDIR\Common7\IDE\ItemTemplates Cache \CSharp\1033 2. Does your .vstemplate file contain the following xml tag <TemplateGroupID>TestProject-V1</TemplateGroupID> Leo Huang Dev, VSTS ...Show All
Visual Studio Team System Build Succeeded, but no output.
Hi, I'm just trying to build my simple web application with Team Build. I was managed to create new build type. But when I'm running the build project, I'm getting only 3 files (BuildLog.txt, ErrorsWarningsLog.txt, Mixed PlatformsDebug.txt) in my drop location. My build log says, 1 Warning, 0 error. What can be the problem Here is my build log: Build started 6/15/2006 10:33:38 AM. __________________________________________________ Project "d:\buildsample\Team Proj1\MyTestBld\BuildType\TFSBuild.proj" (EndToEndIteration target(s)): Target InitializeEndToEndIteration: UpdateBuildNumberDropLocation BuildNumb ...Show All
Smart Device Development Memory Allocation to SD Card to prevent OutOfMemory Excepetion
Hi, Just a little backround: The memory left of my Pocket PC is about 5MB, however my SD Card has at least 100MB of memory left. Now I try upload an XML file containing about 7 megabytes of Photos Converted to Base 64 (why its part of the requirements) . Now at some point of the code , I get an OutOfMemory error, probably since there is not enough memory buffer for HttpWebRequest. I was wondering if there is a simple configuration in .NET to allow me to allocate memory usage to the SD card as well thanks and regards, espi No, that does not work this way. You need more program memory and storage card only offers storage memory. On des ...Show All
SQL Server What is this?
Well, how do you do it I've not seen any report on this... so could it be next to impossible Say you have 10 records, 1-10 and you want to insert a new record between record 4 and record 5 in a SQL database, just how do you code it And oh, each record uses the auto ID increment feature. In the first place, there's no concept of up or down in space, and there's no concept of 'middle' in a relational database. Indeed, the very essence of a relational database is that the physical location of the rows is irrelevant. So you can't talk about 'inserting a record into the middle ...Show All
SQL Server which algorithm to be used with symmetric keys
Hi, I want to create a symmetric key that will be encrypted by certificate key. Can u guide me which algorithm is best out of the following: DES, TRIPLE_DES, RC2, RC4, RC4_128, DESX, AES_128, AES_192, AES_256. I tried using AES_128, AES_192, AES_256 but it says ' the algorithm specified for the key are not available in this installation of Windows.' Pls tell me which else algorithm is best to use and pls specify why. Thanks Gaurav Thanks, But could u pls tell me why TRIPLE_DES, and not RC2 or DESX or any other. could u pls tell me the benefits of using TRIPLE_DES. ...Show All
Software Development for Windows Vista WWF Scalabilty
Hi, I wish to host Windows Workflows in my ASP.NET application. now my question is if each request to the application creates a workflow runtime i am worried about the performance hit its gonna have. loading and intitializing the workflow runtime everytime for each request will have any latency impact on each request Thanks Raja You only have to init the runtime once per AppDomain. Assuming subsequent requests are serviced by the same AppDomain, you should be ok. Riley ...Show All
Windows Forms Whenever I try to introduce an animal i get a stack overflow in terrarium.exe
Does anyone know what might be the issue with this THanks, Paul Tyng Well try to create some good bug then ..... :) like one we have got Terr(o)rium :) lolz..... I was so enthu about this stuff when I first read about it on web, the very same day I got .NET 1.1 (by that time the old version was removed from the site),& ...Show All
SQL Server Can the SQL Server 2005 be installed on Windows 2003 SP1?
I recently attempted to install Windows 2003 SP1 on a machine on which someone had previously installed SQL Server 2005. The build number for the SQL Server 2005 installation is 9.0.1116. (BTW, which CTP is this build number ) The installation of the service pack seemed to go okay, but I soon got calls from users reporting that they could not log in to the instance. I investigated, and discovered that the SQL Server service had not started. We were unable to start the service, and had to remove SP1. This was the message I found in Event Viewer: Event Type: Error Event Source: SQLDUMPER Event Category:&n ...Show All
Visual C++ What is the equivalent in Visual C++?
I wanted to convert a code from Visual Basic to Visual C++. I am seeing a code like this. Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "Comdlg32.ocx" Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX" What is the equivalent Using "MSCOMCTL.OCX" Any clue/Help Thanks, I believe that the following will work: #import <comdlg32.ocx> #import <mscomctl.ocx> You should lookup #import on MSDN to see how to use it: here's link to a good introductary article: http://msdn.microsoft.com/library/default.asp url=/library/en-us/vclang/html/_predir_the_.23.import_directive.asp ...Show All
Visual C# OpenFileDialogbox
How to set enable as false to openfiledialog box's open button untill we select an image or file private void Form1_Load(object sender, EventArgs e) { button2.Enabled = false; } string fileName; private void button1_Click(object sender, EventArgs e) { if (openFileDialog1.ShowDialog() != DialogResult.Cancel) { fileName = openFileDialog1.FileName; button2.Enabled = true; } else { fileName = null; button2.Enabled = false; } } private void button2_Click(object sender, EventArgs e) { MessageBox.Show(string.Format("File: {0} was selected.",fileName.ToString())); ...Show All
Audio and Video Development Missing WMCreateWriter in wmvcore.lib
wmvcore.lib shipped with DirectShow (included in the latest PSDK) doesn't list many functions exported by wmvcore.dll (e.g. WMCreateWriter). Does anybody know the reason for this and where I can obtain wmvcore.lib that matches wmvcore.dll I have code that was working and now it appears that there is no way to compile/link this code. Can you (i.e. MS) just post the import library for now, so that people like myself would be able to at least build our existing code until you sort out this issue BTW, this looks like a blunder on MS' part. How can one forget to ship a library ...Show All
Windows Forms DateTime.MinValue and Number Format ?
if i bind a textbox to an DateTime variable that has its value set to DateTime.MinValue the textbox is empty as i should but if i choose a format for may textbox like shord date time it shows 01-01-0001 how do i get it to show a blank textbox when i have an format applyed and it is set to DateTime.MinValue witouth doing it manualy ...Show All
Visual C# Date
How do I get today's date and put in an object/variable Thanks Just to expand Webmonsta's post above: To put it it a variable, you would do the following: using System; namespace Examples { public class DatetimeExampleClass { [STAThread] static void Main( string []args) { DateTime date = DateTime.Now; } } } ...Show All
Visual Studio Express Editions XML Documentation
I have just finished a project in beta 2005 of VS. I have generated the XML Documentation file, which is obviously not very readable. I have tried using NDoc to compile it, but this does not cope well with generics or inface .NET v2.x. Are there any programs that will compile this into a nice format Cheers, Chris I heard very useful information that Microsoft will provide alternative solution. Please look at following URL for more information: http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=2d65db5c-7bf5-43f3-8496-083aa966c411 ...Show All
