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

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

Wojtek

Member List

Charlie Audritsh
azrulz
cslatt
Shira
hyungshinp
Daniela Torres
code_monkey
Dimitar Pashev
Libelula
richi
Steve_J
fanis
AdamSane
ssli2005
agent_smith
Milo145
Braindeadbeachbum
noon1
PeterMa
angela221
Only Title

Wojtek's Q&A profile

  • Windows Forms TaskBar ContextMenu

    hi ppl,, i have my main window with FormtBorderstyle ste to None... ok,,, and my app shows in the taskbar.. thats ok ,, i want it to be in taskbar.. but when i right click on the taskbar item of my window ,,i dont get any ContextMenu,, i think this is because i have no border in my form.. so i was wondering how can i set a ContextMenu for when the user right click the taskbar item it shows up mig16 sorry for my english hehe not my primary language :P thanks,, but actually im trying to do that cause im seeing 2 other programas that work with no border and have a menu on task bar :P.... then i think its usin ...Show All

  • SQL Server Error when using VariableDispenser in a custom task.

    Hello, I am building a custom component and am trying to access variables from within it. I have the following code: Dim vars as Variables = NOTHING Me .VariableDispenser.LockForRead("User::Variable") Me .VariableDispenser.LockForRead("System::ContainerStartTime") Me .VariableDispenser.GetVariables(vars) ... ... vars.Unlock()   It blows on the call to GetVariables with the following error: "Unable to cast COM object of type 'System__ComObject' to class type 'Microsoft.SqlServer.DtsRuntime.Variables'. Instances of types that represent COM components cannot be cast to types that do not represent COM" This is on Sept CTP. Any ideas ...Show All

  • Windows Forms use image as ColumnHeader in ListView

    Hi guys, How to use image as ColumnHeader in ListView, I know I can use colHead.Text = "Header"; to set text. But how about image My ListView is in "Details" mode. Thanks. Michael ...Show All

  • Visual Studio Team System How can I report developer hours by week?

    ========================================== Update: Please see the post dated 9/28/2006 for a new request for help.   =========================================   I have a need to report developer hours by work item by week. I am attempting to use the warehouse filed "Current Work Item Microsoft_VSTS_Scheduling_CompletedWork" and add a "Date Week" perspective to it, but obviously that will only return the value of the "Completed Work" field at the end of the week (and is actually a sum of all Completed Work thus far.).  I need to report the change in completed work by developer by work tiem. I attempted to e ...Show All

  • Windows Forms Is there a better way to handle menuStrip Click Events ?

      Hi there, I am constructing menuStrips,toolStrip programatically and I was wondering if there was a better way to write my "OnMenuStripClickHandler"even reduce the code or get rid of the casting,may be just by getting the name of the sender or something like that.I saw somewhere done with "sourceControl" method but not sure now.    ToolStripMenuItem FileMenu()   {    ToolStripMenuItem tsmiFile = new ToolStripMenuItem("&File");    tsmiFile.DropDownOpening += FileOnDropDownOpening;        ToolStripMenuItem tsmiNew = new ToolStripMenuItem("&New"); ...Show All

  • Visual C++ Visual C++ 2005 compliance with The C++ Standard

    Despite a boat-load of documentation on Microsoft extensions to the C++ language, I have been unable to find a single page describing how VC++ 2005 differs from VC++ 2003 (7.1) with respect to the serious non-compliance issues that plagued users of VC++ 2003 (7.1). This document http://msdn.microsoft.com/library/default.asp url=/library/en-us/vclang/html/vclrfNonstandardBehavior.asp is available for Visual C++ 2003 (7.1). Does anyone know which, if any, of these non-compliance issues have been fixed in Visual C++ 2005 Is there an equivalent document for VC++ 2005 -- somewhere Something that says, in plain English, in what ways, if any, V ...Show All

  • Visual Studio CR VS2005 Web Deployment

    I have Visual Studio 2005 (Non Beta). I have a web application that uses the Crystal Report and works beutiful on the development manchine, Now I have copied my application to my production server and I get the following error message e: Could not load file or assembly 'CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified. Source Error: Line 1: <%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="DisplayReports.a ...Show All

  • SQL Server CustomReportItem Installation

    Is there any documentation currently outlining how to make use of the CustomReportItem element or class   My thoughts on this are that it might act as a server control for an ASP.NET application.  Is that correct I want to be able to add some richer user interactivity to a couple reports that I'm currently authoring (i.e. checkboxes, buttons to access web service functionality, etc...) and I think that I might be able to make use of this class to provide that functionality since RDL doesn't seem to give any support for scripting in HTML entities into the report. Lastly, will support for installing custom report items be included i ...Show All

  • Visual Studio the solution for crystal report error in C#(fail to import report)

    hi all, i am a newbie of c# , i have been suffering a problem on using crystal report in c# while i am using sql server 2000 in my windows server 2000 advanced server but unfortunely , i can't retrieve the data and show them in crystal report. the error message is like that" failed to import the report" ,though the report refer to my reference book. can anyone solve the problem for me, since my deadline of project is near, thanks all hi, i would like to ask about the question that how i encapsulate my program to installed program for someone to install my program to his/her computer. thanks henry ...Show All

  • SQL Server Cannot find folder "\Maintenance Plans".

    I've been looking for treads with a possible similar problem but thus far nothing.   I recently upgraded SQL 2000 (STD ed.) instance to SQL 2005 (STD ed.). This includes the db's. All their compatibility levels were changed to level 90 (SQL 2005).   Everything seems to be working fine but when trying to migrate a legacy maintenance plan I keep getting the message, "Cannot find folder "\Maintenance Plans"." even though the folder is clearly listed.   Not sure where to start. I have created two virtual images and both have the same problem.   Any help would be greatly appreciated. RoviWil ...Show All

  • Visual Studio Express Editions How do I set and read a break condition on a serial port with FIFO?

    I am going to use a serial card - VSCom PCI200HV2 with its own driver and a 16C950 UART, which contains a 128 byte transmitter FIFO and a 128 x 11 bit receiver FIFO (data plus break and error conditions). Each telegram shall be terminated with a break condition, that is, an active low line for at least 10 bits. Unfortunately, System.IO.Ports and My namespace do not seem to have any possibility for controlling the FIFO, and it seems that System.IO.Ports uses its own buffer on top of the FIFO in the UART, so how do I know when to set the break condition I can read the number of bytes in the software buffer, but when this buffer is empty the ...Show All

  • Windows Forms [Controls] PropertyGrid is slow

    I am using propertygrid to display information with, some debug information. this information comes from an external device When I dont update the information in the GUI, but it is still transferred from the device, I can get about 1000 items per 0.7 seconds. When enable it, so i can display it in the property grid, it takes about 4 secs per 1000 items. What am i doing wrong Hi ~ am a C# newbie coming from Delphi, and have never used a property grid so far. But from looking at it, nothing may be wrong - could easily be that the (visual) updates take that long - there could be tens of thousands ...Show All

  • Visual Studio ItemGroup and Copy Task

    I have defined a ItemGroup to point to a <SourceFolder> that references all xml files in that folder. Note that this folder is empty at the start of the build. <ItemGroup> <SourceFiles Include="$(SourceFolder)\*.xml"/> </ItemGroup> I want to have a Copy task that moves any xml files from the <SourceFolder> to a <DestinationFolder>. <Target Name="CopySourceFiles"> <Copy SourceFiles="@(SourceFiles)" DestinationFolder="$(DestinationFolder)" ContinueOnError="false" /> </Target> What I am findi ...Show All

  • Visual Studio Express Editions Problems with controls Position

    Hi I am new with VB Express. & for .NET Environment. Please Leave this post if it is silly. I tried to place three buttons in the form. I Placed it, compiled it and ran the form, and it worked properly. After I tried adding another button in the form. I rearranged the buttons to a new location. saved, compiled and when executed, the three was still on the old location , and the new button in the new position. I tried re arranging the again and again . but still the three buttons were on the old location only and the new button in the new location. I also tried to accomodate the new button with the three button itself. I ...Show All

  • Windows Forms DataSet change does not update bindingSource.

    Hi, I have a DGV with a datasource of a BindingSource. THe BindingSource has a DataSource of a typed DataSet table. These have been linked using the designer. On a button, I want to change the rows that the DataSet table contains, and then have the bindingSource and DGV update automatically (as well as any other controls bound to the bindingSource). Currently, I make the change to the DataSet using tableAdapter.Fill(DataSet.Table) and the bindingSource and DGV do not update. I've tried adding resetbindings to the bindingSource.. but no avail. Any ideas... please. Also, is there any standard doc on this type of thing.. e.g ...Show All

©2008 Software Development Network