I have been tasked with leading the implementation of a new bug tracking system. We have previously been using PVCS tracker (by Merant), an ancient version which, of course, is now unsupported. Apparently, this product was purcahed and revamped into Serena Teamtrack. I'm just getting into it as far as reading some documentation, etc, but was wondering a)if anyone has any experiences (read Horror Stories) with this product(TeamTrack) and general pros/cons. Joe
Joe Surls
Posts
-
Trac or Mantis (or something else) for issue/bug tracking ? -
VB.NET form locationI am correctly reading the size of the screen (only one in play, here). The actual assignment fails on initial load due to the minimized nature of the app. Once the form is fully shown, the properties are set correctly and, after that, it displays in the correct location. Joe
-
VB.NET form locationI have a small application that I am running in the system tray using the NotifyIcon control. That functionality is working well. The form is set to Minimize initially and shown when the user clicks the tray icon. The problem is where the form displays. I want it to display in the lower right corner of the screen right above the system tray. Here is the code used to display the form: Private Sub frmMain_Activated(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Activated Me.SetDesktopLocation(My.Computer.Screen.WorkingArea.Width - Me.Width, My.Computer.Screen.WorkingArea.Height - Me.Height) End Sub I have also tried: Me.Left = SystemInformation.WorkingArea.Width - Me.Width Me.Top = SystemInformation.WorkingArea.Height - Me.Height I have tried both sets of code in both Activate and Form Load. Because of the "start minimized" nature of the app, initially both result in a Top and Left of -32000 because the form is not technically shown. At least that's my take. It's only off by half the form the FIRST time the form is shown and then it jumps to where I want it to be from then on. I've tried to show the form, then quickly hide it but this seems ridiculous. Does anyone have any suggestions? Thanks, Joe