novon's Q&A profile
Visual Studio Team System Integration with RequisitePro
Hi, I've seen demo's of integration between Borland CaliberRM and Visual Studio Team System. However, the company I work for, uses RequisitePro for Business Requirements and I was wondering if there's a way (hopefully a tool) to import data from RequisitePro into Team Foundation Server Thanks, Reza Shams There is nothing built into v1 for this. You could write something using the client API. See the VS March SDK CTP ( http://vsipdev.com ) for more details. Buck ...Show All
Visual Basic 1 context menu for several controls
I am tring to use the same context menu for several textboxes on my form.(cut, paste, undo etc) How can I tell which textbox was active when the menu was clicked Do I have to use a seperate menu for each textbox This is a bit of an old-school method, I know, and I'll probably get bagged out for it, but you could create a public Control Object and populate it with a reference to the specific text box in it's MouseDown event. Here's an example of what I mean: Public MyCont As Control Private Sub TextBox1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles TextBox1.Mou ...Show All
Visual Studio Express Editions Express registration: going crazy...
I searched the whole forum, I found 32 links with th e"activation key" None of them helped me. I just installed Web Express. I go to Help->Register Product (Many post states that there is an "Activate product" in Help. No, there is nothing like thios. It is "Register product" instead.) I get a web page, I log in with my passport. Finally I receive a web page that looks exactly like this: Thank you for registering! Your e-mail address has been verified and a "thank you" e-mail with links to valuable registration offers and resources has been sent to your inbox. And if you haven’t done so already, subscribe toda ...Show All
Visual Studio Express Editions configure SQLDataSource
Situation: Visual Studio Web Developer 2005 Express Edition with SQL Server 2005 Express Edition. I added SQLDataSource to a .aspx page. Configure data source, configure select statement, choose Advanced. Now I should be able to choose option for Insert, Change, Delete records, but the options are not available. What's going wrong Hi! Thanks for asking! I'm a member of the ASP.NET team, and was just popping over here to see what was going on. The best place to ask ASP.NET questions is over on the ASP.NET forums at http://www.asp.net/welcome.aspx tabindex=1&tabid=39 There is a specific forum on th ...Show All
Visual C# Thread question
Hi all When i make a new thread how can i set its ThreadPriorityLevel to idel or lowest mmm... I think i sad ThreadPriorityLevel... not threadPriority !!!! The ThreadPriorityLevel is in System.Diagnostics namespace... not in the System.Threading.. But thabks for u`re interesting. ...Show All
Visual C++ Accessing a string array
Hello, This is my first post here, so I wasn't entirely sure if this is the best place to put it. I'm starting to learn the .NET framework, and have created an array that I need to access in two different forms, this array command I'm using is: array<String^>^ strarray = gcnew array<String^> (100); . Which I declare in my int main() function - I can read and write to the array in the main function, but I don't know how to access it in my other forms. (I've tried the obvious ways: extern etc, but they don't seem to work, and have tried placing the array declaration in many other places, but this in the only way it will com ...Show All
SQL Server Sql server Express edition installation (OS Windows Home XP)
Hi, I am trying to install SQL Express on Window Home XP and SCC is returning the following error: The SQL Server Configuration Checker cannot b execute due to WMI configuration on the machine ..... Error 2147942405 (0X80070005). I tried running the following batch file which I believe resolved the same issue that someone else raised earlier (though I am not sure whether the OS was Home XP) Will upgrading from XP Home to XP Professional (academic version) help me install SQL express successfully> The Batch file I ran looks like this: FIXWMI.CMD ------------------------ @echo on cd /d c:\temp if not exist %windir%\syst ...Show All
.NET Development Problem downloading Framework 2.0
Hello all, I'm having this problem and I found this forum title is most closely related to it so I thought I try here, hope you don't mind if the problem is misplaced. I'm downloading the .NET framework 2.0 setup and, everytime, it just hang (seems to be forever) at a point Registering System.EnterprisingServices.dll which Executing: "C:\WINDOW\Microsoft.NET\Framework\v2.0.50727\RegSvcs.exe" /bootstrapi Has anyone else been throught this before Or anyone that might know how to get pass this.... I welcome all of your inputs and thank you. Thank you Mark, and may I correct one thing ... ...Show All
Visual J# object streaming from office to home?
hi, i'm wondering whether i can stream my object from my pc in the company to my home's desktop PC or vise a versa with socket programming Is it possible to get over the firewall or proxy server in the company thanx the company which i work for it is not mine. so any other technology like virtual networks is not in consideration of me. i'd like to reach my computer as TCP connection as Messenger,ICQ, or E-Mule can do which works fine in my computer in the company. how do they get over the firewall in messenger settings i saw that TCP connection is fine and the port number seems as 1080. so technically how can i connect to my pc Can ; ...Show All
Visual Studio 2008 (Pre-release) LINQ May 06 CTP installed byt nothing appear in the new project dialog box !No, that
Hello everybody, I've installed te May 06 CTP of LINQ but I've got a problem: nothing appear in the new project dialog box or in the "Add new item" dialog box I've also run the script "Install C# IDE support.vbs" but the problem is still But if I run the example, they compile and run fine ! Anyone have an idea/a workaround Thanks Can you try running C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\Devenv.exe /setup Does that bring the project templates back If not can you please check for the existence of the following folders C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\ProjectTemplates and ...Show All
Software Development for Windows Vista Creating a sharepoint workflow task through code
Hi, We have a code actvity in our sharepoint workflow, which creates a task in the "Tasks" List library in the sharepoint site. We are able to create the task, but if we set "Assigned To" property, an error occurs in the workflow. Following is our code snippet: private void CreateCodeTask_Invoke() { SPSite site = new SPSite ( @"http://potato" ); SPWebCollection webs = site.AllWebs; foreach ( SPWeb web in webs) { if (web.Url == "http://potato/SiteDirectory/rajendra" ) { SPList announceList = web.Lis ...Show All
Visual Studio If I add the comp's source to the solution, then it works I can debug into, but
I have a component with source. It's been compiled in VS2500. Therefore I also have the DLL. I've installed it into the Toolbox. I create a new c# app and place my component onto the form. The comp's dll path get into the references of my projekt. From the form's code I call one of the comp's methods, and debug it. Everything is ok, but when I want to debug into my comp' source (step into the method), it simply go forward. Why Once I could achieve to appear an opendialog and it ask for the comp's source file, but unfortunately I can't do this again... Could sy help The reason why you initially were not able to debug the so ...Show All
SQL Server passing variables to a package before execution
I would like to pass variables to the package before it is executed (e.g. I am calling the bcp utility and I need to pass a password to the command line), so that at runtime a variable is set and then used. Does anyone has some hints for good approaches Every idea is welcome. FYI: I do not use the bulk insert task as I need an errorlog file and the command is buggy with the errorfile option, therefore I chose the bcp approach. My connections are dynamic as far as servername and userid is concerned, but I did not find a solution for the password issue. Configurations, lookup them up in Books Online. ...Show All
.NET Development Receiving error: The root element is missing.
I have inherited a C# application (code below) and it's having issues (famous first words, eh). The apps purpose is to retrieve a result set from SQL server 1 (in dataset format), convert that to XML using a MemoryStream and XmlTextWriter then submit the XML data to a web service for processing by SQL server 2. I am receiving the error "System.Exception: Server was unable to process request. --> The root element is missing." when the application hits line 98 (collector.SubmitEvents("SMS", xmlResults.InnerXml);). The odd thing is that the same exact process is used on line 69 for "submitting scan ...Show All
Windows Forms Highlight Listview item programmatically
In a part of my code I am trying to both select and highlight a listview item programmatically when it matches certain text in the code that loads the listview items. Code sample: <CODE> Private Sub FillDataList() Dim dr As DataRow Dim lvi As ListViewItem Dim lviSelected As ListViewItem Dim blnSelected As Boolean = False Dim strUsrName As String = "" listView.Items.Clear() 'LINE BELOW GETS TABLE FROM DATABASE dt = DAL.GetRecords For Each dr In dt.Rows lvi = listView.Items.Add(dr("UserName")) lvi.SubItems.Add(common.sanitizeString(dr("SubItm1"))) ...Show All
