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

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

___AUTUMNS_ENDING___

Member List

aoeu aoeu oeuaoeu
PMNJ
SiGiD
Psinha371
Thomas B
VC_Mike
Savannah
Halvo
Squeaker
dlcrawford
Boltress
HP
Macca
steve paul
Tony1059
ShawnW277871
Stefan Burwitz
Baerin131707
Lagarto
jsmircic
Only Title

___AUTUMNS_ENDING___'s Q&A profile

  • Visual Studio Express Editions reference and importing

    What is the difference between adding REFERENCE and IMPORT statement in our project Can someone explain me. Hi kumar, I am marking the above reply as answer for your post. If you think your post is not answered then you can always reopen the post by clicking on "Unmark as Answer" button on my reply. FYI - These forums are meant for asking programming related questions. If you have any programming related questions in C# ...Show All

  • SQL Server Guids as primary keys

    Is it a good idea to use Guids as primary key. What is the impact on performance. Guids are random by nature that may have an impact on writing clustered index. Any comments or suggestions Actually, (and you're not the only one ni the forum to make this mistake) a GUID in SQL Server is 32 bytes. MS Access uses a 16 byte GUID, but for replication only. As far as using a GUID for a primary key, I'm working ...Show All

  • .NET Development Redistributing MSXML4

    Hi, I have written an application which is redistributed via an MSI. I merge in the MSXML4 merge modules. I have discovered that if I add a manifest assembly reference as follows: /manifestdependency:type='win32' name='Microsoft.MSXML2' version='4.20.9818.0' processorArchitecture='x86' publicKeyToken='6bd6b9abf345378f' language='*' My app doesn't work. I think that this is because these DLLs already exist in the C:\WINDOWS\SYSTEM32 d ...Show All

  • Software Development for Windows Vista Problems creating the interop library for managed Exchange sinks

    Hi there. I followed the instructions on [1]: - Downloaded the sample distribution from [2] - (Since I didn't own Visual Studio) Installed the current MS Windows Platform SDK - Installed .NET 2.0, SDK - Entered the Interop directory, run <platformSDKdir>\SetEnv.cmd and nmake - Got this: C:\Programme\Exchange SDK\ManagedSinksWP\Interop>nmake Microsoft (R) Program Maintenance Utility   Version 7.00.8882 Copyright (C) Microsoft C ...Show All

  • Visual Studio 2008 (Pre-release) Are drag-and-drop operations supported in WBAs?

    Are drag-and-drop operations supported in Web Browser Applications I have tried to drag and drop a file from the desktop to an element, but it seems it is not working. Is it a security restriction Thanks All for your support. We could able to resolve the issue by publishing and running the site successfully by chaning the application to Partial trust . -Varun ...Show All

  • Smart Device Development Debug applications on WinCE .NET 4.2 devices using VC2005

    Hello, I’m currently trying to debug a sample application on a WinCE .NET 4.2 device (a PNA) using Visual Studio .NET 2005 - unfortunally without success. Debugging with VS2003 worked fine after installing the "Windows CE.net Utilities for VS2003" and copying some dlls. I heard about the release of .NET CF SP1 where this problem should have been fixed. So I installed it - no success. How can I make VS2005 to debug my application correc ...Show All

  • Windows Forms Iterate through all tab pages in tab control - how to hide this from user

      RDD wrote: * I have a form with one TabControl with 2 TabPages, with one TextBox on each TabPage . Result of running this Form: * The TextBox of the visible TabPage gets bound very well, and displays the property value. BUT, the TextBox of the second TabPage remains blank. Can somebody provide with a solution   Mark Rideout wrote: Just to let you know -- I'm investigating this. The ...Show All

  • .NET Development MAC Address

    Hi there, sorry for the stupid Q Is there a way to retrieve a MAC Address from a client machine in ASP.NET I have found a way of retrieving the MAC address for the local machine (Server) but would require it for the client. I can get the hostname and IP no problem but would require the MAC Address, if possible reason to see what user has "disobeyed" any rules etc.. and to make sure that you can "ban" or report them on your website. an IP address ...Show All

  • Software Development for Windows Vista Saving Activities with a specific Formatter

    This question is a little related to another I posted about resolving assemblies. If I implement a custom persistence service that -- in an operation to save a workflow instance -- calls rootActivity.Save(myStream, myFormatter), I typically get an exception that my type (Workflow1) is not marked [Serializable]. If I go into the code editor and add the [Serializable] tag, the system throws an exception saying that my type's base class, Sequential ...Show All

  • Visual C# DateTime

    Hi. What I want to do is display the current time, or the current day in a MessageBox.Show method. Can someone tell me how to do this. I know it has something to do with the DateTime method. Thank you for any help provided. http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfsystemdatetimememberstopic.asp ...Show All

  • .NET Development Uniscribe under .net 2.0

    Hi; We have a library that is at present 100% managed code. However, we need to get the runs in bi-di (Hebrew/Arabic) text. (Long explanation as to why.) Uniscribe seems like the best way to do this. Is there a .net equivilent of uniscribe or do we have to become 98% managed code I hate to do this because less than 100% is a security "opportunity." thanks - dave You can either use GDI+ to render, or if you want Uniscribe to do it you can us ...Show All

  • Visual Studio Team System Error on Check In

    After upgrade checking out a file works fin. When I check it in a couple of error dialogs appear saying checkin failed. Output window shows: YesNoRadioButton.cs has been automatically checked out for editing. Changeset 240 successfully checked in. Object reference not set to an instance of an object. Looking in the Source Control Explorer shows the file checked in! But in the Solution Explorer it still shows as checked out. On restartin ...Show All

  • .NET Development Visual Studio 2005 - Can't Load designer

    Hello I can create/build/deploy existing Pocket PC applications just fine. I just can't open the designer to add controls to the form. When I try to open the designer I get the following error" "One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may require code changes. Input string was not in correct format." I pasted in the rest the errors ...Show All

  • Windows Forms Changing LinkSpeed And Duplex

    Anyone know how these two values can be changed from a running program, or if windows has a built in program that can change these settings. Ive been experimenting with the netsh application (built in) and have yet to find any way to do this. Hi, Could you please give us more information Thank you, Bhanu. ...Show All

  • .NET Development single transaction between different methods

    I need to run a single transaction on the single database (sql 2005) between several methods (.net 2.0, c#). I made required preparations: cn.Open(); // connection SqlCommand mySqlCommand = cn.CreateCommand(); SqlTransaction mySqlTransaction = cn.BeginTransaction(); mySqlCommand.Transaction = mySqlTransaction; mySqlCommand.Connection = cn; then I tried to pass to each method open connection (cn) and sqlcommand ...Show All

©2008 Software Development Network

powered by phorum