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

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

AndrewBadera

Member List

SanjayAmladi
MarkJC
adam kromm
GregWold
BavBoy
GanDeng
hoos30
ucolinfo
Joe127
BogN
AravananRaman
qmshou
Jayapal Chandran
MGS21168
Arnolds
Pimp Daddy
Ngoc Bui
Bill Records
Marcus Deluigi
BtrGoneThanJail
Only Title

AndrewBadera's Q&A profile

  • Windows Forms I need to build a DataGrid which is grouping rows (like Outlook pane)

    I need to build a Windows DataGrid which is grouping rows and keep under a header (like Outlook pane) any help You'll need to use a 3rd party control to do this. The DataGrid does not support grouping that shows grouping headers and such. -mark Program Manager Microsoft This post is provided "as-is" ...Show All

  • Windows Forms Build MSI with no uninstall

    How can I create a Setup Project that doesn't leave an entry in the Currently installed programs list I just want to install some files on top of an existing installation. If your first setup was an MSI install, I believe the Visual Studio recommended way is to use RemovePreviousVersions so that the old version is removed and the new one replaces it. ...Show All

  • SQL Server SQL Server 2005 - Generate DB Script...

    In SQL Server 2000 we were able to set the scripting formats like adding the script to drop the object if exists and then re-create the object.  Could anyone tell me how would I do that in SQL Server 2005, please The options I am talking about are like shown below: if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Category Sales for 1997]') and OBJECTPROPERTY(id, N'IsView') = 1) drop view [dbo].[Category Sales for 1997] GO CREATE TABLE [dbo].[Categories] (  [CategoryID] [int] IDENTITY (1, 1) NOT NULL ,  [CategoryName] [nvarchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,  [Description] [ntex ...Show All

  • Visual C# Access a bit in a Byte, Help!

    Im trying to access a bit in a byte. does anyone know how to do this i cant seem to find any documentation on it! more specifically i want to access bit 2 in the byte that containes boolean values, and i want to return whatever is in bit 2 (whether it be true or false). can anyone help! please! John, Thanks for your reply. I used your other suggestion in the other thread. ...Show All

  • Windows Forms Clickonce - Unable to Sign Application

    Error    1    Cannot publish because a project failed to build.        1    1    PMtool2 Error    2    SignTool reported an error 'Failed to sign bin\Debug\PMtool2.publish\\setup.exe. '.    PMtool2 I get these errors when I try to publish this to any location. I have an Authenticode Cert for application signing installed, and it sees it and all it's details correctly from what I can tell. I get no build errors at all when just building the application normally. I've searched the help files, and online, and ...Show All

  • Visual Studio Team System TypeNamesShouldNotMatchNamespaces AKA CA1724

    This rule seems overly constraining. With namespaces (and the advent of the global namespace in C#) and some of the names of the nested namespaces in the FX, it seems to me this rule will generate much noise (e.g. the following nested FX namespaces are really general and could apply to many different projects/applications: Common, Services, Collections, Design, Util, Resources, IO, Configuration, Internal). "Design" is a nested framework namespace example where the FX doesn't follow this rule, and seems to actually encourage application-defined nested "Design" namespaces. Comments, opinions Peter, This rule ...Show All

  • Visual Studio Express Editions Sharing files between threads - how?

    Hi, I am trying to build an application where one thread samples values and writes them in a file, while another thread reads that same file, processes and displays the data. How can I manage the file is open to both threads and manage the file with streamwriter and streamreader More info: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=217070&SiteID=1 Thanks all Jake I wouldn't like to make an iron-clad guarantee but I very much doubt that you could have a StreamWriter and StreamReader open on the same file. I think you'd have to use some sort of random access stream that you could ...Show All

  • Visual Basic Create Mdi Child Form

    Hi, I am new to vb.net and wants to creat a desktop application using mdi parant and child form. please tell me how can i creat a mdi child from in vb.net for a mdi parant from. thanks This is wrong: Dim AboutF As AboutForm AboutF = New AboutF AboutF.Parent = Me AboutF.Show() it should be this: Dim AboutF As AboutForm AboutF = New AboutF AboutF.MdiParent = Me AboutF.Show() ...Show All

  • Windows Forms Different color for each listbox (or CB) item

    Is it possible thx Hi, Would you like to try out with listview control Below is the sample code link. Link: http://www.codeproject.com/cs/miscctrl/FadingListView.asp regards, Bhanu. ...Show All

  • Visual Studio Team System Warehouse Troubleshooting Guide

    This will be a living document and as we troubleshoot issues, we will add to the query and document. It will culminate in a consistency checker tool which automates the checking and ultimately other functions like kicking the warehouse etc... Feedback is welcome and I will update this data. Symptoms: The data in the reports is stale and doesn’t seem to ever get updated. The reports error out. An error has occurred during report processing. (rsProcessingAborted) … Background: Data in the operational stores (Work Item Tracking, Version Control, Team Build, Integration Services) is pulled into a relational database (TfsWar ...Show All

  • .NET Development Programming WMI in C#

    I have seem many articles which teach programming WMI in C++ and COM.  Can I do it in C# I understand that there are many unmanaged component in current versions of Windows.  Does it means I can only program WMI in windows Longhorn Thanks Hi, You can use WMI with the .NET Framework. The System.Management namespace provides a set of managed-code classes through which .NET Framework applications can access and manipulate management information provided from any source. http://msdn.microsoft.com/library/default.asp url=/library/en- us/cpguide/html/cpconusingwmiwiththenetframework.asp Regards, Vikram ...Show All

  • Visual Studio Team System Copy-Past error?

    Hi there! Have you noticed this In Agile Software Process - WorkItem Tracking - TypeDefinitions - risk.xml file there is this block: <!-- **************** Test Integration Fields ************************************************* --> < FIELD name = " Test Name " refname = " Microsoft.VSTS.Test.TestName " type = " String " reportable = " detail " > < HELPTEXT > The name of the test that found this bug </ HELPTEXT > </ FIELD > < FIELD name = " Test Id " refname = " Microsoft.VSTS.Test.TestId " type = " String &q ...Show All

  • Windows Forms Customizing display settings

    I am currently coding a client-server application.  My task entails that the server workstation be able to set the display settings of the client upon startup.  How do I change the display settings of a client workstation programatically in Visual Basic ...Show All

  • SQL Server Problem referencing a column in a Table Variable in a query.

    Hello All I have the following problem running an sp with a table variable (sql server 2000) - the error which occurs at the end of the query is: "must declare the variable @THeader" . @THeader is the name of the variable table and the error occurs with such references as @THeader.ApplyAmt, @THeader.TransactionHeaderID, etc. declare @THeader TABLE ( TransactionHeaderID [int] NOT NULL , PatientID [int] NOT NULL , TransactionAllocationAmount [money] NOT NULL , ApplyAmt [money] NULL ) - create table variable insert into @THeader select TransactionHeaderID,PatientID,TransactionAllocationAmount,ApplyAmt from mtblTransaction ...Show All

  • Visual Studio Tools for Office Can not add Msosec.dll to the fully trusted assembly list

    Hi All, Following the "How to: Grant Permissions to Documents and Workbooks in Shared Locations", after performing the step 5 (click Select) in "To add Msosec.dll to the fully trusted assembly list" I've got an error message, saing:"Unable to add the selected assembly. The assembly must have a strong name (name, version and public key)." Any suggestions would be greately appereciated... Boris Yes, Misha! That was it. Thank you BTW, the correct command should contain the FULL PATH to the assembly, like this: >caspol -m -af "G:\Program Files\Microsoft Office\Office11\Addins\Msosec.dll" Boris ...Show All

©2008 Software Development Network