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

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

scylla

Member List

miznig
iPrakash
Andy Rich
Tadeusz_EIF
Barry Goldberg
ABMA
mike82y
Mike Martin
Hemant Bhiwajee
Pickleface
HokieTX
HHAAPPYY
kula
Patel Mayur
rakeeb
Anonymous Hacker
RacingJack
Neil M Thompson
rsb_mda
Graeme Foster
Only Title

scylla's Q&A profile

  • Visual Studio Including different app.config in different build configurations

    I've created separate solution configurations because I need to publish my app (for ClickOnce installation) at multiple locations and each has it's own URL, file location, etc. So that works great. But, I also want to have different app.config files for each deployment (since they also have different connection strings and other settings), and I can't find a way to do that. Any ideas Thanks, JR I've ended up using VSS and shared projects to work around this. I just branch app.config for each different project. If there is a cleaner way to do this, I'm all ears. ...Show All

  • Visual Studio Express Editions vs express edition

    i have down loaded the program and run it how do i start to use the program there are no short cuts or exe icons i can find Start->All programs->Microsoft Visual C# 2005 Express Edition Replace C# with Basic/J#/Web Developer depending on what you installed. Visual C++ has its own folder in Start->All programs->Visual C++ 2005 Express Edition ...Show All

  • Visual Studio Adding a New XML TextDocument

    Hi, I'm new the extensibililty interfaces and have managed to figure how to dynamically add a new TextDocument to the application's Documents collection.  I was wondering how to create a new XML document -- meaning the XML editor is managing the new document window   Thanks very much. - Erik The XML Editor has it's own EditorFactory, so you can just call  IVsUIShellOpenDocument OpenDocumentViaProjectWithSpecific with the XML editor factory GUID which is FA3CD31E-987B-443A-9B81-186104E8DAC1 and LOGVIEWID_Code if you want to be sure to get the XML text view rather than some associated XMl designer. ...Show All

  • SQL Server Report Builder Parameter Dependency

    Dear Anyone, Is it possible in report builder that for a report parameter to have a dependency on another report parameter Example: Parameter 1: Country Parameter 2: City The selects a country called Philippines. When the user tries to select the specific city, only the cities that are under the selected country will be displayed.     Thanks, Joseph ...Show All

  • Visual Studio Team System how to create custom code in fxcop for naming of controls in vb.net

    plz tell me how i can create custom rules for fxcop.for example in my company we use name "txtName" for text box.so please tell how i can do this usihg vb.net. Kindly reply me soon its really urgent. Hi deepshikha, This question has been asked a couple of times before. Please see http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=371927&SiteID=1 Regards, JEffrey ...Show All

  • Visual Studio Team System Work Item question

    I'm in the process of working with work items.  I've been using the 'Authoring Work Items Type' document to make some changes, but the documentation does not seem to be complete.  I would like more information on field elements within the work item schema.  I've also looked online, but a lot of the content still seems to be incomplete.  Is there a place someone can guide me to thanks, aaron User names are stored internally in the form of domain\user, so try the following: <DEFAULT from="value" value="domain\aaron" />, replacing "domain" with the actual domain name. Please note that the user must be k ...Show All

  • Visual Studio CR 9 Chart doesnt show in ASP.Net 2005

    Hi, I designed a chart with Crystal Reports 9 and added it to an ASP. NET 2005 page but at the time you try to see it, just doesnt show, the CR tool bar appears but the image containing the chart apers crossed out, however when the chart is exported to word or excel it appers perfectly, what’s going on Can anybody help me ...Show All

  • Visual Studio 2008 (Pre-release) Setting the content of a WPF button to System.Drawing.Icon

    Hi, Is it possible to set the content of a System.Windows.Controls.Button (or other WPF element) to a System.Drawing.Icon Doing so only seems to display the text '(icon)'. When you add an icon to a WPF applications 'resources.resx' file, the designer code behind it exposes it as a 'System.Drawing.Icon' class. Thanks Here is an example (maybe not the best ont but it works): XAML: <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:m="clr-namespace:TestWPF" x:Class="Window1" xmlns:IcoToImageConverter="clr-namespace: ...Show All

  • Visual C++ separate class files for namespaces

    I'm writing some C++ library classes that I plan to use in my applications. Making a DLL. I write the classes in my_class.h, my_class.cpp file pairs. If I wish to organize these classes into namespaces, how do I do it without cutting & pasting the code text into a suingle translation unit Should I be using a MFC library object or a .NET class library Could you clarify your question What do you mean by "single translation unit" Namespaces are a logical organization of code and are unrelated to physical deployment. i.e. One DLL or assembly can contain one or more namespaces and a namespace can be spread ...Show All

  • Visual Studio Express Editions System.Drawing.Graphics

    There you can draw rectangles, arcs, polygon, bezier,.... I tried all methods "draw", But i can't draw a single pixel. How do i From the docs http://msdn2.microsoft.com/en-us/library/9dtfzwyx(en-US,VS.80).aspx : PSet Method In Visual Basic 6.0, the PSet method is used to change the color of a pixel on a form or PictureBox control. If the DrawWidth property is set to a value greater than 1, the PSet method draws a filled circle. An optional parameter is used to specify the color; if omitted ForeColor is used. In Visual Basic 2005, there is no equivalent for the PSet method. To change the color ...Show All

  • SQL Server Conditional MDX ?

    I've got a solution where I need to apply some adjustment to a measure for a given scope: Scope ([Organization].[Organization].&[13], [Product].[Division Temperature].&[Frozen], [Measures].[FOB]); This = [Measures].[FOB] - 1.25; End Scope ; This works fine, but given that this solution uses role based security to limit access to specific dimension data, there are some roles that don't have access to the [Organization].[Organization].&[13] and the MDX fails parsing. Is there any way to make a conditional MDX that I can use to only apply the given MDX SCOPE when the role has access to the dimensions used in th ...Show All

  • Software Development for Windows Vista Designers built to access fields only?

    Designers for activities like InvokeMemberActivity and EventSinkActivity show only fields (member variables) in the drop-down list of available choices for parameters. These lists do not include public properties. Why It's always been our practice to make member variables private and control access to them through public properties. I can manually type in the property name, but the designer tries to add a field to the XOML file (which clashes with the already-existing property). If I remove the field entry from the XOML, everything compiles and runs just fine. So, in other words, the flow engine can use properties just as well as fields. Bu ...Show All

  • Windows Forms Creating custom border

    Hi all, I am using System.Windows.Forms namespace for creating some graphical application on C#. I need to create a custom border for Panel control. Thank you, Duvel Error: protected override void OnLayout(LayoutEventArgs lea) {     if(lea.AffectedControl != null) {       lea.AffectedControl.Location = new Point(lea.AffectedControl.Location.X + bordersize, lea.AffectedControl.Location.Y + ...Show All

  • Visual Studio Express Editions Environment setting on XP64

    I added this  to "Library Files" under tools\options C:\Program Files\Microsoft Platform SDK\Lib C:\Program Files\Microsoft Platform SDK\Lib\AMD64 in that order. Which should go first So far, I have not had any problems with simple tests. ...Show All

  • Visual Studio Express Editions Uses of VC++

    What does it mean on the download/install page where it says: "You can use Visual C++ Express to build powerful .NET Framework applications immediately after installation. In order to use Visual C++ Express to build Win32 applications, you'll need to take just a few more steps." And is there a button to compile and run your C source code without messing around in a cmd window Hi! It's advertisement :) Visual Studio have "Run and Debug" button by default on toolbar (F5) and Ctrl+F5 used to "Run without Debug". It will compile source if necessary. ...Show All

©2008 Software Development Network