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

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

jnys

Member List

John Bower
croarty
bluestar
JBoyceEE
christormpher2
anametrix
resolve
Itaiz
ffederico
farhad aslam
doncmorris
IMSam
Arun R
anakanak10
jclausius
Keith Koh
Tim Schmidt
Devapriya De Silva
Carlos Fandango
quargel
Only Title

jnys's Q&A profile

  • Visual Studio Team System proxy bypassed?????

    I have configured TFS to connect thru the proxy(a different machine ). But the setup works even when i disconnect theTFS proxy server and connects directly to the TFS server.It also doesnt give me any sort of error message. How do I ensure that the connection is being routed thru the proxy To get an overview of how TFS proxy works, refer to http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=299341&SiteID=1 ...Show All

  • SQL Server How to determine what objects (tables, indexes) reside on what filegroup in SQL2005?

    How do you check which table (schema.objectname) attached to what filegroup in SQL 2005 --example select object_name(i.id) as table_name, groupname as [filegroup] from sysfilegroups s, sysindexes i where i.id in (object_id('tablex'), object_id('tablexx')) and i.indid < 2 and i.groupid = s.groupid Hi Lito. In SQL 2005, you'll need to make use of the data_space_id column(s) in sys.indexes and sys.filegroups to get the data you want. Additionally, if you're making use of partitioning, partition schemes, and partition functions, the query will be a bit more complicated... First off, here's a simple one that will show you the ...Show All

  • Visual Studio Team System Install Done, what's next?!

    Hi everyone, I installed Team Foundation Server on my windows 2003 standard server and everything went well .. but now what There is nothing in the Start Menu talking about it, no icon on the desktop, nothing! I mean, how can I add new project to it create portal for each project where can I read about all that Thanks TFSSERVICE user looks like it won't have the permission (by default) to edit server-level information. However, if you have a user who is in the Administrators computer group on both AT and DT, it should have the permission to add you to the TFAdmin group. Best of luck! Edit: Belay that- the Service Accounts group looks l ...Show All

  • Visual C# Can anyone help me to make a shadow for forms

    Hi, As you know, I all menus in XP have a nice transparent shadow in behind, Window Live Messenger BETA has one. Does anyone know how it apears and how to make it My manager always focuses on beauty of program's GUI. It would be nice if i can use it in my forms Hi For transparency/ Opacity, Its always nice to use a trackBar to set the Opacity of the form. ...Show All

  • SQL Server Error creating package - Failed to save package file "...\temp\tempD4B.tmp" with error 0x80040154 "Class not registered"

    I had just installed SQL 2005 dev on my laptop and got an error message when I tried to create a package using the BI IDE. I received the same error using VS2005 IDE. But the project was created regardless without any packages. When I tried to create a new package in the project, I received the same error again, but with an option to view the error details. Following is the text of the error details: TITLE: Microsoft Visual Studio ------------------------------ Error creating package ------------------------------ ADDITIONAL INFORMATION: Failed to save package file "C:\Documents and Settings\myoungblood\Loc ...Show All

  • Visual Studio Team System Checkin a project into VSS 2005

    Hi.. everyone.. I have a real simple question for all of you. How do i checkin a project in VS2005 into VSS 2005. The version i using is VS 2005 Team Suite. I do not see any "source control" option at the dropdown menu under file like what VS2003 have. Please help me on this, have been meddling and trying out for 2 days. Thanks in advance. Regards, Kashiro I hate to ask but have you verified that Visual SourceSafe 2005 is installed You might want to check if it appears under Control Panel->Add/Remove Programs. If it is installed, the other thing to check is that the VSS SCC plug-in is selected within ...Show All

  • Visual C# How do I clean out the Recycle Bin?

    How can I do that Matt Matt, you can also call the SHEmptyRecycleBin API, that will allow you to select which recycle bins you want to clear, will provide a confirmation prompt, a sound, and the progress dialog (all of which options can be disabled). A rough signature for the API would be: [ DllImport ( "shell32.dll" )] public static extern IntPtr SHEmptyRecycleBin( IntPtr hwnd, [ MarshalAs ( UnmanagedType .LPTStr)] string path, uint dwflags); you may also need to declare the constants (from shellapi.h), if you want to customize the behaviour: public const uint SHERB_N ...Show All

  • .NET Development The improvements in typed dataset in Orcas?

    where can find the improvements that are planned in the future versions of typed dataset ...Show All

  • Visual C# How do I underline the accesskey in the button text?

    I currently have this button and do not know how to get the F underlined in the button text. I tried adding the & before the letter I wanted underlined and that did not work must be a menu only thing. < asp : Button ID ="btnFilter" runat ="server" OnClick ="btnFilter_Click" Text ="Filter" AccessKey ="F" /> I thought about changing it to an html button but assumed there would have to be some way to do it as an asp button. Any help would be much appreciated. Would this work http://www.devx.com/tips/Tip/13107 type=kbArticle&am ...Show All

  • Smart Device Development Emulator remote connection lost during debugging

    I have VS 2003 installed and use the emulator 5.3.0.26 with the WebPad sample image (Windows CE 4.2) for testing. The emulator is connected as a Windows CE Device with TCP Transport. Everything work fine, but if I stops in debug mode more than 2-3 seconds on a breakpoint, the connection to the device will be lost with the message: "The remote connection to the device has been lost. Please verify the device connection and restart debugging." This effect doesn’t depend on the application I debug. I guess that somewhere is a parameter to increase that timeout period. Does anybody knows a solution Remark: With the built in emulator in ...Show All

  • Visual C++ virtual inheritance and glue implementations

    Hello, I have come up with the following framework: interface DECLSPEC_NOVTABLE IEngine abstract { virtual int silly( void ) const { return 0; } virtual void smart() = 0; virtual ~IEngine() {}; }; template < int P_I> interface DECLSPEC_NOVTABLE ISillyEngine: virtual public IEngine { int silly( void ) const override { return P_I; } }; class SmartEngine: virtual public IEngine { void smart() override {} }; class Engine: public SmartEngine, public ISillyEngine<01> {}; Is it safe/reasonable from the point of view of efficiency/security/maintainability/whatever to use ...Show All

  • Windows Forms Error on update

    Hello all We deliver an application using click once mechanism, but whenever I add a folder to the UserDataPath structure, by adding a file, such as an image, into it and mark it as DataFile in the applicationFiles dialog (can reach it through the publish screen), and then publish the application, the outcome is that users are getting the new version but at the end of the download proccess the get a debug/send error dialog and they need to uninstall the application and then install it again. what is wrong with what I am doing (by the way the exception is: the folder " " do not exists), I tried to add it manually and the app ...Show All

  • Visual Studio Express Editions Getting hold of dotNET 2005.

    Hi. I got the Express version (Minus the Help - MSDN. Because of downloading 'difficulties') I LIKE it, and I WANT dotNET 2005. It may sound silly, but how do I get it What do I ask for (I am not 'up' with all the modern computer jargon - for reasons not needed - so I am somewhat bewildered. I have looked on the net but I have only seen one for sale; and that was for over £1000. I can only afford the cheapest. So can I have some guidance, please. A 'sort of' what, where, how, when Sincerely Yours, AliBong. Visual Studio costs some money. The standard edition is the cheapest and recommended price starts around $299 US ( ...Show All

  • .NET Development Problem with WSDL file of a web service

    Hi all, I wrote to web services, and generated the WSDL file of each one. The two web services simply connect to Access database and return the retrived data from the Database. The strange thing is, the WSDL files are different according to the tages and body. The bad WSDL file I got is: In the first one I got wsdl before each tage name, e.g: Instead <wsdl: message name =" GetPylonByFillerSoapIn " > I got here < message name =" GetPylonByFillerSoapIn " > < xml version="1.0" encoding="utf-8" > - < definitions xmlns:http =" http://schemas.xmlsoap.org/wsdl/http/ " xmlns:soap =" http://schema ...Show All

  • SQL Server User Authintication

    Dear All, I have an existing application, I need to add mobile function to that application. I created a publication and tested mobile syncronization successfully. My question is: how can I create user and give him an access to syncronize database programatically from the application. I need to define MobileUsers group and give any user from this group an access to make syncronization to his mobile system should allow administrator to add remove users from this group from the application. I am using SQL Server 2005 with Sql Server Mobile client. any help is highly appreciated Thanks Have you ...Show All

©2008 Software Development Network