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

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

frozen12

Member List

Seppe001
nwtester
Jibu
irin
Abill
JAGATCBA
Neil McLaughlin
sabman
t2nolan
emichaeltal
Gawaine79
Icarrus
JonSiii
daidaiNeko
Lina79
basementjack
Siddhartha Dutta
Andy Male
Neville Bailey
music_at_ulan
Only Title

frozen12's Q&A profile

  • Visual FoxPro Win32 API function

    Hi, Can any one tell me what should be the shift and control key values in the below stated code. #DEFINE VK_lSHIFT 0x10 #DEFINE VK_lCONTROL 0x11 DECLARE INTEGER GetKeyState IN WIN32API INTEGER What should be the value of GetKeyState(VK_lSHIFT) and GetKeyState(VK_lCONTROL) I am getting different values(both +ve, -ve & 0) every time I press shift or control keys down. I want to use this in a controls click event to check for if the shift is used or control is used. I hope I am clear about my problem. Thank you   NewBieDJ wrote: I want to use this in a controls click e ...Show All

  • Windows Forms How to capture an event of a control y ParentForm

    I'm working on a control that verifies that a text box contains something when clicking on a button. My control has two properties, one for the textbox and other for the button. I've added a delegate for the .Click event of the button, but in this point where is two delegates for that event, one in the Form and the new one. At runtime the fir ...Show All

  • Visual Studio Applying styles from a stylesheet

    Is it possible to apply styles to the report (.rdlc) items by specifying css classes on the items when the report is displayed using a web form.... Thanks in advance for help! This feature is not currently supported, but we are looking at it for the future. ...Show All

  • Visual Studio Team System Could not connect to application tier.

    I use a Team Foundation Beta 2, when I open the Team Project (from the Visual Studio 2005 Beta 2), I've see the following error: "Could not connect to application tier. Please contact the team system administrator(s)." How can I fix this issue Several things to try to help solve the problem. 1.  Close VS and delete your cache at %userprofile%\Local Settings\Application Data\Microsoft\Currituck\cache and run "devenv /resetuserdata" 2.  Check the Application event logs on the AT, this might give some indication of what's happening. 3.  Turn on tracing on the AT.     a.  ...Show All

  • Visual Studio Team System the request failed with http status 404

    when I tried to open the team explorer I got the following error the request failed with http status 404 Could you provide more information   Was this Beta 3   A single or dual server install   Did you follow the TFS Installation Guide ...Show All

  • Visual Studio 2008 (Pre-release) Textbox input validation

    Hi here i'm trying to enter some text into textbox but my problem is it accepts any data what i want is the input text should starts with alphabetics (a to z or A to Z) only. How can i do this Can anybody give me a simple code to do this Thanx - Nagu In the TextChanged event of your textbox, use a code that will find all the word in it and see if they start with what you want. Something like this : public void textbox1TextChanged(object sender, RoutedEventArgs e) { foreach(string word in textbox1.Text.Split(' ')) { // Use a regular expression to test word } } ...Show All

  • Windows Forms ComboBox.DataSource initialisation difference between framework 1.0 and 1.1

    Hi, I'm trying to get an application that was written in C# with the 1.0 framework running using the 1.1 framework and it seems there is a difference when the ComboBox.DataSource property can be set. In the origninal 1.0 app it is done after the ComboBox is added to a ControlCollection however using the 1.1 framework it seems as if you can't set the DataSource property after the ComboBox has been added to the ControlCollection. Has anyone else encountered this behaviour and does anyone know why it was added Thanks I've managed to get round this limitation by using the items property instead. If I add t ...Show All

  • Windows Forms designer can't load form. Where is 'more information'?

    after going from beta2 to rc1, the designer all of a sudden cannot load my forms anymore. instead, i get the infamous window with the red top that says some errors may go away building the project, while other need code changes. needles to say: the file compiles fine, the form could be opened with the beta2 and vs2003 designers and obviously doing a rebuild doesn't help at all. now what the additional error message says; Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. ok - great. now how do i retrieve the loader exception property. how can i fix this where can i find more info ...Show All

  • Windows Forms VB?

    can i post questions about visual basic 6 in here Hi Steve, I suppose you can post them, but you may not get much help. These are .NET forums. While a lot of us came from VB6, speaking for myself I'd be hard pressed to be of much use to you. Don ...Show All

  • Visual C# MS, MVP feedback, question: casts / conversions -- some way to automate?

    Is there some way to adjust the warning level and other compiler flags so that the c# compiler is 1) not so darned finnicky about expressions using mixed floating point and integer types and 2) actually performs automatic conversions more correctly than it does, like a 'C++' compiler some feedback on this also -- requiring explicit casts in so many situations is all downside, as far as I am concerned: Its very time consuming having to add all the (float) casts required now, and the casts make the code much harder to read. I find I code far more errors than I would otherwise because of the visual distractions added by all the pa ...Show All

  • SQL Server sql server 2005 SSIS and AS400 connectivity

    Hi all I am trying to connect to an AS400 to download data to a 64bit sql server 2005 server. I am able to do this easily by migrating existing sql2000 DTS packages but how do i do this is in an SSIS project creating the process from scratch and how do i incorporate activex transforms like you could in DTS2000 into the trasnform with copy columns Please help i am slowly turning grey trying to get this to work. thanks Chris If you are building your package from scratch then don't use ActiveX scripts. They are only there as a form of backward compatability - but not a great one. The most analog ...Show All

  • Windows Forms ClickOnce file extension registration

    In the ClickOnce FAQ at http://www.windowsforms.net/FAQs/default.aspx PageID=2&ItemID=17&CategoryID=24&tabindex=2 it says: "Some low impact tasks such as file type registration can be achieved with first time app-startup logic in your application" How can I register a file name extension which will invoke my ClickOnce deployed application If one can find the .exe on disk and register this one then ApplicationDeployment.IsNetworkDeployed is false. So this seems like a dead end. Any help would be appreciated.   /Lars The ClickOnce Runtime is not capable of creating File Type Association ...Show All

  • Visual Studio 2008 (Pre-release) Color values related to the RGB color modell

    Hi All, Could you please tell me the relation between the RGB and the ScRGB color modell. What is 255 in Sc Is this 1.00000 or 0.00000 What is 128 in Sc Is this 0.5.... Or is there another way to compute the Sc values from the old RGB modell Thank you!! RGB and ScRGB are two different color spaces. RGB is a subset of ScRGB. but the values that represents the colors in the color spaces are differet. If R = 1, then ScR is not equal to 1. The Color class in WPF has properties A,R,B,G (Alpha,Red,Blue,Green) which represents the color components of the RGB color space and properties for ScA, ScR ...Show All

  • Windows Forms Zero Touch Deploy with XP Theme manifest file

    Hi I have an application and a manifest file which makes the application use the XP theme controls. However, when I try to deploy this application over the web it does not pick up the manifest file Anyone know how i can overcome this as it works perfectly if i load the exe by double clicking it Thanks got it working with the ma ...Show All

  • Windows Forms FocusRectangle Problem

    Hi everybody, I need to change the button FocusRectangle colors in my Forms, because I have Flat type Appearance with a background image. Which is the best way to do it I tried with an override of the OnPaint method and DrawFocusRectangle, but I just get an strange behaviour... Thanks in advance, Demian Hi Paul, I confirm you that DrawString rectangle is also inflated by -4. Rectangle focusrec = pe.ClipRectangle; focusrec.Inflate(-4, -4); ControlPaint .DrawFocusRectangle(pe.Graphics, focusrec, Color .Blue, Color .Blue); ......... ......... pe.Graphics.Dr ...Show All

©2008 Software Development Network