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

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

Keirsy

Member List

Sergey Kononov
KS16
mborsalino
Kaychoro
Giorgio Sardo
AloneSword
dopecoder
CDFITGUY
Flavio_ita
LEPScapa
Jaap Wagenvoort
philfishing
Dannil
MeToo
Morgan Skinner
k_rao
JustaCoder
Jeff Dion
Ryan S.
mc_hk
Only Title

Keirsy's Q&A profile

  • Visual Studio Tools for Office Range.get_Information() is causing Application.XMLAfterInsert to be fired

    Hi, I am getting some strange behaviour which I am having a hard time reproducing in a new project. I know that without being able to reproduce it I am not being very helpful, but I am running out of options and time. I will keep trying to reproduce it, but in the meantime any suggestions you might have would be greatly appreciated. I have a Word Template project and I am using XML tags to mark certain parts of the document that interest me. I then subscribe to the Application.XMLAfterInsert and Application.XMLBeforeDelete events so that different parts of the application can be alerted of changes made to the document. Everything wo ...Show All

  • Visual Studio Moving a label

    Hello, Is there a way to move a label from one version to another What we are trying to achieve is that if we label the VSS database with a build label at the beginning of the build process and subsequently include updates to the build, I would like to move the labels up to the latest versions to mark the final set of versions going into the build. Also, how can I prevent developers from checking in new versions of files while the build is being generated Can I do this without doing a administrative lock on the entire VSS database Thanks, You could label the files you are updating at the end of your ...Show All

  • Visual FoxPro AutoHideScrollbar Property.

    http://www.code-magazine.com/focus/article.aspx quickid=0404052&page=2 Hello Guys, While reading the above mentioned article i came across a problem. The article talks about the AutoHideScrollbar Property Value to be 2, but i have only two options in this property(0 & 1). Is there something wrong. Jitendra Shahani The 2 is definitely missing, and an exception is thrown if you attempt to set the value of the AutoHideScrollbar property to 2 in code.  That was either in the beta and removed in the release (I can't remember seeing it in the beta) or they were going off some erroneous inside info ...Show All

  • Visual Basic Activex reference problem

    I have a project with a reference to MSWINSK.OCX, which runs fine on the system it was written on. But when I try to make the executable, and run it on another system, I get an error (runtime 429) that the Activex object cant be created. Any help with why this is happening and how to fix it would be great. I already checked and the other system does have the OCX file in the right place. Okay, registered the ocx, restarted, and still doesn't work, anything else I can try ...Show All

  • Visual Basic Access Form in Code from a User Control

    I have created a UserControl1 that inherits from the Visual Basic.Net 2005 TextBox Control. A Windows Application Project is then created (named WindowsApplication1) and the UserControl1 is dragged onto Form1 of WindowsApplication1. Question: In the code of User Control how is Form1 accessed In particular, it is desired to place some graphics on Form1 from code in UserControl1. Thanks for any response... Forgive me if I am telling you something that you already know, but I believe that the proper technique is to access UserControl1 from Form1, instead of the other way around as you are sug ...Show All

  • Visual Studio Beta2 microsoft.common.targets errors

    There are 57 warnings when I created new project after failing to convert from beta1, some of the warnings are listed below. Anybody knows why are these warnings < ResolveAssemblyReferencesDependsOn > Warning 1 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'CustomBeforeMicrosoftCommonTargets' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. Expected 'Property' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. R:\WINNT\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets 18 10 Miscellane ...Show All

  • Visual C# Can I reference a VS2005 assembly from a VS2003 project?

    I develop library assemblies in C# and have lots of customers who are not likely to move to VS2005 immediately.  When I try to reference an assembly built with VS2005 from a VS2003 project, VS2003 says the assembly is not valid.  Is it possible to do this, or do all of my customers have to move to VS2005 before I can distribute a VS2005 version of my library Thanks for any enlightenment! > Is it possible to do this, or do all of my customers have to move to VS2005 before I can distribute a VS2005 version of my library No there's no way to do this. They have to move to VS 2005 or you have to stay with VS 2003. ...Show All

  • Smart Device Development Print from Pocket PC to a Mobile Printer

    I'm developing a Windows Mobile 5.0 application and I need to print on a Mobile Printer via blootooth or infrared. Has someone a small source code to do this I cannot buy a third part component to print. Thanks Michele Hi do u have any simple source code to show me that i can print the text display on a textbox to a moblie printer or is that any procedure i need ...Show All

  • Visual Studio 2008 (Pre-release) Does FontStretch work

    I don't see any difference after FontStretch is applied Any clue <Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" > <StackPanel> <TextBlock>Hello</TextBlock> <TextBlock FontStretch='Condensed'>Hello</TextBlock> </StackPanel> </Page> Try this: <Page xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml " > <StackPanel> <TextBlock FontFamily="Arial" ...Show All

  • Visual C# Variable doesn't increment

    Hi, I'm creating a Tetris game in which I have an 'x' and a 'y' variable. At first they are set to 0. I use a timer to change the 'y' value to move the figure down. Here's the code: private void timer1_Tick( object sender, EventArgs e) { y++; Graphics grfx = this .CreateGraphics(); PaintEventArgs f = new PaintEventArgs (grfx, this .ClientRectangle); DrawFigure dr = new DrawFigure (f, x, y); grfx.Dispose(); if (y > 569) timer1.Stop(); } Yet, after each event, 'y' goes back down to 0, instead of incrementing. Why is this happening Check that this timer ...Show All

  • Visual FoxPro Winsock Problem over a WAN

    Hi I have an app that uses the winsock control to send and receive messages. The server Listens for connections from clients on a port once connected messages can be sent both ways. It works fine on a LAN but when I try it on a WAN the Clients conect but are not able to dispaly the GUI. What am I Missing Thanks Charles   I think you need to supply more detail here if you want an answer. Clearly no-one knows anything based on the information you have given. Andy Kramek Moderator   ...Show All

  • Windows Forms panel vs usercontrol

    What extra features does a UserControl offer over a Panel if both are placed in a form Since a form has already has "advanced focus management", a Panel seems to act like a UserControl. I am making a chat control with the standard two textboxes for input and output. I want to be able to put the control on tabpages. Is it better practice to use a Panel or UserControl to contain the textboxes I am also making a toolbar-like control with a collection of custom buttons on them. -Michael The main differences between a UserControl and a Panel is that you get visual designer support when you inherit ...Show All

  • SQL Server SSRS + SSAS + drilldown(SSRS naming - grouping) + flattened rowset

    assume SSRS2005 report on SSAS2005 assume SSAS dimension structure (on the report rows) LEVEL MemberCount ...Show All

  • Visual Studio how to find common script folder

      Accessing common build scripts,   We have a couple projects those are checked into source control, generally people use vs.net to do development and build.   I want to enable use of msbuild along with that I want to simplify project files so that it imports common properties. It will enable future changes esier.   Issue is how I find the common script folder which in build sub folder under root source folder (which may be different for different users), I don’t want to declare it in env because user may have more than one .   Any solution how can I traverse part folders to import a commo ...Show All

  • .NET Development aspnet_wp.exe process is crashing after consuming 100% CPU

    Hi, My asp.net worker process is crashing when ever i try to open any aspx on local system. It creeps up the cpu and memory usage and takes up to 99% of cpu and crashes. with following message in event log.. Event Type: Error Event Source: ASP.NET 1.1.4322.0 Event Category: None Event ID: 1000 Date: 5/8/2006 Time: 10:48:35 AM User: N/A Computer: kshahzad Description: aspnet_wp.exe (PID: 3200) stopped unexpectedly. Event Type: Error Event Source: .NET Runtime Event Category: None Event ID: 0 Date: 5/8/2006 Time: 10:48:34 AM User: N/A Computer: kshahzad Description: The description for Event ID ( 0 ) in Source ( .NET Runtime ) cannot ...Show All

©2008 Software Development Network