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

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

nigliazzo

Member List

viv3
Pwint
Kevin ORiordan
Salvatore Di Fazio
Johan761224
saj14saj
paul holmes
jomon
Norbert Thek
rod_r
swg
Antarctica
leclerc9
Hugo Cordeiro
en_tokan
jschumann.net
ab2304
winstonSmith
Rattlerr
Selectis
Only Title

nigliazzo's Q&A profile

  • SQL Server visual sourcesafe

    Hi, How is it possible to link the stored procedures in sql server to Source Safe The idea is that if anyone goes to sql server and wants to change a stored procedure, he has to check out/in, etc... Just like the way it is done is Visual studio with Source safe. Thanks Query Analyser do not support VSS.. There are third party tools does this... Refer : http://support.microsoft.com/kb/818368 Madhu ...Show All

  • SQL Server Headcount report issue

    I need some help finding the righ approach for a report. I need to do headcounts on a monthly base of the employees. So in a graph I have for each month (category) a bar with a certain headcount (count of employees who are employed that month). The problem is the data I get from the dataset. What I get from database is a name (of the employee), a start and end of employment date. Name StartEmp EndEmp tom 1/jan/05 NULL dirk 1/jan/05 31/mar/06 jan 1/jan/05 11/feb/06 mark 5/jan/05 NULL Now the problem is that I don't know how do to category grouping on each month I want two parameters, a startDate and endDate and the report should show a headcount o ...Show All

  • Visual Studio 2008 (Pre-release) Modifying default style/template for subclassed control

    Hi, I would like to subclass the MenuItem class and add a HighlightBackground property which would make the highlighted background of the control configurable. Currently, the background can be set by using the Background property, but the highlighted background is hard-coded in the framework. My first approach was to use a Style and add a Trigger to set the background based on the property IsHighlighted. This did not work. My second approach was to provide a custom ContentTemplate for the control. I used the template for MenuItem posted in mshelp. This template, however, is not the one actually used by the class. The one used by the class displays a popup with squared corners and check marks. The mshelp version displays a popup with round ...Show All

  • Windows Forms Drag outside window and get drop path

    Hi,  Im trying to find out how i can get the path of a drop when you drag an item off the form and drop into a folder or desktop. Im using C# if that makes any difference. Same as lets say winrar where you drag a file out and it extracts it into the location you dropped it. Thanks for any help,     -Dave It is the other application, the one that created the window onto which your dropped the object, that gets the drop notification. That would be the Windows Shell. Writing Shell drag and drop handlers requires C++, it cannot be done in C# or any other .NET language. This is a technical limitation of the shell that probably won't be resolved for a while. Here's a good project ...Show All

  • Software Development for Windows Vista ACT install on Vista

    Hi, On trying to install ACT 5.0 RC on Windows Vista, the following error pops up: MSIXXXX.tmp - Common Language Runtime Debugging Services Application has generated an exception that could not be handled. Process id=xxxx, thread id=xxxx On trying to debug the application and use a VS2005 instance I get the following message: TypeInitializationException was unhandled. Resource Lookup failed - infinite recursion detected. Resource name:TypeInItialization_Type Can someone please help with this Regards, Sayor. Hello Sayor, Since this is an issue with the ACT RC Beta, I would suggest posting your question in the ACT newsgroups located here http://www.microsoft.com/communities/newsg ...Show All

  • Software Development for Windows Vista TC 20 - App Verifier error messages

    I am performing the following steps for the Certified for Windows Vista Test Case 20 7.Open AppVerifier 8.Attach application’s main executable to AppVerifier including a.Check the LuaPriv check 9.Launch the application 10.View application’s main executable AppVerifier log a.Search log for LuaPriv (Simpilest way to search is to search for “Severity=”Error””) I'm working on isolating the cause of the following App Verifier error generated when launching my app: OpenFileMappingW: Section (\Sessions\2\BaseNamedObjects\windows_shell_global_counters) only grants requested 'READ_CONTROL' to 'NT AUTHORITY\SYSTEM' Has anyone encounter a similar error and successfully tracked ...Show All

  • SQL Server How to refer to the whole cube while using the filter of the cube browser?

    Hello! I've got an accounting cube with balances as measures and amongst others a time dimension. There's also a calculated member which should show the balance of the previous year. This calculated member uses the PARALLELPERIOD-function. So far everything works fine! But while using the filter of the cube browser and selecting a certain year, I can't refer to other years than the selected year. So how can I get the balance of the previous year Thanks for any help! Hello Tigran! Thanks for you advice! But I defined the calculated member inside the Measure Group. So I think that it's called calculated measure. Am I right So do you know any solution in this case I have to use the filter o ...Show All

  • SQL Server Recommended Books

    Can somebody recoommend me books for sql server 2005. I am interested specially in CLR inside sql and Business Intelligence.    Hi, Books for the CLR Inside SQL and new features released already: Introducing Microsoft SQL Server 2005 for Developers (Pro - Developer) by Peter DeBetta A First Look at Microsoft SQL Server 2005 for Developers by Bob Beauchemin, Niels Berglund, Dan Sullivan Books on Business Intelligence are notyet released: Delivering Business Intelligence with Microsoft SQL Server 2005 by Brian Larson due for release on 30 Sept, 2005 Regards, Vikram ...Show All

  • .NET Development ToInt32 Exception

    I recently moved an application developed in VS2005 on Windows 2000 to VS2005 on XP pro. Now I have format exceptions occurring when using Convert::ToInt32 when the string is a "1". To check this further created simple project with button and two text boxes, working bit is: private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { String^ ares = textBox1->Text; int aint = Convert::ToInt32(ares); textBox2->Text = Convert::ToString(aint); } This fails every time when just 1 is entered with System.FormatException - Input string was not in a correct format, or if more than one digit is entered a leading 1 is ignored. Works ok if a leading zero is entered. If I change the second line to ...Show All

  • Windows Forms Unable to cast object of type 'X' to type 'X'

    The actual projects structure is: + MyServerFramework |---QueryComponent.cs ... + MyServerFramework.Design |---QueryComponentDesigner.cs ... The MyServerFramework.Design project has a reference to MyServerFramework, and is compiled alone in its own solution which also contains MyServerFramework, and then placed in a folder that is referenced the SOFTWARE\Microsoft\.NETFramework\AssemblyFolders key so the IDE can find it. The MyServerFramework project is then used in other solutions which don't contain the MyServerFramework.Design assembly. And here is where I'm seeing this error. This happens in the following line, which is in the verb handler in QueryComponentDesigner: QueryBuildStorProcDialog dlg = n ...Show All

  • .NET Development how can we access remote desktop using c# coding

    hai i am a new .net developer. i have to connect a remote desktop using c# coding. can any one help me. Are you talking about using Windows Remote Desktop or creating your own I dont think you can programatically access the Remote Desktop of Windows... Best Regards, Rizwan ...Show All

  • SharePoint Products and Technologies Sharepoint design Question

    Hi, We are going to implement Sharepoint 2007. Over the point we are thinking about having 2 Sharepoint 2007 server. One for intranet and internal stuff and the other for the website and extranet. My question is how much flexible sharepoint 2007 is in terms of design and customization. Can we do asp.net programming and AJAX with it or is that functionality disabled. I might sound a bit stupid but the last time I checked Sharepoint 2003 with asp and i was trying to use Includes, it didn't work. Also since sharepoint 2007 have great content management, would it be a good idea to use it for websites as we might have to develop about 3-4 websites. Last but not the least Can we change the design and give the main sites the feel like any ...Show All

  • .NET Development Looking for advice in designing audio voice recording and playback support for a call-center support system.

    My Platform Operating System: Windows XP SP2 Primary Language: Visual C# 2005 / Visual Studio 2005 Professional Other Languages: Visual C++ 6.0 / Visual Studio 97 and Visual C++ .NET 2005 / Visual Studio 2005 Microsoft Library Interface: Microsoft Multimediat API’s Microsoft Runtime File: winmm.dll Microsoft VC++ Interface Header File: #include <mmsystem.h>   [Extract from MMSystem.h for Visual Studio 2005, Visual C++ 2005, Platform SDK]   /* defines for dwFormat field of WAVEINCAPS and WAVEOUTCAPS */ #define WAVE_INVALIDFORMAT      0x00000000        /* invalid format */ #define WAVE_FORMAT_1M08    & ...Show All

  • Visual Studio 2008 (Pre-release) Is ExceptionValidationRule broken?

    When I try to bind a tooltip to a custom exception thrown in a setter of a business object (picked up by a ExceptionValidationRule), the binding shows: "Exception has been thrown by the target of an invocation".. instead of "age must be between 0 and 100" or something like that! Reflector shows the ExceptionValidationRule explicitly throwing the NotSupportedException in its ValidationResult. Is this the correct behaviour Graeme Just been shown a way to get this working using a UpdateSourceExceptionFilterCallback that is applied to the binding that may be throwing argument exceptions. The filter looks for the NotSupportedException and takes the InnerException if found. Feels like a very ...Show All

  • .NET Development InfoTip Help!

    I am attempting to create an InfoTip extension in C#. I have looked in many different places and have come up realtively emptyhanded. First off I am wondering if I have it registered correctly (.usc is the extension I want the tooltip to show under) the Default value of HKCR\.usc\shellex\{00021500-0000-0000-C000-000000000046}is the GUID of my class. From the documentation in MSDN I think this is correct. Second I wanted to know if my interface definitions are correct: [ComImport, Guid("0000010b-0000-0000-C000-000000000046"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] public interface IPersistFile { void GetClassID(out Guid pClassID); [PreserveSig] int IsDirty(); [PreserveSig] void Load([In, M ...Show All

©2008 Software Development Network