Software Development Network Logo
  • Smart Devicet
  • SQL Server
  • Visual FoxPro
  • .NET Development
  • Game Technologies
  • Visual Basic
  • VS Team System
  • SharePoint Products
  • Audio and Video
  • Visual C#
  • IE Development
  • Microsoft ISV
  • Visual C++
  • Windows Vista
  • Windows Forms

Software Development Network >> Michael Drüing's Q&A profile

Michael Drüing

Member List

collapse
omrivm
AndyPham
Xavier Miller
Bill Henning
Hello_Yo
AndyL
rwerner
Dave Waterworth
neilsmorr888
magicalclick
StarsFire
Vitaliy Kochubiy
GreatFox
Jassim Rahma
Isabel_ve
JFoushee
phamilton7733
qrli
joshi.sumit
Only Title

Michael Drüing's Q&A profile

  • Visual Studio Tools for Office RSS categories

    Can I see what categories an RSS post has using the object model or the UI It would be quite usefull to create Search folders or views based on categories from all subscribed RSS feeds. // Johan I dont think the categories from the feed is stored in the Categories property of the Outlook.PostItem. Am I missing something or is there another way of getting the feed categories ...Show All

  • Visual C# BitArray Constructor ?

    Hello, I will try to explain me in English… So, i use BitArray : byte [] Alarm = new byte [1]; Alarm[0] = 0xff; BitArray b = new BitArray (Alarm[0]); => Size of b : 8 bit But if i make this : byte [] Alarm = new byte [1]; Alarm[0] = 0x01; BitArray b = new BitArray (Alarm[0]); => Size of b : 1 bit. I do'nt understant this. Could somebody explain me Thanks. JOOP. this code: byte [] Alarm = new byte [1]; Alarm[0] = 0xff; BitArray b = new BitArray (Alarm[0]); will result in a size of 255. This has to do with the constructor you are using. Your passing a single byte as parameter and the closest c ...Show All

  • SQL Server Report parameter question

    Hi there, I am a tad confused with an exception that I get whet trying to render a report to pdf. I pass 2 arraylists which contains the name and value of the parameters. I iterate through these lists (which are of equal lenght) and set the parameters. I am very new to this so I am sure that I am doing something stupid somewhere in the code below: ' Create instance of save dialog and set default ' filename and filter saveReportDialog = New SaveFileDialog saveReportDialog.Filter = GetFilterString(pFormat) saveReportDialog.FileName = pName ' Open the save file dialog Dim dr As DialogResult = saveReportDialog.ShowDialog() If dr = DialogResult.OK Then Dim fileName As String = save ...Show All

  • SQL Server GetDataDrivenSubscriptionProperties vs GetSubscriptionProperties

    Is there a similar method for Data Driven Subscriptions like there is for plain subscriptions ListSubscriptions. I would like to get SubscriptionID for use with the GetDataDrivenSubscriptionProperties just as I do for GetSubscriptionProperties. When I execute GetSubscriptionProperties for Data Driven Subscriptions there is no array of Subscriptions. Here is an examole of the code which I execute using rs.exe: Sub Main() 'Dim rs As New ReportingService() 'rs.Credentials = System.Net.CredentialCache.DefaultCredentials Dim DRPlan As DataRetrievalPlan Dim extSettings As ExtensionSettings Dim desc As String Dim active As ActiveState Dim status As String Dim eventType As String Dim matchData As Str ...Show All

  • Smart Device Development How to retrieve debug message of kernel or applications just like platform builder does

    Hi all, I'v read some documents about core connectivity. It's seems that we could use the interface provided by it to implement a pc-side application to retrieve debug messages outputed by kernel or other applications just like all IDE does. Unfortunately, I can't find any sample code from the internet. If someboby coule give me some hints or samples, it will be a great appreciate. Thanks This forum is smart device development related. Since your question is not related to smart device development, it's off topic here. If you’re having a hardware issue, please contact hardware manufacturer or reseller. If you having an issue with 3rd party software, please contact respective software manufacturer or reseller ...Show All

  • Visual Studio Team System Team Build, 3rd Party References, and Web Deployment Projects

    Hi All, This may have been posted before and such, but I tried a few solutions on the web but to no avail. Problem: I have a web projects (not Web Application Project) with many project references and a few 3rd party references. The 3rd party references are automatically added to the web.config file as another <add assembly/> element via the VS.NET 2005 IDE. The 3rd Party References are within Source Control not under the solution file node. e.g. Source Control Structure: $/Code/MyCode/MySolution.sln $/Code/MyCode/MyNameSpace/WebProject/$/Code/MyCode/MyNameSpace/MyProj1/MyProj1.csproj $/Code/MyCode/MyNameSpace/MyProj2/MyProj2.csproj $/Code/ReleasedAssemblies/ThirdParty/Microsoft $/Co ...Show All

  • Visual Studio Team System Question of build?

    Hi, I have this scenario, I have some Team Project called "W" I did some branch of code from W version 1.1, so, I want to know if I run or build my Branch Project this automatically takes all componets from the base project in this case "W" My branch project have only for expample the version 1.2 so what happens when I build my branch project The whole purpose of branching is to create isolation. When you create a branch, a copy of the source code at that level will be created in the branch and both will be isolated from each other. So, I think when you build branch the original branch (trunk) source code will not be built. In fact you can continue separate development in both the branches. That is how you can have bug-fixes in or ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Camera woes

    Hi all. I'm having trouble with my camera class. All is well (walking, elevating, strafing) until I pitch up a bit and start yawing. What happens is, as I'm yawing, the camera seems to be rolling in the direction of the yaw on its own. This only happens when I have my camera type set to FPS, where I'm trying to limit to yawing on the world Y axis. The FREE type works as intended and yaws on it's own local Y (Up) axis. Any ideas Before: http://img435.imageshack.us/img435/2787/ss1ja1.jpg After pitching about 35 degrees up and then yawing to the left several times around: http://img282.imageshack.us/img282/4946/ss2aq7.jpg I pasted my Yaw, Pitch, and BuildView methods below. Yaw public void Yaw( float angle, ...Show All

  • Visual Studio Express Editions Saving list items

    G'Day everyone :) This is a two part questions really. 1. I was wondering if it is possible to save the contents of a ListView box to a textfile on the computer 2. Is it possible to open the saved textfile and that the items are put back into the ListView box Thank you very much for any replies :) Hi again, I found some code that does the job partially not sure if this might help or just give an understanding what im tring to do, here is the code: private void mnuSave_Click( object sender, EventArgs e) { SaveFileDialog saveFileDialog1 = new SaveFileDialog (); saveFileDialog1.Title = "Save" ; saveFileDialog1.Filter = "Text File|*.txt" ; saveFileDialog1.FilterIndex = 1; saveFileDialog1.Overwrite ...Show All

  • SQL Server Sending SQL Mail

    Hi, I am using SQL Server 2005. I have configured my email on Database Mail. when I am trying to send email using xp_sendmail I am getting problem error as: Msg 17925, Level 16, State 1, Line 0 xp_startmail: failed with mail error 0x80040111 I am using following sql statement master . dbo . xp_startmail 'myaccount' , 'mypwd' master . dbo . xp_sendmail 'tomail1@mail.co.in' , 'test' where myaccount and mypwd is my password on my email profile. 'tomail1@mail.co.in' is the destination email address.. thanks The configuration should not matter, as this is a problem at authentication level. Look if the mail server needs an authenticated and allowed user. Otherwise the mail will not be sent and an error will b ...Show All

  • Visual Studio 2008 (Pre-release) ExtensionDataObject features?

    I'm currently planning a WCF based system which may use IExtensibleDataObject to handle future revisions to data contracts, however I was expecting to have a little more visibility into the ExtensionDataObject class. My ideal plan would be to have a version1 client able to receive the version2 data (this works) but then the client should also be able to see if there is anything in the ExtensionDataObject, then I can notify users that the client wont be able to do anything with the additional data in the version2 data contract. The problem is that the extension data is all in private members and its a sealed class. :S Is there another way to do this what a bull design decision. how can you postulat ...Show All

  • Visual Studio Express Editions Can i use the .NET fw like this?

    Is there a way I can compile code without the visual studio, that is, writing code, then just using some kind of compiler (a bit like the compiler for java--"javac.exe") I am ok with non-object oriented programming. You can browse the MSDN library to find help on the command line compiler: http://msdn2.microsoft.com/en-us/library/25fz1td5.aspx ...Show All

  • SQL Server Can I retrieve a result set from a sp into a variable within a Execute SQL Task?

    Can I retrieve a result set from a sp into a variable within a Execute SQL Task I have tried this with just about every combination available with no luck. Do you need to add anything to the exec command I am passing it one variable and it now looks like this "exec sp_name '20071201'" Do I need to change it to look like this "exec sp_name '20071201', " or this "exec sp_name '20071201', OUTPUT". I also have a variable set up under result set and included it in executevariablevalue. Just to be clear the SP is not putting anything in a variable but builds a report in a fiels and at the end does a select @report to display what was built in @report. I hope this is clear. Thanks. ...Show All

  • .NET Development how to zip an Xml Document

    Dear All, I found a library (name Chilkat ) through which i can easily zip(compress) xml file, but it has only 30 days evolution period, could any one please show me way how to compress xml. thanks Hi, you will have to specify the DocumentElement, the aDataSet node as the node you pass in to be zipped, that way all of the nodes will be zipped i.e. XmlTreeZipper .ZipNodeDescendants(xmlDoc.DocumentElement); XmlTreeZipper .UnzipNodeDescendants(xmlDoc.DocumentElement); Mark. ...Show All

  • Windows Forms WebBrowser events not fired

    Hello, as for the Compact Framework here http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=236968&SiteID=1 I'm using a webbrowser control inside a form, but the events Navigating, Navigated and DocumentComplete are not fired. In fact on my dev. station it works [as usual] but not on "classic" station where the Framework 2.0 has been installed [and re-installed] Any help will be greatly appreciate. Thanks. Seb ...Show All

©2008 Software Development Network