Software Development Network Logo
  • SQL Server
  • Microsoft ISV
  • VS Express Editions
  • Smart Device
  • Windows Live
  • Windows Vista
  • Visual FoxPro
  • Visual C#
  • VS Team System
  • Visual Studio
  • Visual C++
  • .NET Development
  • Windows Forms
  • Visual Basic
  • Visual J#

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

AlucardJC

Member List

AkoSam
Michael Locker MD
Paul.Davis
BobN
Follish
ddawsonb
Ade Ayonrinde
Melle Dorèl
abstar
tmonk
Michael Barrett
Fabio Cozzolino
Ferry Meijndert
John J. London
Shrekkie
Jeffrey Lathrop
Bill Rubin
Michael Entin - MSFT
Yvon Turcotte
Blackstaff
Only Title

AlucardJC's Q&A profile

  • Software Development for Windows Vista Problem with CryptRegisterOIDInfo in Microsoft "Longhorn" Server Beta2

    When I call CryptRegisterOIDInfo with pInfo parameter pointing on "old-style" CRYPT_OID_INFO structure (cbSize = 28) without pwszCNGAlgid and pwszCNGExtraAlgid members, I get error about invalid parameter. If use CRYPT_OID_INFO with new members (csSize = 36) it's OK. Usually, there are back-compatibility in CryptoAPI for such changes... The repro-example is: typedef struct _CRYPT_OID_INFO_LH { DWORD cbSize; LPCSTR ...Show All

  • SQL Server Parameterized Connect String

    Is it possible to define a datasource which has a dynamic connection string based on a report parameter Specifically I'm interested in using the XML data source, but I would like to use one data source for an unlimited number of files (instead of having a separate data source for each xml file).  I was thinking that maybe I could just pass a parameter into the Render() web service method and have the connection string substitute the correc ...Show All

  • Visual Studio Tools for Office Appointment Instance not closing

    Hi I have created a simple outlook Addin using VSTO. I am adding a button in the standard tool bar of the mail item and done some functionality on button click. I am currently facing an issue in this implementation. When opening a new inspector I will be checking whether it is a mail item or not and then adding a button to the standard tool bar. The following is my code for new inspector open event. Private Sub _Inspectors_NewInspector( ...Show All

  • .NET Development How do I use this method: " Private Shared Sub AssignParameterValues "

    I added the Microsoft.ApplicationBlocks.Data to a .NET solution. No problem. Using its methods and function is clear. No problem. The comments in the methods are clear. No problem.   BUT I am not clear on how to use the below PRIVATE method. I understand the parameters used BUT where and how do I CALL this method. Do you have a sample on how this method is used ___________________________________________________ Private Shared Sub ...Show All

  • Visual Studio Team System CA1000 and Generic Singleton classes

    Hi everyone: I am developing a library that will provide persistence methods for business objects. The Persistence class is generic because it needs to know about the type of object it persists. (The type parameter to the class is the type of object to be persisted.) However, there is no need for the clients of the library to instantiate an instance of the Persistence class each time an object needs to be loaded or saved. So, I want to ...Show All

  • .NET Development 407 Proxy Authentication Required

    Hi All, We currently have an old Win32 (unmanaged) app out there written in VB 6.0 . This is a shareware app that has been around for a couple of years and has been downloaded by a number of users all over the world. This application talks to a managed DLL (a proxy of sorts), which communicates with a Web service . In other words, the managed DLL is really a proxy for the VB client to communicate with the Web service. The Web service is r ...Show All

  • Visual Basic An unhandled exception has been caught by the VSW exception filter

    i get this error when i try to open one my CrystalReports files. A windows pops up and says " Microsoft Development Environment has encountered a problem and needs to close..." When i click on the "click here" link to see details about the error it says: "An unhandled exception has been caught by the VSW exception filter. AppName: devenv.exe   AppVer: 7.10.3077.0   ModName: crdesigner.dll  ModVer: 9.1.1.179    Offset: &n ...Show All

  • Visual Studio Team System Team Project Creation Failed - SQL Reporting Services?

    Having trouble apparently at the connect to SQL Reporting Services stage of creating a new project. I've checked in the reporting services config, and my username is granted all Reporting Services roles. Any help appreciated! Here's the error log (note: values in <> such as <some server> actually contain real information): 10/4/2005 4:10:06 PM | Module: Wizard | Retrieved IAuthorizationService proxy | Completion time: 0 seconds 10/4/ ...Show All

  • Visual Studio Team System TFS Source Control Bug

    If you check out a project for editing, add an object (form, control, class), then delete the object for any reason before checking project in, you will get an error that the file can't be found for the check-in process. I need a workaround for this.  How do I check in my changes without that file   The only solution I found was to undo all pending changes which deleted all of my code changes in the project, then check back out and re- ...Show All

  • SQL Server changing timeframes with stock data

    I have stock data in 1 min intervals and would like to convert it into other timeframes (e.g., 10 min, daily, monthly). Here's is some sample data and my final goal: [DateTime] [Open] [High] [Low] [Close] [Volume] 10-Feb-05 12:10:00 3.88 3.88 3.87 3.87 10 10-Feb-05 12:11:00 3.87 3.87 3.87 3.87 2 10-Feb-05 12:12:00 3.86 3.86 3.86 3.86 1 10-Feb-05 12:13:00 3.85 3.87 3.84 3.85 23 10-Feb-05 12:14:00 3.85 ...Show All

  • Visual Studio Express Editions Q: about StreamReader

    hi, i want to know the total number of lines in the document because i will use it as iteration statment like or example for(i=0, i < totallinenumber, i++) myarray = mystreamreader; is there any way to do that or at least to get the lines to my array also i want to know if the streamreader riched to the end of document or not thx You can simply read line with a StreamReader.ReadLine, this will give you a string ...Show All

  • Visual Studio Team System Serious problems with merging files

    We have found serious problems with working on TFS source control with few branches. Many of changes occasionaly lost after merging files. I found exact description of this problem at http://blogs.conchango.com/jamesdawson/archive/2005/12/20/2518.aspx and it looks unbeliveable that TFS have so serious problem. Could be this situation solved in some way For us could be already helpful to switch off automatic merging completely (until fixing th ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Sample framework on a panel

    Hi, As a lot of people have already said the sample framework is great but it is very big and thus hard to understand. I would need to run the sample framework inside a Panel instead of it always opening a new form. Has anyone implemented this Thank you, saso I did a little experimenting myself and came up with this: I created a DirectXPanel class which creates the framework and instead of the original E ...Show All

  • Windows Forms How to display the lookup value in a DataGridViewComboBox in view mode

    When a DataGridViewComboBoxCell is not in edit mode, the value displayed in the cell is from the DataPropertyName I guess. However, I would like to display the looked up value. What I want to attain is that when user looks at the grid, without editing any combobox cells, then the looked up values should be displayed in all of those combobox cells. Usually I would have a lookup table in my database; with an integer column and a string ...Show All

  • .NET Development Using java collections in .net

    is there any such dll available that encapsulates the java.collections namespace/package which i can download and use in the .net framework(because i personally feel that .net version 1.0.3705 does not provides its users with  a rich and optimized collection framework) Thanks Rohit You want a better collections package... http://www.wintellect.com/powercollections/ David ...Show All

©2008 Software Development Network

powered by phorum