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

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

KitGreen

Member List

DeamonX
Alex-MyRpg
04-digit0l
TomZz
PaulVSTO
JonEagle
rWarrior
ewren
ChinaTiger
Kennon2005
Vista2007new
Amos Soma
Azaphrael
Carsten-S
Keith Walton
NM156
bennett_chen
CandybarsandPop
Mavericko
Hytham
Only Title

KitGreen's Q&A profile

  • Visual Studio Team System Proxy reports "Service unavailable"

    When performing a forced get of a complete folder, using the proxy on a remote site, the following error occurs. " The source control proxy 'pgx206' is not responding, so the request will be sent to the main server ... HTTP code 503: Service Unavailable" According to VS's output window, some files were get successfully because the error is listed only after some files were replaced. Replacing W:\Main\TestFiles\foo.cs The source control proxy 'pgx206' is not responding, so the request will be sent to the main server. Please verify your settings. Additional information: Please contact your administrator. There was an error contacting the server. Technical information (for administrator): HTTP code 503: Service Unavailable ...Show All

  • Visual C# Error in calling a method

    Dear all good day i ve 1 question, i make a function that open a form from another the method is as follows public static void DisplayForm( Form targetForm) { targetForm.Show(targetForm); } instead the classic way Form2 frm = new Form2(); frm.Show(); it have one parameter and it has from data type, when i call this function it fire the following error DisplayForm( Form2 ); 'Form2' is a 'type' but is used like a 'variable’ kindly instruct thanks all The error is correct. You COULD do this: DisplayForm(new Form2) but to be honest, I can't see any use in having this method at all. Apart from anything else, you call a method that just calls another method, ...Show All

  • Windows Forms Change scroll bar style...?

    Hi... Can i change the scroll bar sytle of my form… I want to change the scroll bar style as same as microsoft’s Live website’s scroll bar… Can I change like that using my C# application… Thanks, Vinay Hi... Thanks for your reply... Can you explain me little more about exactly how i'll acheive it... Or can you give me any link for this... Thanks & Regards, Vinay ...Show All

  • Visual Studio The filename selected is not recognized as legal

    I'm completely new to VSS and am having problems. I can add projects and solutions to the database I've created, but I can't seem to open them from another machine. If I go to File, Open Project and select SourceSafe (LAN) and browse and select my SLN file (or VBPROJ file for that matter) and try to open it I get this error: The filename selected is not recognized as legal. Please select another file or rename the selected file. Any help would be appreciated. Like I said, I'm very new to this. > In addition I DON'T have a HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SourceSafe key in my registry, It seems to me you have a broken VSS install. You must have that registry key - any VSS install create ...Show All

  • Visual Studio Team System TSD1030

    I'm getting: Error TSD1030: [Unknown] .: The name of the object could not be determined It's referrring to a couple of keys that I deleted from my project. I've tried deleting references to these from the vbproj file but to no effect. How can I prevent this error A TSD1xxx error is raised during phase 1 parsing & interpretation. What is in the file that is causing the error (the errorlist should open it up when you double click on the error), also what is the exact and full file name of the file causing the problem. Thanks, -GertD ...Show All

  • Visual C# SetDllDirectory

    Is there a way to set multiple directories in the search path using SetDllDirectory I've been able to get it to work for a single directory but I've subsequently found that this DLL is dependent on a number of other Dlls which are spread over different directories. Calling SetDllDirectory twice resets the directory which is what you would expect, but have tried comma-separated and semi-colon separated directories in a single call both of which failed. eg [DllImport("kernel32.dll")] public static extern bool SetDllDirectory( string pathName); //and the call is: bool result = SetDllDirectory(@"C:\Dir1;C:\Dir2"); Anyone tried / done this before I tho ...Show All

  • Gadgets Missing thumbnails on gallery.live.com

    I seem to notice a lot of Gadgets on the galley.live.com page don't get their thumbnail image displayed (mine doesn't seem to show up about 80% of the time). Anyone have any insight into this issue Hi nadasurf2 (et al). I just verified that this has been fixed for the ones that had known problems. If you do see any additional issues with this please feel free to respond. Thanks! ...Show All

  • Visual C# Problem with Keystroke Capture...

    Hello, I'm having a problem in C#. I want to set up my form so that the use presses a button, then the form will capture a single keystoke and then be done. Here's what I have: private void button1_Click(object sender, System.EventArgs e) { this.KeyUp += new KeyEventHandler(OnKeyUp); } public void OnKeyUp(object sender, KeyEventArgs e) { MessageBox.Show(e.KeyCode.ToString(), "Your input"); e.Handled = true; } If I use the KeyDown the arrow keys won't be captured. What am I missing here Sorry if this is simple, I'm trying to learn C#. Thanks! Hmm, unusual code. KeyDown or KeyPress Form.KeyPreview = true I'd just set a form member vari ...Show All

  • SQL Server I found a bug in Sql Server 2000!!!

    Yesterday I created a table in Sql Server 2000,using this script: CREATE TABLE [dbo].[User]( [Id] [int] NOT NULL, [UserName] [nvarchar](20) NOT NULL, [TrueName] [nvarchar](20) NOT NULL, [Password] [nvarchar](60) NOT NULL, [Department] [int] NOT NULL, [Mobile] [nvarchar](20) NULL, [Telephone] [nvarchar](20) NULL, [Remark] [nvarchar](200) NULL, [Enabled] [bit] NOT NULL, [Available] [bit] NOT NULL, CONSTRAINT [PK_User] PRIMARY KEY CLUSTERED ( [Id] ASC ) ON [PRIMARY] ) ON [PRIMARY] There was only one record in it: INSERT INTO [User] VALUES(1,N'SUP',N'Jim',N'213123',1,NULL,NULL,NULL,1,1) After I executed this script: UPDATE [User] SET UserName=N'f',TrueName=N'gg',[Password]=N'dfsdfsdf',Mobile=NULL,Telephone=NULL,Remark=NULL, Ena ...Show All

  • Visual C++ LINK : fatal error LNK1000: Internal error during LIB::Search

    Hi, I've tried to build my C++ solution but got fatal linker error. The error message looks like: LINK : fatal error LNK1000: Internal error during LIB::Search Version 8.00.50727.42 ExceptionCode = C0000006 ExceptionFlags = 00000000 ExceptionAddress = 78144E9A (78130000) "C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.163_x-ww_681e29fb\MSVCR80.dll" NumberParameters = 00000003 ExceptionInformation[ 0] = 00000000 ExceptionInformation[ 1] = 72B1D000 ExceptionInformation[ 2] = C000009C CONTEXT: Eax = 72B1EE0A Esp = 0012E458 Ebx = 00006408 Ebp = 0012E460 Ecx = 00000782 Esi = 72B1D000 Edx = 00000002 Edi = 00D9E194 Eip = 78144E9A EFlags = 00010212 SegCs = 0000 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. simple projectile motion physics??

    im pretty new to gamedev, so simulating physics is new to me too. i know the projectile motion formulas, im just having trouble applying them. is there any "tutorial" on projectile motion physics for XNA basically, someone suggested to do "scorched earth". im trying to get the hang of just some simple projectile before i apply it to a game. i know i should basically have to just enter the initial velocity vector and the angle. then have it passed to a function that gets the initial x velocity, and initial y velocity. also, im assuming that whatever i get for y-velocity should be negative as "up" is negative in the XNA graphics. then, after each update, it should find the current change in position for x and ...Show All

  • Software Development for Windows Vista longhorn beta 1 product key

    Can someone please possibly supply me with a product key for longhorn and vista. Many thanks, http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=87721&SiteID=1 Longhorn is the codename for Vista. Please, these forums are not for technical support or requests for product keys, there have been many many topics about such matters in recent weeks, which have resulted in locking/deleting the topic as it is off topic for this forum. ...Show All

  • Visual Studio 2008 (Pre-release) How to pass parameters to a DataBinding in XAML? - I want (need) to seed the construction of the DataBinding source object.

    I have a set of generic (generalized) DataBinding source objects, each of which maps to a different UI control type (eg. collections for ComboBox, single value for checkbox, etc.). <CheckBox.IsChecked> <Binding Path="Value" Source="{StaticResource SingleValueBinder}" /> </CheckBox.IsChecked> or <ComboBox Name="MyCombo" Height="21" Margin="20,20,20,20" ItemsSource="{Binding Source={StaticResource ItemsSourceBinder}, Path=Values}" IsSynchronizedWithCurrentItem="True"> </ComboBox> These objects are basically serving as adaptors and internally map to a host of specific object values. I need someway to specify which of the unde ...Show All

  • SQL Server PACKAGE ENCODING

    Hi, a new (little..) problem with xml source. I have to import large xml file in sql server and I use data transfer task and xml source. The xml file are generated without specifing any encoding, and so I obtain many character error if i don't change the encoding. When i put "by hand" (with a xml editor) in the xml file this encoding < xml version="1.0" encoding="ISO8859-1" >, the SSIS task works perfectly without any error. So, i'm looking for a way to use this encoding without editing xml file (more than 500 mb...). the way that i can imagine are: 1) change the package encoding (but I haven't find this kind of settings) 2) change the xml source encoding (but I haven't find this kind of settings) 3) ch ...Show All

  • SQL Server service pack 2

    any one know when this is out or i fthere are any hotfixes for bugs SP2 is still not released. CTP1 is a very important milestone for SP2. After its CTP2 is released, it is amost the time to release SP2. There is no Enterprise SP2. The same SP2 will be applicable on all SQL Server 2005 SKUs like Enterprise, Developer, Standard, etc. ...Show All

©2008 Software Development Network