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

Software Development Network >> F.Costa's Q&A profile

F.Costa

Member List

Vikas Pradhan
coastal skier
Rahul Singla
Tom bernard
JimmyDin10SC
ReneeC
Gurpreet Singh Sawhney
Rav3n
aamer4u
DuncanP
jojo123
Curt Zarger
Daltongr419461
FernandoLeite
Pickup
setrio
Bwjohnson84
Scionwest
caligula
Jassim Rahma
Only Title

F.Costa's Q&A profile

  • Visual Studio Crystal Reports: How to make Parameter fields optional

    Hi, Im a newbie at both C# and CR10. Im converting a M/F report to CR10, which actually contained 3 different layouts and selection criteria. I've got the selection criteria working except it needs to be optional. How do I make the CR parm fields optional thxs, drc i created a parm field that i loaded from a column w/ discrete/multiple values that the user may select from to filter the report. they should also be able to skip this drop down and include all rows. the dialog box requires an entry in this field. "Please enter a string". i tried modifying the record selection formula but w/no success. thxs for asking drc ...Show All

  • Visual C# debugging: monitoring an object, conditional break

    In Visual C# 2005 is there a way to monitor an object I have a "global" object that is accessed (and modified) in a lot of places in my code. Is there a way to make the debugger break whenever a particular object is: accessed, and/or modified Without setting a breakpoint at each an every place in my code where access/modification of that object could potentially happen Richard Freytag wrote: You can set a conditional breakpoint by right-clicking on the "ball" representing a breakpoint in your code. A window will popup into which you can enter an expression. Same dialog will allow you to choose if the program halts at the breakpoint is the expression value changes or ...Show All

  • Visual C++ 'System.TypeInitializationException' occurred!!

    Hello, does anyone know what's going on Somehow after I debug my project (without any error), when I run it, it comes with this error message. "An unhandled exception of type 'System.TypeInitializationException' occurred in Unknown Module." I have no problem if I release my project and run it but just debug. Any idea Thank you!! Luis Sounds like you've got a problem with a static initializer in the assembly that just got loaded. Check the InnerException for that exception. Also verify that you've copied the assembly DLLs your program uses... ...Show All

  • SQL Server unable to access "install windows components"

    I didn’t know where to put this so sorry if this is not the appropriate place. I am running Windows XP pro sp2 with visual studio 2005, ms sql server 2005, and a number of other applications. My problem is that I am not allowed to install new windows components(I want to install IIS). When I try to access from either control panel, add/remove programs, Install new windows components or directly from the winXP cd I get the following error in a pop-up form and I can only press "OK": "Another copy of Setup is already running. Complete the other Setup or restart Windows." I am not running the instance more than once. I do this as the first thing after a restart with the same result. When looking at the processes in the task manager I cant see ...Show All

  • Visual Studio Team System End Date for Iterations

    I think it would be useful to be able to specify an end-date for each iteration. William, this was discussed before and is being considered. See below threads: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=549381&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=465638&SiteID=1 ...Show All

  • Visual Studio 2008 (Pre-release) Notify Icon

    I want use Notify Icon in my WPF Application, how to do it In Windows Forms is very simple -> Drag from toolbox of Visual Studio NotifyIcon control and use it ...Show All

  • Visual Studio Express Editions Populating/selecting/manipulating windows file names in a checked list box

    After many hours of trying to solve this problem I can't proceed without some assistance. Thanks Shakalama for the previous helpful information. I need to read in multiple windows filenames into a checked listbox component with the multiselect option. Wrox page s855-857 has some clues but I still can't solve my problem. After the following initialisation: Me .lblApplicationStatus.Text = "Started to retrieve text files..." OpenFileDialog1.Title = _ "Select the required text files..." OpenFileDialog1.InitialDirectory = "c:\ACCESS\somefoldername" OpenFileDialog1.FileName = " " ' am unsure if this is required OpenFileDialog1.Filter = "*.txt|*.txt" If OpenF ...Show All

  • Visual Studio Team System Code Analysis for device projects

    Hello, is anyone able to use the code analysis and unit testing tools on device projects If so, how is this accomplished Thanks in advance, Peter Vrenken All new application and assembly projects. I am looking into all the new features that TFS provides, and porting existing projects is not yet on the agenda. This is the content of the HelloWorld.exe.CodeAnalysisLog.xml: < xml version="1.0" encoding="utf-8" > < xml-stylesheet type="text/xsl" href="c:\program files\microsoft visual studio 8\team tools\static analysis tools\fxcop\Xml\CodeAnalysisReport.Xsl" > <FxCopReport Version="8"> <Localized> <String Key="Category">Category</String> <String Key="CollapseAll">Collapse All</Stri ...Show All

  • Software Development for Windows Vista Not getting drop down from design time validation error icon in rehosted designer

    I am not getting the drop down from the validation error icon in a rehosted designer. I have set WorkflowTheme .CurrentTheme.AmbientTheme.ShowConfigErrors = true ; in the WorkflowDesignerControl() constructor, so I get the icon but not the error message etc. Is there another step Yes - first you need to provide a MenuCommandService. Then you need some special handling code in the ShowContextMenu override - here is an example: public override void ShowContextMenu( CommandID menuID, int x, int y) { ICollection coll = this .GetCommandList(menuID.Guid); if (menuID == WorkflowMenuCommands .DesignerActionsMenu) { MenuCommand last = GetLast(coll); //Needed because of code i ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. GPU "assembly" shader files

    I know how to load and compile C shader shource code into an ID3dXEffect interface. However, this mean I must have the source code with the program. What I want is to deliever the end user with only the precompiled "assembly" code of the effect, and not the source code. So, I would like to know how do I compile C shader source code into assembly, and load this assmebly into the D3DDevice. Also, how do I set global variables of the shader in this case Thanks in advance. Yes, you create the interface using D3DXCreateEffectCompiler(), then you use CompileEffect() to compile it into a buffer (ID3DXBuffer). Now you can store this data in an external file for actual effect creation later ...Show All

  • Software Development for Windows Vista WCF activities, in a Winform host application and state machine WF.

    Hello everybody. I've created a workflow template in which there host application is a Winform app. This application runs a workflow using thread donation technique (using ManualWorkflowSchedulerService). Now, I've created some custom activities: one of them is used for navigation between one form and another in host application. Well, I did an Execute method override and, instead of invoking externaldataservice contract method (like the job done by a CallExternalMethod activity), I called directly the winform application classes for changing forms. Is it correct or is better to call CallExternalMethod activity Another question: I would like to create some custom activities to perform WCF service invocations, like sendmessage, receivemess ...Show All

  • SQL Server SQL Question

    Hi there, I have these tables: Students student_id (PK) student_name Courses course_id (PK) course_name StudentCourse student_id (PK) course_id (PK) If I want to select a student that has 'course1' and 'course2', how do I write this statement This didn't work: SELECT DISTINCT Students.* FROM Courses INNER JOIN (Students INNER JOIN StudentCourse ON Students.student_id = StudentCourse .student_id) ON Courses.course_id = StudentCourse .course_id WHERE Courses.course_name LIKE '%course1%' AND Courses.course_name LIKE '%course2%' The problem is 'AND'. it concate the two course_name(s) to be like this condition: WHERE Courses.course_name LIKE '%course1course2%' Any idea Thanks Hi ShEi, Yes I meant ...Show All

  • SQL Server Print Query

    Hello I wanna ask if there is a procedure that prints out a query result example : exec sp_print 'select * from test' Is there sthg like that Regards Print it to where SQL Server deals with batches of queries that may or may not return a stream of data. You can use SSMS or sqlcmd to view the results of queries, but I am really unclear as to what you are trying to do. ...Show All

  • .NET Development Extra space on right side and bottom of a DataGridView

    Greetings, I'm trying to display the status of a set of "resource managers" (imagine a set of heaps). Each column of my display is a different manager, and the 'rows' are different sizes in each column, and represent the "allocated" or "free" status of that region in the manager. the following demo program shows my problem: I can't seem to get just one column in a DGV: the layout always includes some extra space at the right and bottom. I've made this area RED. I'm convinced its part of the DGV., and not part of the table or panel forms. I believe I need the DGV's to AutoSize, so that the columns of the table are full length. This allows the outer panel to do the scrolling of all columns in parallel. ...Show All

  • Windows Forms How do i bring my application to foreground

    I am facing problem when my application icon is clicked in the taskbar then it does not come into foreground as any other windows application does.Even though i have written code for window activate method.This is on c#. Nevermind the below, it does not work. VOIDVOIDVOIDVOIDVOIDVOIDVOIDVOIDVOIDVOIDVOIDVOIDVOIDVOIDVOID Try getting rid of the BringToFront(); If I am correct, activate already, by default, brings your window to the front. aka, activates it, (bring to front) and then gives focus. Just an idea. VOIDVOIDVOIDVOIDVOIDVOIDVOIDVOIDVOIDVOIDVOIDVOIDVOIDVOIDVOID ...Show All

©2008 Software Development Network