rebelR's Q&A profile
SharePoint Products and Technologies RSS Reader and SharePoint Lists
I have quite a few questions around the RSS Reader and how I can get it to read SharePoint Lists: 1. First off, when I first started trying to get the SharePoint RSS Reader to read SharePoint lists it gave me an error of: The RSS webpart does not support authenticated feeds. I searched for an answer and came up with this article: http://blogs.msdn.com/markarend/archive/2006/10/03/RSS-Viewer-web-part-and-authenticated-feeds.aspx . But even after following all the directions therein, I still got the same error message. This article states that it relates to B2TR, but I can only assume that it would relate to RTM as well - help please! 2. So I decided to enable anonymous access and I got the RSS reader to read the lists. These are the s ...Show All
Software Development for Windows Vista local transaction inside transaction scope
Well, i don't want to use distributed transaction everytime i use a transaction, so i have decided to use local transaction when i could. The problem is I have to use Oracle, so if i put trans inside a transactionscope it produces a distributed one. Well, what I want to know is: which is the best way to achieve this How can I enlist a local transaction (dim tran as oracletransaction=con.begintransaction) with a distributed one this code gives me an exception in begintransaction line(parallel transaction are not suported). Using ts As New TransactionScope Dim db As Database = New Oracle.OracleDatabase(eDal.ObtenerCadena(Util.idAplicacion)) Try Using con As OracleConnection = db.CreateConnection() con.Open() ...Show All
Visual Studio Team System Error while following Naren's Blog for "How to use Custom Controls in Work Item Form".
I am using Naren's Blog for " How to use Custom Controls in Work Item Form". I am using SP1 & Microsoft.TeamFoundation.WorkItemTracking.Controls.dll with version 8.0.50727.127. I copied WorkItemIdReference.wicc and WitCustomControlSample.dll to C:\Documents and Settings\All Users\Application Data\Microsoft\TeamFoundation\WorkItemTracking\CustomControls I added <FIELD name="DuplicateId" refname="MyFields.DuplicateId" type="Integer" /> under <FIELDS> tag and <Control FieldName="MyFields.DuplicateId" Type="WorkItemIdReference" Label="&Duplicate Id:" LabelPosition="Left" /> in the FORM to Customize Bug Work Item. I am getting following error when I am trying to customize ...Show All
Visual Studio Symbols loaded (source information stripped)
Hi, I'm pretty noob and im just trying figure out my Visual Studio C++ 2005 Express and get it to do a first debug on a HelloWorld and I get these errors 'Hello World!.exe': Loaded 'C:\Documents and Settings\Mike\My Documents\Visual Studio 2005\Projects\Hello World!\Debug\Hello World!.exe', Symbols loaded. 'Hello World!.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', Symbols loaded (source information stripped). 'Hello World!.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', Symbols loaded (source information stripped). The program '[2944] Hello World!.exe: Native' has exited with code 0 (0x0). I've been looking around and I guess it would be helpful to tell you my Symbol File (.pbd) location list C:\WINDOWS\Symbols\dll http://msdl.microso ...Show All
Visual Studio Error Installing VS 2005 From MSDN CDs - Setup can't find file _1519_RTL_x86_enu_VSCC_Help_Collection.cab
Hello, I tried to install Visual Studio 2005 Professional from an MSDN CD (December 2005). I do not have abuild number, but during execution of the Setup program, it displays the error message: Error 1311: Source file not found: d:\_1519_RTL_x86_enu_VSCC_Help_Collection.cab. I checked the CD which is the D: drive, and this file is in the root directory. So I am confused I terminated the installtion. I am able to install an evaulation copy of VS 2005 Team Suite from another CD without errors. Is the build on the MSDN CD bad Any ideas Any help is appeciated. Thanks, Harold it sounds like you have a bad piece of media. Try copying the files to your hard drive and install from there. if that doesn't work, contact ...Show All
Visual Studio 2008 (Pre-release) Button Events
Newbie question If if place a button on a window how can I set the mouse click event. I thought I could just click on the button like a normal Winform application and add the event code. Here is how I get by for now. Thanks, Rob Relyea Program Manager, WPF Team http://rrelyea.spaces.live.com ...Show All
Visual C# Erro from VB.net to C#... i think this is very simpler...
Hi ! I do this in VB.net: portaSerial.Write(Chr(header) + Chr(station_n1) + Chr(station_n2) + Chr(comando) + Chr(command_type1) + Chr(command_type2) + Chr(number_blocks1) + Chr(number_blocks2) + Chr(device_lenght1) + Chr(device_lenght2) + Chr(device_name1) + Chr(dv2) + Chr(dv3) + Chr(dv4) + Chr(dv5) + Chr(dv6) + Chr(dt1) + Chr(dt2) + Chr(dt3) + Chr(dt4) + Chr(tail) + Chr(bcc1) + Chr(bcc2)) in C#: globais.portaSerial.Write((char)globais.header + (char)globais.station_n1 + (char)globais.station_n2 + (char)globais.comando + (char)globais.command_type1 + (char)globais.command_type2 + (char)globais.number_blocks1 + (char)globais.number_blocks2 + (char)globais.device_lenght1 + (char)glob ...Show All
.NET Development How to save data from database as xml file?
Hi I have database with one table and 70 columns. Also I have xml schema . I have managed to save the dataset as XML file. But the output xml file contains all 70 columns under one NODE. My question is as follows: 1. Am I able to use xml schema to get well formed xml 2.Please tell if any other best way to implement this Advance thanks. try doing some kind of tsql query , at this end of the t-sql statement add this: FOR XML AUTO, ELEMENTS then save it to a file. ...Show All
Visual Studio Team System How to rollback bad check-in?
How I can rollback files checked in a source control The only things I found that I can specific version before the bad check-in but when somebody will get latest version he/she will screwed again. And also I have all kind of problems when trying to modify and check-in those files I loaded from previous changesets - Source Control detects that newer version is available in database and offers me to merge the changes. Which I am obviously do not want as newest check-in is a bad one. How can I remove this bad check-in from the top of the stack You can also download the Visual Studio SDK. It contains a Team Foundation Power Toy (TFPT.exe) that supports the rollback command. the power toys for Team system ...Show All
Visual Studio 2008 (Pre-release) Alias in LINQ?
How about allowing the use of alias in LINQ I have a blog and I'd like to get the number of comments for each post. Printing post.Comments.Count will query the database for each post, and will pull the post's comments. This is unneeded and a situation I want to prevent. I can't use an anonymous type because this is a set of posts I return from a method: IEnumerable<Post> GetPosts() { ... } I thought maybe I could extend the partial Post class with a property named CommentCount, and assign a value in the LINQ query: from p in db.Posts select p,p.CommentCount = p.Comments.Count() Then the count will be inside the query. Thanks! Is it a BUG var q= from t in BlogData.Insta ...Show All
Visual Basic Can't open PowerPoint presentation in VB2005
I am using the following code to try to open a PowerPoint presentation from within a VB2005 application. Similiar code works fine for Excel and Word. I have added a reference to the PowerPoint 11.0 object library. Imports Microsoft.Office.Interop.PowerPoint Public Class Form1 Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim MyApp As New Microsoft.Office.Interop.PowerPoint.Application MyApp.Presentations.Open( "P:\Production Control\Forecasting\Forecast Accuracy Charts\2005 Fcst. Accy" ) MyApp.Visible = True End Sub End Class I get the following error when it tries to open the file System.Runtime.InteropSer ...Show All
Visual Studio Tools for Office Outlook 2003 display attachment
I hope this is the right forum for this question... I have developed an application (web) that autmatically adds a web page as attachment to a mail. When I send the mail to myself Outlook displays that the mail has an attachment and to view the attachment I have to double click on the attachment icon (nothing strange about that). When I send the same mail to another person the attached web page is displayed automatically in the area where normally mail text is displayed. I assume this is a setting in Outlook but I havent found it and I wonder if anyone knows where this setting is It is desirable for this other person to change this setting so that the attachment behaves the same way as it does for me. Thanks! ...Show All
Visual Studio Express Editions A question about dialogs
I have a ColorDialog in a form,and i want to change the color of some controls in the other form(not in form in which ColorDialog is) and when i change the color in the ColorDialog and close the form ColorDialog.Color property has changed to initial color.How to keep the color which i choose in the ColorDialog after closing the form How to update the form Sorry for my bad english Hi, read the Color property before you close the form and save it in the form you want to use it: void SomeMethodInFormA() { colorDialog1.ShowDialog(this); theOtherForm.YourCustomColorProperty = colorDialog1.Color; this.Close(); } Somehow you must give your form with the color dialog a reference to the other f ...Show All
.NET Development Is .NET 2.0 required to run a Visual Studio C++ unmanaged Application?
I have C++ Applications that I would like to distribute in our company. However the other users have only .NET 1.1 installed. Is there some way to make my Application run on .NET 1.1 " "Larry Priddle"@discussions.microsoft.com " < "= UTF-8 B TGFycnkgUHJpZGRsZQ== ="@discussions.microsoft.com > wrote in message news:caee0db8-a26c-4d95-959e-a1a7076dadfd@discussions.microsoft.com ... I have C++ Applications that I would like to distribute in our company. However the other users have only .NET 1.1 installed. Is there some way to make my Application run on .NET 1.1 Unmanaged C++ has no dependencies on .NET, so this should work irrespective the version of . ...Show All
Visual Studio Express Editions one last question with a boolean
well i have one last question on my program like before. the idea of it is to type in a child's last name and it will read from a txt file with all its info and bring out the info in a rich txt box. otherwise it will say "child not found". well right now no matter what i put in im getting "child not found" Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Dim strChildFirstName As String Dim strChildLastName As String Dim chrChildGender As Char Dim strParentLastName As String Dim strParentFirstName As String Dim chrParentRelationship As Char Dim decAnnualIncome As Decimal Dim intParentAge As Integer Dim intNumberOfKids As Integer Dim Readfile As System.IO.StreamRe ...Show All
