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

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

CSharpGuy

Member List

Bill Gauvey
Anthony Chennai
Thomas Pagh
Cla82
buzzy
london257
odujosh
Cynicszm
dimple_dimple
davierik
Pratap
slothmo
Damon Tivel MSFT
Mr. Pop
gcollins
SoloCoder
yaoyao
Kiranboi
vitalidov
HannibalCannibal
Only Title

CSharpGuy's Q&A profile

  • Windows Forms One or more errors encountered while loading the designer

    Hi, I was working on a simple Winforms C# project. I created a few of TableAdapters using the designer and attached them to datagridviews on my form. After realizing that i did not want one of the tables I went to the XSD designer and deleted it. After that the project still excutes ok but the form designer is unable to display the form in design view I get the following error: One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may require code changes. Clicking on each error will take you to the line of code that caus ...Show All

  • Windows Forms Multiple Field Validator

    What is the best way to put a multiple condition validator on a textfield   ie. a password texfield can't be empty, has to match previous password, and has to be greater then 6 characters.  Do you need to add each validator seperatelly or can you use logical operators like AND or OR to bind them together. SB ...Show All

  • Windows Forms saving filename in configuration file later retrive using merge module

    my objective which i have to achive is that when my setup starts i will take the filename as an input which will be later used in the merge module so how can i retrive that file name from the configuration file or .ini file plz guide me ...Show All

  • Visual Studio where's vss 2005 in vsts 2005?

    Neither VSS 6 nor VSS 2005 shows up in the VSTS 2005 IDE. VSS 6 worked just fine in VB6 and .Net 2003, and installing VSS 2005 works in VB6 (!) but nothing at all appears for 2005 Help!      Sean Hi Sean, I understand you already have VSTS and VSS2005 installed on the machine. You'll need to set the active provider in VSTS to enable source control integration. In VSTS, Tools/Options/SourceControl/Plug-ins -> set to "Microsoft Visual SourceSafe" or "Microsoft Visual SourceSafe (Internet)" Alin ...Show All

  • SQL Server Change a dimension table name?

    Does anyone know how to change a dimension table without copying and pasting Not sure what you are talking about. What version of Analysis Services do you use Edward. -- This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All

  • Software Development for Windows Vista WorkflowInstance.GetWorkflowDefinition and running instance

    Hello, As it was mentionen in earlier posts in this forum, WorkflowInstance.GetWorkflowDefinition returns meta data information of the worklfow. That is to say workflow property values updated during runtime would not be included in the returned Activity instance. I would like to ask you how would it be possible to get the exact copy of a running workflow instance from the host application (including values set to activity properties at runtime) The next question I would like to ask is if it is possible to use WorkflowInstance.ApplyWorkflowChanges method to update activity property values for a running workflow instance Or this meth ...Show All

  • Visual Studio SUPPRESSING DUPLICATE VALUES AND THEN GETTING A SUMMARY

    I have one grouping in my file (SOE Events). I have used the following under Insert, Section, Details, Suppress (No Drill-Down formula. {4-5TSOEEVENTTIMES.EVENT_NUMB}=NEXT({4-5TSOEEVENTTIMES.EVENT_NUMB}) This works and suppresses the duplicate Event Numbers. I then try and do a Summary of the Event Time Field by Group and it gives me a summary time of all the records including the ones I suppressed. How can I get A Summary of only the records left on the screen and not all records combined (both Suppressed and Viewable) ...Show All

  • Visual Studio Tools for Office How to do this in C#

    I am trying to create PivotTable in Excel using c# The full code for the funtion is as follows; public void stgPivot() { Xl.Application xlApp; xlApp = (Xl.Application)System.Runtime.InteropServices.Marshal.GetActiveObject("Excel.Application"); Xl.Workbook wb = xlApp.ActiveWorkbook as Xl.Workbook ; Xl.Worksheet ws = xlApp.ActiveWorkbook.Worksheets["Sheet2"] as Xl.Worksheet; Xl.PivotCaches pch = wb.PivotCaches() ; pch.Add(Xl.XlPivotTableSourceType.xlDatabase,"Sheet1!R3C2:R28C9").CreatePivotTable(ws.Cells[8,3],"PivTab1",Type.Missing, Type.Missing); Xl.PivotTa ...Show All

  • SQL Server Option for accessing external DLL's from the CLR

    What are my options for calling external DLL's from SQL CLR, I used to use the sp_OA method but these have been converted to .Net assemblies and I do not want to use interop for several reasons. Any suggestion would be greatly appreciated. J- Are the external DLLs .NET assemblies, or...   If they are not, interop is really your only choice (or turn back on object automation).  If they are assemblies, just load them into SQL Server (using CREATE ASSEMBLY) and go for it...   -- Adam Machanic Pro SQL Server 2005, available now http://www..apress.co ...Show All

  • Visual Studio Team System TfsBuild on buildserver fails after upgrade to RTM

    Hi All, We upgraded the TFS bits to RTM from B3R last night. Everything seems to work except for the daily build continuous integration. If I try to run TFSBuild start <server> <project> <builtype> it gives me an: Access Denied: You need the 'Update Build' permission to perform this action. I run this command form the actual build server (is that still OK ) I double checked the acl on the drop share, my account and the service account have full rights. My account and the service account are part of the BuildMaster and BuildSevices group on the TeamProject... Any clever hints will be very welcome... ...Show All

  • Visual Basic Problem with ActiveX control

    Hello Everybody, my English is not very good, but I will try to explain my problem. I use Shickwave Flash Object in my project. Because this control don't have any mouse events like OnMove etc, so I create MyControl and use inherit. I want to change control's context menu on menu of my own. Public Class flash     Inherits AxShockwaveFlashObjects.AxShockwaveFlash    Public Const WM_RBUTTONDOWN = &H204    Dim point As New Point    Protected Overrides Sub WndProc( ByRef m As System.Windows.Forms.Message)    Select Case m.Msg  &n ...Show All

  • Visual Studio Team System TF output not conducive to efficient use from scripting

    Our builds are heavily scripted.  TF seems to output extraneous information which causes us to have to do unnecessary string parsing.  For instance, in over SCM tools usually there is a very easy way to get just the items in a directory that are under version control.  But in TFVC, if the best I can do is this: tf dir C:\proj\somedir but then I get this output to deal with: -------------- $/Proj/somedir foo.cs bar.cs baz.cs 3 item(s) -------------- So I have to lop off one line from the beginning and 2 lines from the end.  And sometimes it is 3 lines from the end because of an occasional extr ...Show All

  • .NET Development Beginning .Net Framework Beta 2.0

    Hi Experts, I have installed the .Net 2.0 so that I can use the serial communication namespace for some software development. What I heard is that .Net 2.0 have this. However I hope you experts can guide me on what I need to look out for. Currently my system have the following: 1) Windown 2000 SP4 2) .Net Framework 1.1 (as well as 2.0 beta) 3) Visual Studio .net 2003 What I did: Downloaded the .Net Framework 2.0 Beta Redistributed and run the dotnetfx I got from your website. Some questions I have in mind are: 1) Can I use Visual Studio 2003 with the .Net 2.0 Framework How 2) Will the 2 versions ...Show All

  • Windows Forms OnMouseMove application start taking more memory VB.NET

    Hello,   I have created a VB.NET application.   On first form i have Textbox, Datagrid, Combo box and checkbox control.   There is no mouse move event in the form or datagrid.   But when i move the mouse on the form and see the memory usage    in task mamager..   Memory increase by 4k or 8k on each mouse.   Why it is behaving like that i have no Idea..    i tried with new project with one form, with one button button there also    memory get increased..    any idea to control not to increase the memory.    I have using Visual Studio 2003, ...Show All

  • SQL Server How to pass the Excel Sheet Names to the Excel Source Control through variables

    I am trying to get the contents of the Excel Files dynamically and dumping into the SQL Database using SSIS. Through WMI Event Watcher, I could find when one or more Excel files dumped in a particular folder and using ForEach Loop Container I was able to take all the filenames and pass it through Variables. But at the same time in the Data Flow, I have to pass each Sheet of an Excel File to the Excel Source control and export the data to my SQL Database using OLEDB Destination. For that I need to get the names of each sheets in an Excel File and pass it to the Excel Source Control through variables. But when I give Data Access Mode as & ...Show All

©2008 Software Development Network