Answer Questions
Simon Honeybone Itanium
I have an rx2620(2 cpu) W2003 Server ITAINIUM . Anything I should know before I try to install the Express Version of anything What if, any, images can it build Well installing VB Express didn't work on the Itanium. So I installed on my laptop and added the Windows 2003 Server SDK and built a little application for Itanium successfuly and moved it to the Itanium where it wouldn't run... not sure why. Maybe I'm asking the wrong question. How about this: I found out I can't install VB express on my Itanium so I need to develope on my notebook. What do I need to install on my laptop and Itanium to build and run Itanium code Like VB Express, then .Net and W2003 Server SDK Server .net runtime I think I' ...Show All
curiousss Query for Work Items with Changesets
Is it possible to restrict a Work Item Query to only those work items that have associated changesets As Smitha said, this is not supported out of the box. But you can write some code to get the workitems related to changesets. Take a look at http://blogs.msdn.com/narend/archive/2006/08/08/691625.aspx and see whether this helps with your scenario Hello, In v1 you cannot query Work items based on the links(Changeset in your case). We will have rich linked query feature in V2. Regards, ...Show All
NRJ Build Fails from Jan 01 2007. Versioning issue!! :-(
Is it just me, or isn't the notion of versioning defaulted to by the AssemblyInfoTask http://www.gotdotnet.com/codegallery/releases/viewuploads.aspx id=93d23e13-c653-4815-9e79-16107919f93e fundamentally flawed. Assuming major.max.build.revision. Everyone using this task, including Microsoft, seems to be using the strategy that the build number is specified to be DateString with a format of yymmdd, you get something like 061117 on the day of this post or the following if we accept the defaults: 1.0.061117.00 First of all, the actual number (since it gets converted to an integer) becomes 1.0.61117.0 when it gets compiled. Most importantly, if this was next year (2007) at this time, you get assemblyinfo files u ...Show All
BradO Updating To New Workflow Transitions after modifying a Process Template
I'm pretty sure this question makes sense... although I'm prepared to be wrong about that. I need to modify a process template (not CMMI or Agile) to use a new primary workflow by adding new States and Transitions and Reasons. And I can see how to do the template modification part. But then we need to update the backlog of current work items to implement the new workflow. And maybe we need to change all the work item history to display and report and query with the new state names. I can see in the TFS Database tables some places where we might could run some queries to change the names of the historical work items. But its pretty scary to throw down a query on a database as normalized as what TFS looks like with no real understan ...Show All
The Tick Newbie needing help
Okay lets put it this way Im a high schooler, and I makin a browser , but in my drop down menu's I dont know how to make one of the buttons access the aboutbox.vb so when they click on it they get the about box. Can anyone please assist me If youve added menu items - then adding another shouldnt be an issue. And if you've used menu items you just adding code into the about menu item click event method. How have you added or used menu items on form1 for any of the other menu items you have used - as you imply that you already have menu options on your form1.vb I used the template and now its in AboutBox.vb but I want to make it so in one of my menu options in ...Show All
maina TF50309 When Subscribing To Notification Event
We've been having a problem with the Event Notification subscription, and so far we haven't been able to solve it. We're building a small application that encapsulates the Event Notification aspect of Team System, to allow subscription and monitoring of events easily. After testing it with a couple of users, we've encountered a problem: There are users that cannot subscribe to the event notification. My user has no problems, but when another user tries to subscribe, either through the API or through BisSubscribe.exe, it gets the following error: TF50309: You do not have sufficient permissions to perform this operation. That user has no problems using Team System normally, as in through Visual Studio - checking in and out, modif ...Show All
MarkDanielMaltby [VB2005] Reading from serial port, pls help!
Im currently working on serial port RS232 communication, im able to set configurations thru serial port to my device, but having problems reading from the port. Ive been advised that there're two ways of doing it, which include write the program so that the incoming data is stored inside certain file on computer and data can be extracted straight away from it..well another one, is extracting the data from the computer temporary memory.. but i have doubts regarding those methods and totally have no clue of performing the task, can someone please give me some guidelines of reading data from serial port thanks in advance! Hi Wencey, Exactly, what is your problem DataReceived is an event - not a class, a ...Show All
Rutger Beens Can't Compile anything...
Hi, I have installed Visual C++ Express 2005, and I have installed the PSDK. I have followed all the guidelines on the website to configure VC++ for building Win32 Applications. However, when I try to compile any Win32 Project that I have made, It always gives this error: c:\program files\microsoft platform sdk for windows server 2003 r2\include\stddef.h(6) : fatal error C1021: invalid preprocessor command 'include_next' Can you paste the entire top portion of the code your trying to compile, ie the part with all the includes you using No it shouldnt have anything to do with you having dev c++ installed, i also have dev c++. Best thing i can suggest i ...Show All
Deepesh Verma syntax code
to those of you who are familiar with the coding, could you write a simple code example so we can understand,give us simple syntax examples please of; deleete command accept changes command that way those of us who are beginners can read the syntax and get a better view of how it works. dear ahmed you say you have given me info before which you have, but being a beginner, and one that sits for hours at the coding trying to slove the issue on my own, you answers didnt really help in as much as they are not simplistic enough for us beginners to grasp. i have viewed scores of your answers to others and i have to say just the answer confuses me. what we beginners need is for you skilled peo ...Show All
Aleniko29139 No symbols loaded.
[code]'My First Project 1.exe': Loaded 'C:\Documents and Settings\Cody\My Documents\Visual Studio 2005\Projects\My First Project 1\debug\My First Project 1.exe', Symbols loaded. 'My First Project 1.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', No symbols loaded. 'My First Project 1.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', No symbols loaded. Debugger:: An unhandled non-continuable STATUS_DLL_NOT_FOUND exception was thrown during process load The program '[5080] My First Project 1.exe: Native' has exited with code -1073741515 (0xc0000135).[/code] Can anyone tell me whats wrong The symbols that are not loaded are really not needed. You have to provide more info regarding the exception your getting Soure c ...Show All
winstonSmith Conversion error: type string to date...need help
This is a simple application to display total years of the given date by giving one date manually using textbox control...but the conversion error occurs " Invalid conversion from type string to date ".... Public Class Form1 Dim date1 As Date Dim intMonths As Integer = 0 Dim intDays As Integer = 0 Dim intYears As Integer = 0 Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click date1 = CDate (TextBox1.Text) -----------------------> ERROR Occurs her intYears = DateDiff(DateInterval.Year, date1, Now()) MessageBox.Show(intYears) End Sub End Class Hi, Date or Da ...Show All
Rossgov Need code snippet for screen display time
VB 2005 Express, 'Build a Program Now', chap 6 page 87 (pdf). Can't find code snippet to change the amount of time splash screen display's. Downloaded code snippet editor for vb 2005. Went to tools - code snippets manager, and drilled down the list. Does anyone know what box I find this code snippet in If you want to change the default splash screen display time, then in the My project, Application tab, click on "View Application Events". This will create a new file ApplicationEvents.vb. Open the Partial Friend Class MyApplication in that file, add this code: Protected Overrides Function OnInitialize(ByVal commandLineArgs As System.Collections.ObjectModel.ReadOnlyCollection(Of String)) As B ...Show All
webrod Filtering work item with a data range and returning the date as part of the datasets fields simultaneously
Hi, I'm able to filter based on a date range. The problem is that I can't find a way to add the Date dimension to the list of column returned by the dataset. In other words, I want to return a list of work item that is filtered based on a "from date" and "to date" and have the date of each work item records in the returned list. Here is the query I am using (sorry I am pretty new to MDX...): SELECT NON EMPTY { [Measures].[Current Work Item Count] } ON COLUMNS, NON EMPTY {( (StrToMember(@StartDateParam):StrToMember(@EndDateParam)), [Work Item].[System_Id].[System_Id].ALLMEMBERS * [Work Item].[System_Title].[System_Title].ALLMEMBERS * [Area].[Area Path].[Area Path].ALLMEMBERS * [Work Item].[System_ ...Show All
ErikSR changing font style
hi, i am trying to figure out a way to change 2 attributes for a label's font using code. thus far i have only been able to change one attribute. i want to chenge from bold to bold and underlined, but i can only change it to bold or underlined but never both. im using the following code. Label1.Font = New Font("Arial", 9.75!, FontStyle.Underline) i want the label to change to bold and underlined at the same time. help in this regard will be greatly appreciated. regards, Mark Hi, FontStyle is a Flags enumeration, which means you can combine its values by using the Or operator: Label1.Font = New Font( "Arial" , 9.75!, FontStyle.Underline Or FontStyle.Bold) Also, if ...Show All
paso How to use ProgressBar for File.Copy ?
hi. i want to Copy a file to destination path and show progressbar that file is copying and it's update until File.copy Compelete. but how to use Progressbar for this work thanks. File.Copy doesn't provide any progress feedback. You'll have to use another API if you want that. This thread shows code for copying multiple files with a progress indicator. what is your suggest for this sobject please give me an example for using progressbar and copying file. HI, The thing that I can suggest is reading the file first and then copy it bit by bit so that you can monitor the percentage of the copy operation. And you must manually create the file and place the copied value unto it. cheers, P ...Show All
