Noel Fernandez's Q&A profile
Visual Studio Team System excludegroups filteritem does not filter local groups.
Hi, I have a custom Process Template generated using MSF Agile 4.0. The problem is it does not exclude the groups in "Assigned To" field. We want to see only the people names rather than groups. Below is the definition of "Assigned To" field in the Task work item. <FIELD name="Assigned To" refname="System.AssignedTo" type="String"> <HELPTEXT>Assigned person</HELPTEXT> <ALLOWEDVALUES expanditems="true" filteritems="excludegroups"> <LISTITEM value="[Project]\Contributors" /> </ALLOWEDVALUES> &l ...Show All
Visual Studio Get pinned version of VSS through automation
I have a script that searches through a release branch of our software, and detects the difference from the branch to the common dev dir (diff on all files) so i get the file... try to figure out the pinned version to diff it with the one in the other directory. There the problem starts. I cant figure out the pinned version. There is a MSDN KB article, but they say that the Action of the version starts with "Pinned" or "Unpinned".. this does not fit to our situation here. Those texts never appear in the Version.Action . Can someone help VSS 6.0d (Build 31222) I ran into the same problem. Still don't know how to "fix" it but there is a ...Show All
.NET Development Fail to load .NET 2.0 COM registered dll from Word with both .NET 1.1/2.0 installed.
Hi, I'm having troubles convincing my Word macro that the COM component that I reference, should be loaded using .NET 2.0. I have registered the dll with regasm /tlb /codebase, which used to work fine in .NET 1.1. But now I have both .NET 1.1 and 2.0 installed and on executing the macro it's using .NET 1.1 to load the assembly, which fails. Word reports a very uninformative "Can't find file or assembly name bla" (HR 80070002). But checking with the 1.1 FUSLOGVW.exe I get a hint of what's going on: *** Assembly Binder Log Entry (18-6-2006 @ 20:21:16) *** The operation failed. Bind result: hr = 0x80131107. No description available. As ...Show All
Visual C# One Click Save as
I want to make a html file saver for easy making and i was wondering how to make a save button but one i click it it saves it as a html file. Can someone teach me how i do it please much help is appeciated thanks ps sorry for the spelling im only 13. What you need is an "RTF to HTML converter". Writing one is not a trivial task. But if you do a Google/MSN search, you'll find plenty of options that are available for free. HTH ...Show All
.NET Development Can't Delete Row From Table.
Hi! I've a table in typed dataset to which if I add a row I can add it and save it as well. But when I delete a row from that table, count of rows go down by the number of rows I delete from that table. But when I try to save them nothing happens as expected it should return the number of rows updated. Before updation I'm cloning this table and storing changes in a clone and then updating the clone, merging it back to the orginal and accepting the changes. It works fine for addition but doesn't seem to work with deletion. Any idea what going wrong Sohail. What are you using to clone the table Have you checked the clone to make su ...Show All
Visual FoxPro VFP9 printing issue with multiple detail bands and group subtotals and/or summary totals
I have a report with one group and a summary total. Adding a new detail band, a big new feature added by VFP9, lead to incorrect totals/subtotals. I am using VFP9 SP1, behavior80, but is the same with behavior90. Steps to duplicate: 1) Run this code create table PRINCIPALE ; (AGENTE C(2), ; N_DOCUMENT C(5), ; D_DOCUMENT D, ; TOTALE N(5), ; CHIAVE C(3)) index on AGENTE+N_DOCUMENT tag "ORDINE01" create table DETTAGLIO2 ; (CHIAVE C(3), ; D_SCADENZA D, ; &nbs ...Show All
Visual Studio Express Editions How to set a date field to null
I have a bound text box showing a date field and I can enter a date into this no problem and save the changes. I have spent the past two days trying to find a way to allow the user to delete the date i.e. set the field back to null! I have found several articles on the net but nothing that provides an answer or explains why something that should be simple should be so hard!! DateTime is not a nullable type. If it's nullable in your db, you need to allow it to be set that way in your UI, and use DBNull.Value as what you pass into the DB if that condition exists, instead of a datetime. ...Show All
Visual C++ Trying to learn C++ - but some things just dont make sense....
Hi Folks, I am trying to learn C++ but some things just dont make sense. For example I am looking at a tutorial on OpenGL at http://nehe.gamedev.net/data/lessons/lesson.asp lesson=13 Now he calls a function with: glPrint("Active OpenGL Text With NeHe - %7.2f", cnt1); // Print GL Text To The Screen It passes two arguments to glPrint - the string and whatever cnt1 is. What I find weird is that glPrint doesnt actually do anything as far as I can see with cnt1 Also I find I have looked up on MSDN vsprintf which is used in the glPrint function. http://msdn.microsoft.com/library/default.asp url=/library/en-us/vclib/html ...Show All
Visual Basic created a simple form to calculate a weekly rate
I created a project to calculate the week rental rate for several vehicles based on the users need for large vehicle, convertible, truck you get the picture. so I used a combo box and select case I need to perform each calculation just once, then clear the memory so I can do an additional calculation. I have something like this, select case case 0 if rdobtnlarge.check andalso rodbtnweekend.check then weekrate = (baserate * LRG) * wknd lblResults.Text = "Your week rate is " & format(weekrate, "Currency") elseif etc. so I want to stop when the calculation once it is fin ...Show All
SQL Server Retreiving TableAdapter data into variables
SQL database ID FName LName SSN Dept Photo JobReview PayGrade me.TableAdapter.GetDataBy(LName) I would like to access the TableAdapter records and read a row into variable to be displayed such as textboxes and picturebox How do I access a row How do I specify each column to read Do I need to convert Photo into graphic for the picture box Thank you so much. You're not going to believe this... but I'm using the binding adapter tried to update records, delete b ...Show All
Windows Live Developer Forums Bot curiosity
Is it possible to write a bot like the imapps bot using the activity sdk If so are their any pointers If not what API should be used to write a MSN Messenger chat transcript bot yes its possible, good example . ...Show All
Visual Studio Express Editions making the program starting with windows via registry
Hi there. I have a question. I want to make an Option in my application so the user can decide if it should be put into the startup folder. so, how can i write into the registry, or create a shortcut into the startup folder - and how can i delete it, if the user uncheck the option I already opened a thread like this, but i forgot that the english name for the startup folder is different from the german one ( autostart ) which may cause irritations.. Ken Tucker wrote: If your place a registry key in HKey_LocalMachine\Software\Microsoft\Windows\CurrentVersion\Run the program will start with windows. Public Functio ...Show All
Windows Forms Applying Visual Styles to form When Theme Service is not enabled.
Hi. I am developing a winform application at my company, and there is one thing that I want to do, but have not found the answer to it. The IT people have setup the Group policy to disable the Theme Service in Windows XP, that is responsible for applying the styles that a Theme has in windows. I hate the way my application looks with square buttons and no mouseover color change. And this is my question: Is there any way to apply XP Visual Styles to controls even if the system itself has the theme service turned off Thanks in advance for your response. The IT Department by some unknown reason ...Show All
Windows Forms DataGridViewCheckBoxColumn Default Value
Hi, I'd created a DataGridViewCheckBoxColumn and add to a DataGridView dynamically, but I want to Check all the CheckBox once it's loaded by default. I tried the DataGridViewCheckBoxColumnAAA.Selected = true; after databinding without luck. Thanks, You'll have to wait until the grid fully loads the actual rows of data. The DatabindingComplete event fires with the list change type of reset when it has fully loaded the data. Is your data in the database null and you want to show a check for null data or you just want to change all false to true (0/1) -mark DataGridView Pro ...Show All
Smart Device Development Target Machine Link Error
I have used the upgrade wizard to migrate my EVC 4 project to VS 2005. I have managed to get most of my projects to build but I have a couple that give me the following link error. mfc80u.lib(MFC80U.DLL) : fatal error LNK1112: module machine type 'THUMB' conflicts with target machine type 'ARM' The configuration was originally targeting ARMV4. The "Target Machine" Linker option is set to "MachineARM (/MACHINE:ARM)". And I cannot find any reference to THUMB in my project. Does anyone have any idea's what the problem might be Thanks. Are you targeting Windows Mobile 5.0 for Pocket PC This sou ...Show All
