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

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

Ultrawhack

Member List

neelesh0307
bbdobuddy
Maciej Koper
Starkman
anubisascends
x452Alba
vkan
ImAGeek
ZaijiaN
Badpig
Alexey Rokhin
Shawn Wildermuth - MVP (C#)
Gordopolis
vitich
TA_R_EK
Kirkvq
ChillyWilly
Garland
Alina Diaz
Jassim Rahma
Only Title

Ultrawhack's Q&A profile

  • Visual Studio Complex Business Objects

    I have a problem with my report. My desire is to create a report using a complex business object like this: Object +--ID +--Customer (this is an object) +--CustomerID +--CustomerName +--Items (this is a collection of objects) +--Item0 +--Item.ID +--Item1 +--Item.ID Is it possible to create a report with an header (containing ObjectId and CustomerName), and a document detail (containing the list of items) I have already seen the samples on gotreportviewer site, and I tried to use nested data regions (the recommended approach) but with spare results. Can someone help me Thanks manu There is an example on this page to use a subreport for displaying collections: http://www.gotreportviewer.co ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. MDX2 time bomb - question not bitching...

    I installed vs5, and upgraded from dx9 to dx 10 at the same time.... My app requires True Type Fonts, so convertingot XNA was a non starter.. I get this error. This pre-release version of DirectX has expired, please upgrade to the latest version from http://www.microsoft.com/directx If I uninstall dx10, and default back to the previously installed dx9 sdk will it work Thanks, Eric- Make sure that you have the latest DirectX sdk installed on your system, then you will need to make sure that the References are lined up to the correct versions. Note that the MDX2 system is not in the new SDK, only MDX 1.1 ...Show All

  • Visual Studio Team System Event subscription filter - limited to System fields only?

    I'm trying to subscribe to a WorkItemChanged event with a filter expression that uses custom fields -- without success. I've been using Naren's handy tool from: http://blogs.msdn.com/narend/archive/2006/07/26/679440.aspx rather than bissubscribe.exe directly. "System" fields (title, area...) work fine, but no email arrives when I use other fields, including both "Microsoft.VSTS" fields and my own custom fields. Do only System fields work Must I write a web-service extension to check other fields Thanks, Liel Biran I looked into the eventing code and here are the fields that are always passed in event xml: Id AreaPath Title State Reason Rev A ...Show All

  • Visual Studio Team System Team Build Browser

    When I changed the Build Quality to Rejected in the Team Build browser, I want to specify the reason. Is there a way to do add one more column to it -hengyi Go to the Team Explorer, double click on the desired build type under the Team Builds node, and click on the build quality value in the list of builds that shows up. The build quality will turn into a combo box so that you can change the value. Buck ...Show All

  • Smart Device Development Obtain the name of the current executing Function

    Hi I need to obtain the name of the function which it’s executing, in other words the function need to know its name. Thanks for your help. System.Diagnostics.StackTrace lobjStack = new System.Diagnostics.StackTrace(); //Get the immediate caller System.Diagnostics.StackFrame lobjCaller = lobjStack.GetFrame(1); System.Reflection.MethodBase lobjMethodBase = lobjCaller.GetMethod(); string lstrCallingModule = lobjMethodBase.ReflectedType.FullName; return lstrCallingModule; // this will return the name of the class // you can use this to get function name also ...Show All

  • Software Development for Windows Vista Help for Vista compatibility

    We are trying to run an application as a standard user but Vista is still asking for elevation. We need support and it seems hard to find answers. - Does someone can gives us help - Is it possible to find which part of the code cause this elevation Is it possible to test on windows XP the Vista Compatibility The standard user application can't run properly where can I find help Thank you for the quick response. So your application launches and right away it elevates, which it should not do. The log above is the result. Is your application unmanaged code This is a new application correct, it wouldn't have a shim in place Do you have the Application compatiblity toolkit (ACT 5.0) installed ...Show All

  • Visual Basic Window Screenshots

    When you press Ctrl-Alt-Del (and then click Task Manager if you are using XP Pro), you can see a list of all the currently open windows, and whether they are responding or not. How can I write a program that acheives this same functionality Additionally, how can I get the window handle (hWnd) of each window The easiest way to do this from Managed code is to use the Process class. In particular, the static method Process.GetProcesses will return an array containing all the processes on the current machine. You can then determine if a process is "responding" by checking its responding property. You can then obtain the handle to the main window of each process using its MainWindowHandle property. The MainWindowHandle pro ...Show All

  • Visual Studio Visual Studio 2005 Design Mode Question

    Hi There, I have lost the functionality in the Visual Studio 2005 design mode to use the arrow keys to "nudge" my form controls (e.g., textbox, etc.) around the workspace. I can still use my mouse to accomplish this, however it is not precise. Does anyone know how to re-enable these keys Thank you, Doug. Hi - a) No virus or spyware. (ran scan & experiencing no unusual behavior in other areas) b) When pressing and holding the shift-key while hitting the arrows in a web form nothing occurs. However, in a windows form I able able to "nudge" controls. c) Yes, same darn problem with every form. d) No, the form is not source-code controlled. Thanks, Doug. ...Show All

  • Smart Device Development Removing the Title Bar from the Form using Compact Framework

    Hi All, i was wondering if anyone knows of a way that I can remove the Title bar from the UI forms using C#. You used to be able to do this using Win32 dialog boxes, however I can't seem to find out how you can do it using managed code. Anyone know Thanks, Hi Rachad, I'm not sure how to do this in the compact framework but could you let us know what you are trying to achieve I may be able to offer an alternative answer. . . Richard ...Show All

  • Visual Studio Tools for Office Problem deploying Excel 2003 add-in

    Hello, I successfully created an Excel 2003 add-in using VSTO SE on VS2k5. When I run the app in debug mode, the add-in displays properly within Excel. When I run the installer, the add-in does not appear (even on the same machine as the development environment. I ran the client troubleshooter tool and everything seems to be there. For some reason I can only get the add-in to activate when run in vs2k5 debug mode. Any help would be appreciated Thanks, Richard Richard, The value of 3 indicates that the add-in should be loaded at the start of the host application (Excel). First You need to remove the present entries etc which is easiest done by right clicking on the project name in the ...Show All

  • Windows Forms Sample Code: DataGridView progress bar column

    I have a column that has integer data in it, I want to display it as a progress bar in the column so the user can quickly identify lagging processes.   I just started with 2005 and it looks great but does anyone know a quick way to do this I would also like to change the color of the progress bar based on the cells value. I found in the data sources toolbox where I can change the column to progress bar but that does not pass through to the grid.   Thanks for ANY help with this Not sure I understand -- you just add a progress bar column and set the DataPropertyName when your DataGridView is showing content that you want. There is no support for auto changing a column's type, but ...Show All

  • Visual Studio Team System SharePoint Services Upgrade KB924881

    Microsoft has an update for Windows Sharepoint services ( KB924881 ). This fix addresses issues regarding 2007 Daylight Savings Time . Can someone tell me if I can apply this fix to my Team Foundation Server without it affecting TFS in any way. Thanks in advance, Dave Hi Dave, It might affect TFS (I haven't tried the patch so I don't know for sure). WSS patches have a habit of changing the port for the SharePoint Central Administration site. This means that you may not be able to create new projects after applying the patch (the Project Creation Wizard uses the central admin site and the url including the port number is stored in a TFS database table). This is pretty easy to fix, though you do have to modify a row in ...Show All

  • Visual C# Calling Virtual Methods from Within Constructors

    [Reposted from .NET forum] I have an issue and I wonder if anyone has run into this. As I know, you cannot call virtual methods from within constructors safely, because the inherited class is not constructed at the time of base constructor invocation. However, I am creating a base class whose internal workings are sufficiently complex that I had to create a series of virtual functions that the inheritors can modify. These are called when a particular property is set in order to set up the connective tissue underneath. This is not a problem. The problem exists because I cannot use these same virtual calls on either deserialization constructors or in the default constructor to perform these same operations when the class is first in ...Show All

  • .NET Development IIS, Service Unavailable

    Hi, My problem is like this. 1. There's a machine with Windows Server 2003 SP1. And i check there is no IIS installed, So i installed the IIS separately with some issues because when I install using the OS cds, it prompt me message like "Please insert Win 2003 CD SP1" which i dont have it. But i manage to solve it and install the IIS. When i try to open the local host, it says "Service Unavaible". How should i resolve this Thanks and Regards Hi, Sorry I dont get it. What do u mean by configure it I thought by default when i install IIS it should work already During the installation, i didn't have the Windows Server 2003 SP 1 CD, so i use the stardard installation Win Server 200 ...Show All

  • Visual Studio 2008 (Pre-release) Hide the black dottet Border when Control has the Focus?

    Hello, i have defined a Style for a Button, but when the Button gets the Focus, it has the ugly Border, How can i hide it Thorsten ...Show All

©2008 Software Development Network