kuchlerm's Q&A profile
Smart Device Development Return xml contents from RSS Feed.?
Hi All, When i give RSS feed as input i should get the xml contents related to that RSS as string.For example if i give the sample RSS Feed http://www.thoseleftbehind.org/podcasts/rss2.xml i should get xml contents as string to my PPC. So how to do it in netcf Use the XML parser - http://www.pocketpcdn.com/articles/xmlfaq.html (Already gave this answer in a different thread) ...Show All
.NET Development How to do a programmatic update of table
Assume a table called Test with three columns and n rows: ID integer identity primary key UpperLimit integer V1 integer Test is part of a SQL Server 2000 database on a server. I want to read and update the table using the following algorithm for i = 0 to n-2 test(i).V1 = (test(i).UpperLimit + test(i+1).UpperLimit) / 2 next test(n-1).V1 = (test(0).UpperLimit + test(n-1).UpperLimit) / 2 How w ...Show All
Visual Studio Team System Where is the Check out ?
I've been playing for some time with the TFS part in the sdk. There is something I didn't see.I didn't see CheckOut command or anything similar to it. Saw checkout,get... but no CheckOut command or any event linked to it. Doe's it go by a different name Avi The Workspace class exposes methods for pending edits against items. For example: PendEdit PendAdd PendDelete PendBranch Pe ...Show All
Visual Basic Adding Timestamp to RichTextBox
how do i go about doing so all im looking for is the time "HH:MM AM/PM" hi, addin time stamp u can do like this: Dim time As Date = System.DateTime.Now 'first is printed in console using Format function Console.WriteLine(Format(time, "Medium Time")) Console.WriteLine(time.ToShortTimeString) I have used console, but in your case, u just write string to your's RitchTextBox. Hope this helped, ...Show All
Visual C++ How can I solve below template partial specialization problems?
I want to specialize template when return type is void. ========================================== template <char const*& T, class U, class X> class CSpecialize { public: CSpecialize(X (U::*pfunc)()) : m_pFunc(pfunc) { } X (U::*m_pFunc)(); }; template <char const*&T, class U> class CSpecialize<T, U, void> { public: CSpecialize(void (U::*pfunc)()) : m_pFunc(pfunc) { } private: void (U::*m_pFunc)(); }; ...Show All
Software Development for Windows Vista Sample XPS documents
Does anyone know where I can find sample XPS documents to view I've downloaded the WinFX runtime, so I should be able to view documents through Internet Explorer, I think. Now I just need some XPS to look at. Any help would be greatly appreciated. The XPS spec and the Open Packaging Convention spec packages include the spec in XPS .container format and the files can be viewed with the XPS viewer. You can dowload the spec packages at ...Show All
Windows Forms Read line by line
Hello I have a TextBox full of lines of text and now all I want to do is just read them Line by Line ! Regards Here is some sample code that might help you with your issue: string[] strArray = MyTextControl.Text.Split(Environmen ...Show All
Visual Studio Team System Team Foundation Web Services
Hello Can somebody tell me which are the url for the web services in Team Foundation Server. I want to do an application, that add an attachment to the portal. I’m using Microsoft.TeamFoundation.Client, Microsoft.TeamFoundation.Proxy.Portal dll’s to do this. I thinh it can be done using the method "Lists.AddAttachment", but it needs the url to the webservice in TFS... //My code: Lists lists = new Lists (); ...Show All
Visual C++ CDC Issue
<wdhough@discussions.microsoft.com> wrote in message news:069f1a60-2d1e-46dc-8474-f2de281812e1@discussions.microsoft.com > I have an application that draws a diagram in the form of a bitmap > and then displays this in a window. There are limits placed in my > code that do not allow > the CSize properties cx and cy to be set to more than 32000 in > 'SetViewportExt' and 'SetWindowE ...Show All
Visual J# which version of JDK is J# 2005 compatiable with?
I am not talking about web service, applet, nor enterprise. but about plain java applicaitons with file access and Gui user interaction, text classes etc. Some people said J# 2005 is JDK 1.3 compatiable. Is that true Does it have swing classes I would stil be happy even if the GUI user interface is more windows like than Java, so long it just works. That also applies to file dialogs. What about jdk 1.42 ...Show All
SQL Server Error: An error occurred due to no connection
This error is for Nov RTM running under "NETWORK SERVICE" account. I created a data source "MyDataSource". It looks like: <DataSource xmlns:xsd=" http://www.w3.org/2001/XMLSchema " xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance " xmlns:dwd=" http://schemas.microsoft.com/DataWarehouse/Designer/1.0 " xsi:type="RelationalDataSource" dwd:design-time-name="2d2b4fc8-af5c-4314-9155-384afd11fb70" xmlns=" http://schemas.microsoft.com/analysisse ...Show All
Visual Studio 2008 (Pre-release) Proper documentation for WPF?
Hello! Is there some proper written description of WPF somewhere, for instance for download from the Microsoft website. Concerning proper I mean some documentation which present a complete conceptual driven presentation of WPF with operational directions of examples. I think the SDK browser is very poor in presenting an overview of the area. I think it works much better for situations holding only a small amount of information. By the w ...Show All
Visual Basic Adding expandable Container/Panel Control like on 'My Computer' Form
I am trying to find an expandable container/panel control like the one found on the left side of the 'my computer' form. I am currently migrating from VB6 to VB2005. Any thoughts on these controls would be helpful. Thanks Zach there is a panel control in VS05 and there are also splitter controls that work really well with docking and anchoring for a dynamically resizing forms ...Show All
.NET Development FtpWebRequest
.NET Framework 2.0 c# I need to access a FTP Server. I'm using FTPWebRequest as described in visual studio 2005 documentation. Everything works fine except the following: 1) I dont know how to change de current working directory on the server to the parent directory 2) Why cant I do this, or why doesn't work In Internet explorer works! 3) how can I send some FTP low levels commands to the server using .net 2.0 ftp api. < ...Show All
Windows Forms problem about TreeView.SelectedImageIndex property
hello, I have problem. The TreeView, I can't make it work! the TreeView.SelectedImageIndex property, why is it there I don't need or want the image that belongs to the selected treenode to be changed. I just want it to keep in it's original state. But whenever a node is selected, it's image changes, and I can't find out a great deal I can do about that! I tried to draw the treeview myself, but it was irritati ...Show All
