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

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

GiampaoloSanRemo

Member List

compuder
Avy32
DaddySauce
barkingdog
Sayure
Mike Oksuzyan
MatHobbs
M Parker
jon albinini
ruleDWorld
sks04
TGirgenti
Sean_Sinclair68127
scripteaze
averge joe
KBV_RBJ
Sune Henriksen
Fradam
paso
coolcoder
Only Title

GiampaoloSanRemo's Q&A profile

  • Visual Studio Team System Performance counters from a Linux server (web/loadtest)

    Hi, I'm running various load tests, testing web services on windows and linux servers (using axis). Adding performance counters from the windows servers works fine, but how could I collect performance data from the java web services running on Linux It would be great if I could add the Linux counters directly in the load test counter sets. That way it would be added to the Load Test Result Store (DB) directly. Is there support for SNMP How could I solve this in any other way If this is not possible, is there an API to insert "custom" performance data into the load test result store (db) without accessing SQL Server directly That way maybe I can "poll" the performance data from the Linux server some other way... ...Show All

  • Visual Studio 2008 (Pre-release) Triggers on TreeViewItems and escaping the routing

    I wanted to give a highlight to a TreeViewItem in a tree like this: <Style TargetType="{x:Type TreeViewItem}"> <Setter Property="IsExpanded" Value="True" /> <Style.Triggers> <Trigger Property="IsMouseOver" Value="True"> <Setter Property="Cursor" Value="{x:Static Cursors.Hand}" /> <Setter Property="Background" Value="LightGray" /> </Trigger> </Style.Triggers> </Style> But when I do this the TreeViewItem parent gets highlighted along with the Item i've moused over. I tried IsMouseDirectlyOver, but that didn't work as I'm sure the mouse was directly over a TextBlo ...Show All

  • Visual Studio Team System MS Project 2003 Dates not retrieved from TFS

    When retrieving work items using MS Project, dates are not retrieved correctly. The dates can be viewed using Excel or Team Explorer. Any ideas Smitha, One more thing: I modified other fields in the XML file to be PublishOnly="true" and uploaded the mapping file successfully to the correct project (according to the command-line tool), yet those fields in Project continue to Refresh. Looks like the mapping xml file is not read properly by the system. Any pointers Also, is there logic built in to MS Project to override any hard date values with automatic calculations of the Start and Finish dates based on Remaining Work The only time the dates seem to change is when I modify the Remaining Work field and refresh th ...Show All

  • Visual C# Custom UserControls

    I want to add a custom UserControl to a form and be able to change it's location (pozition on form) at runtime when I click and drag the mouse..Something like working with graphics..but i want to be able to change the controls i make. Can someone help And to resize the control, place a small pannel with dock as bottom and then place another pannel inside that pannel with dock as right. Here the inner pannel name is pnlBottomRight private void pnlBottomRight_MouseMove( object sender, MouseEventArgs e) { if (e.Button == MouseButtons .Left) { this .Width = this .Width - (posX - e.X); this .Height = this .Height - (posY - e.Y); } } private v ...Show All

  • Visual Studio Remote debugging with Vista

    I'm trying to remote debug from an XP system to Vista RC1 using MSVCMON. I run MSVCMON elevated on the Vista system and when I try to start the session, Visual Studio tells me it can't find the remote path to the exe however, the path is correct. When I don't run MSVCMON elevated, VS tells me that the process I am trying to run needs to be elevated. Any ideas Thanks in advance. Ray ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Question: 2D development for both widescreen and standard on 360

    If you want a 2D game to run on 360 for both widescreen and standard TV sets, would the easiest solution be to 'center' your game to fit a standard TV and have verticle bars on either side for people using widescreen What resolution should you develop your game in so it doesn't end up being stretched when running on a 360 Thank You. I'd say your problem is the 5'th parameter. That is usually set to the ratio between the screen width and the screen height (for PC's this is most of the time 4/3 (800/600, 1024/768)). This is why the stretching appers. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Is XNA GSE the first console SDK for the masses?

    tried searching, couldnt find anything. but is XNA GSE for the most part, the first SDK for a game console for the masses well, besides way back in the day before NES, but I mean when it came to the N64 and on generation of consoles most consoles require that you void their warranty to mod them to play custom made games, or the $1000+ dev version from the manufacturer. I may be understanding console dev incorrectly, but I read that the Wii dev console is about $1000 or something. even tho XNA GSE isn't allowing you to make fully working xb360 games that can be distributed, it seems like one of the first available to be pushed by the manufacturer to make indie/solo games without the need to illegally mod your xb360... just the $100/ye ...Show All

  • Visual C++ Getting the sub directories

    How do I get a list of the subdirectories for a given directory in VC++ Thanks, KarthikR ...Show All

  • SQL Server How to detect at the subscriber that a replication is being (re)initialized.

    Is there a method/query to discover that the subscriber's databasereplication is being reinitialized The problem is that the applications which is connects to this database crashes when the replication is (re)initializing. Thanx, Ralf You would have to query the tables at the distribution database, this type of info is not stored at the subscriber. You could also try to reinitialize during offpeak hours. ...Show All

  • Windows Forms Focus mystery

    Dear All, I have this MDi application in one form upon loading I load the combo box from select statement of database then I put cb1.selectedIndex =0; cb1.focus(); This works fine and the first element get selected. The funny part I use the same code in another form and I put cb2.selectedIndex=0;cb2.focus(); and it doesnt get the foccus. I checked via the cb2.Focused and it shows false Anybody knows this problem. Thanks. Dear Nobugz, But how come it worked for my other form in the load function itself. So when can I use Control.Focus() Thanks for your help man. ...Show All

  • Windows Forms Getting Error "The type name 'ClientCaseInfoControl' does not exist in the type 'ClientAdjuster.ClientAdjuster'"

    I have written my first user control in Visual Studio .NET 2005. Because I am not interested in this user control being used in any other application besides the WinForm app I am writing it in, the user control is in the Windows Forms project. In design mode, the VS .NET IDE recognizes it, works with it, etc. However, when I try to compile the app, I get the error message: Error 1 The type name 'ClientCaseInfoControl' does not exist in the type 'ClientAdjuster.ClientAdjuster' D:\AMCI Apps\ClientAdjuster\ClientAdjuster\ClientAdjuster.Designer.cs (the name of my user control is ClientCaseInfoControl , and the name of the project is ClientAdjuster . I don't understand how the project could not be aware of a user control, that is w ...Show All

  • Visual Basic Text is not displaying in my listbox.

    I got rid of all my debug errors but it still is not displaying the text into my listbox. I know the text string is getting passed because I placed a msgbox(strText) in the AddListItem Class and it popped up just fine. So why is the text not showing up in the form1 listbox Public Class Form1 Inherits Form Public watchfolder As FileSystemWatcher Delegate Sub AddItemHandler( ByVal strText As String ) (Some code follows... then...) Private Sub logchangeAdd( ByVal source As Object , ByVal e As _ System.IO.FileSystemEventArgs) If e.ChangeType = IO.WatcherChangeTypes.Created Then Dim strText As String = "File " & e.FullPath & " has been created" ...Show All

  • .NET Development Machine Config Runtime entry being ignored

    I'm trying to get the Codebase element to reference a dll from a directory other than the base directory, but my machine.config runtime element seems to be ignored. I'm guessing that the section element type of IgnoreSection is the problem, but what do I replace it with so the runtime element is used Here is the section element concerned: <section name="runtime" type="System.Configuration.IgnoreSection, System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowLocation="false" /> Any advice welcomed. <codeBase version="38.1.0.8" href=" file:///C:/Temp/NISdac.dll " /> Shouldn't that be 38.1.8.0 Anyw ...Show All

  • Visual Studio Express Editions split container problem

    I'm having a problem using the split container control. I add a SplitContainer to a new form, set the orientation to horizontal, and set the dock to fill. Then I add a web navigatior to either panel and set the dock to fill. When I resize the split container, and set the propety of split panel2 minsize property to 300 it is not allowing where as the split panel size is 1007,596 panel1 minsize is25 splitdistance is 4 it is showing an error and now allowing to do so ...Show All

  • Visual Studio Express Editions open a file in listview control

    Hello all, Part of an application that I'm working on uses a treeview/listview control. My goal is pretty simple, I think... I've created an application that parses HTML files. It allows the user to edit these parsed fields and save their changes over the existing file. I realize that I could use the filebrowser dialog, or simply enter the path of file, but I need the user to be able to select a file in the listview control and have that file load in a textbox. Again, user selects (clicks) a file in the listview. By clicking the file it automatically opens in the textbox. I have no clue as to how to accomplish this seemingly simple task. Any help would be very much appreciated! Thanks, Mike ...Show All

©2008 Software Development Network