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

Software Development Network >> ignitionflip's Q&A profile

ignitionflip

Member List

Viswa.M
Gavin C
M.A.T
msksurfer
AlexBar100
keroed1
vasudupe
shido
billb59
Aleniko29139
agustin_m
Corby
Andy Jarvis
Wajdi Georges
Spenceee
atulmistry
jaimlin
Eugene Zakhareyev
Erl Egestad
NitinAgarwal
Only Title

ignitionflip's Q&A profile

  • Visual Studio Project Node - Last Question of the day :-)

    I know, I am asking alot the past couple days in this group, and I apologize. I am trying to work through things on my own as best I can, but I hit another wall. I have my command, and i can add it to a folder context menu doing CommandBar vsCmdBarWebProjectFolder = cmdBars[ CommanBarNames .WebProjectFolder]; CommandBar vsCmdBarFolder = cmdBars[ CommanBarNames .Folder]; _cmd.AddControl(vsCmdBarWebProjectFolder, gbmAddinCounter); _cmd.AddControl(vsCmdBarFolder , gbmAddinCounter); This puts my command on the context menu whenever I right click a folder in a project and web project. Nice enough. Now, I am trying to target a project item, preferably specifically a web application, but any proejct node will do. I tried all of the f ...Show All

  • Microsoft ISV Community Center Forums Help Building a Custom Annotation Report View for BSM

    Hi, I am trying to make a custom report for MS Business Scorecard server. I have implemented the sample report from the white paper on building custom report. When I alter that code to output annotations it crashes the report or portal its self. The code is the same except I added the GetTheAnnotations()function and created a new PMServer() which is part of the Server class. Please suggest how to access the annotation with the scorecard API. This is the code used: using Microsoft.PerformanceManagement .Scorecards.Extensions; using Microsoft.PerformanceManagement .Scorecards.Client; using Microsoft.PerformanceManagement .Scorecards.Server; output.Write(HttpUtility.HtmlEncode(GetTheAnnotations())); ...Show All

  • Smart Device Development Type is not defined

    Hi, I have a create a new project (Control Library). And I am using this code. However it returns the following error: Type 'PasswordDeriverBytes' is not defined regarding the SetKey function. (highlighted in bold) What am I missing out. I originally took this code from a windows form (for a desktop not PPC). I really need to get this fixed. Thanks in advance Imports System.Security.Cryptography Imports System.IO Public Class PDACrypt Public Sub New () MyBase . New () InitializeComponent() clientRC2CryptoServiceProvider = New RC2CryptoServiceProvider() End Sub Public Shared clientRC2CryptoServiceProvider As RC2CryptoServiceProvider Private Function SetEncKey( ByVal pwd As String ) As Byte () Dim dr ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DreamBuildPlay is up!!!

    Now go register!!   Actual contest details to come the week of Feb 5th I'm not speaking for Microsoft, but if you want to enter you can always enter a US State and Zip code and phone number for now until they get that addressed. I'm assuming that you can edit your information later once that's been corrected. Again, I don't speak for Microsoft on that, that's just what I would do in your shoes. ...Show All

  • Software Development for Windows Vista Using smartcards in a service - SCardAccessStartedEvent

    Dear all, Migrating our core development platform to Windows Vista, one of our Windows services using smartcards is failing. We have debugged the problem and found that the event provided by the function ScardAccessStartedEvent does not receive notification. This event is supposed to signal when the SmartCard Resource Manager starts. As we have a WaitForSingleObject(event,INFINITE), the service hungs. Testing the same service as an ordinary executable ( registering with -regserver ) I can see it works properly. In XP it works properly both as an executable and service. I have read something about Service Hardening in Vista and I guess it may be caused by privilege reduction. So, I've created some code to enumerate the existing ...Show All

  • Smart Device Development Biometric finger print reading codes in VB

    Where can i find code on biometric reading in VB If there are samples, they would come from device manufacturer. ...Show All

  • Visual C++ Error executing link.exe... VC6

    Hi, could it be that the VC6 linker has a slight problem with my huge Object file The cpp.-file contains about 470,000 lines of code (automatically generated), it compiles fine, but linking is aborted with following message: c:\gsoap-win32-2.7\samples\test_message\soapc.cpp(65536) : warning C4049: compiler limit : terminating line number emission soapServer.cpp stdsoap2.cpp Linking... .\Debug\soapC.obj : error : Internal error during ReadSymbolTable ExceptionCode = C0000005 ExceptionFlags = 00000000 ExceptionAddress = 00462864 NumberParameters = 00000002 ExceptionInformation[ 0] = 00000000 ExceptionInformation[ 1] = 04983 ...Show All

  • Visual Studio Express Editions Richtext,rtf System.ArgumentExceptio

    Try Dim strhtml As String = getdocHtml() MsgBox(strhtml.Substring(1, 4048), MsgBoxStyle.Information, "html") rtb1.Rtf = strhtml ' <== caused "A first chance exception of type 'System.ArgumentException' occurred in System.Windows.Forms.dll" rtb1.Show() catch End Try I could see the hml in msgbox but could not see anything being shown in richtextbox rtb1. what can I do to fix the problem I am using visual basic .net studio express 2005 yes proper means clean with required tags....FYI, a pure html document is not the same as a RTF formatted file... for example all rtf files will have a header that starts off with {\r ...Show All

  • Windows Forms Windows application deployment. VS 2005

    Visual Studio 2005. Spendin some hours for reasearch, I still cannot figure out how to use Windows Installer project for updates. What I could do is create installer (setup.exe and *.msi) files, that can install my simple application. What I cannot do is figure out how to handle updates/upgrades. Particular problems are According to help I have to see properties like "Project code", "RemovePreviousVersion", I don't see them. I don't want to remove previous version, actually. I just want files to be overrited with new ones. Some particular steps should be done. I figured out that Install class should be created, but still, how to prevent some files to be rewritten during update How to identify that t ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. FizzVaders - 360/PC Demo With Full Source

    Hello   Not sure of the best place to post this but I thought best to share some code with you all.   It's a simple space invaders game that will run on the PC as well as the 360 - it uses the two projects in one method.  You'll have to excuse the coding, it's the first thing I've written in C#, previously I used C so it's a bit of a jump.  I always go for something simple to begin with.    It runs in 1280x720 and you can switch between windows and fullscreen using alt-enter.    PC will work with a 360 pad (not sure about others as that's the one I tried). There's a co-op mode as well, just hit Start when in game to join in.  PC keys are...    & ...Show All

  • Visual C# C# Programming-> Constructor & Destructor

    Question:-why constructor is called from top to bottom in inheritance chain and destructor is called from bottom to top   Hi TaylorMichaell C# does have desturctor but it implicitly calls finalize on the base classes,. refer the below mentioned link. http://msdn2.microsoft.com/en-us/library/66x5fx1b(VS.80).aspx ...Show All

  • SQL Server Classroom SSIS training

    Can anyone recommend a live classroom environment SSIS training course Anwhere in the U.S. would be fine. Thanks, Ken Idea Integration provides hands on training for SSIS, SSAS, and SSRS. I think we have some classes coming up too. Send me an e-mail at jason.gerard AT idea.com and I'll get you the info. ...Show All

  • Windows Forms looking for skins

    hi i am looking for skins to use them with vc++ express,can you help me to find them ...Show All

  • SQL Server Average In MDX

    Hi, Can anyone help me, I'm new in Analysis Services 2005, how can I get the average, I did not understand the AVG function sintax any suggestions Thanks. Erika :) Thank you Artur, yes I have looked these examples, I have this code, and y run it in SQL Management Studio in the mdx query, and I get the right result but, how you can put this code as a Calculated Member in Analysis Services 2005 WITH MEMBER AvgAge AS '[Measures].[Age]/[Measures].[AgeCount]' SELECT {AvgAge} ON 0, {[Sex].[Sex].Members} ON 1 FROM PCPCube The error says, incorrect syntax near WITH MEMBer, so what It's wrong. Thanks Erika :) ...Show All

  • Visual Studio Out Of Memory Exception in Sandcastle

    Hi, I'm getting an Out of Memory Exception with Sandcastle when generating documentatin for a larger project. The size "reflection.xml" is about 216 mByte. The error seems to occur with the HTML Compiler when trying to generate the .chm file. I missed your second post. Since it's an xsl issue for CHM we will investigate and provide a fix for next CTP. Internally we build only HxS. Anand.. ...Show All

©2008 Software Development Network