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

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

175726

Member List

Bababooey
Jerry Griffiths
Jordan Sparks
Chris Peeters
mmickas
AndreaC
DamsDev2007
GETE
Glandorf
feby
Omar Khan
Ian Roof - MSFT
FranckDG
tlabue
TommyBB
Rakesh Mishra
NeverGone
bruce_heath
Swiftk77
dino.net
Only Title

175726's Q&A profile

  • Visual Basic Error using RejectChanges when validating a DataRow

    I am trying to write some validation code to be executed during the RowChanging event. (I already have some other validation in the related ColumnChanging event handler.) If it finds errors I want to give the user the option to go back & correct the errors or Cancel the changes. The code looks like this (in outline): Private Sub ProblemsDataTable_ProblemsRowChanging( ByVal sender As Object , ByVal e As ProblemsRowChangeEvent) Handles Me .ProblemsRowChanging Dim r As Integer If e.Row.HasErrors Then r = MessageBox.Show( "There are errors in this record." etc. etc. ) if r = DialogResult.C ...Show All

  • SQL Server How to get the URL to access a report?

    hi, all I am just starting to use the SQL Server 2005 report service. And I also made some reports, and I am thinking how to get the URL to access the report, especially when I have some parameters need to be passed into the report. Basically it's something like this: http://servername/reportserver /Sales/YearlySalesSummary&rs:Command=Render&rs:Format=HTML4.0&Year=2002 where Year is a parameter. Check the SQl Server Books Online for URL access. ...Show All

  • Visual Studio Express Editions How to get an activation key

    This is the message I am getting from the beginning when I try to register my Visual C# 2005 Express Edition Beta. "Our records indicate that you have exceeded your limit of verification e-mail messages. Check your Inbox to confirm that an e-mail message has already been sent. If you are unable to locate a verification e-mail message, please visit Contact Us to request assistance." However, I have never received a verification message. A visit to 'Contact Us' ran dead since nobody there knows how to help me. Regards,   Guido I'm sorry you weren't able to resolve the issue with Contact Us.  I'm w ...Show All

  • SQL Server Creating RS 2005 with Visual Studio 2003

    Hi All, My company is condidering upgrading to SQL Server 2005 and/or Visual Studio 2005. We may decide we want to upgrade one without upgrading the other. My concern is the Reporting Services compatibility. My understanding is that if we decide to upgrade to Visual Studio 2005, we would have to upgrade to Reporting Services 2005 because VS 2005 cannot create reports that are compatible with RS 2000. But if we decide we want to upgrade to RS 2005, we can continue to create the reports in VS 2003 because RS 2005 supports RS 2000 rdl files. Is this correct Thanks! Yes, you are wright. Bu ...Show All

  • .NET Development RemotingConfiguration.Configure ensureSecurity parameter

    The old .NET 1.1 Configure method is marked as obsolete, and recommends using a new override with a parameter ensureSecurity. The MSDN documentation on the ensureSecurity parameter is a bit laconic: " true to enable security; otherwise, false ." I want to maintain backwards compatibility, i.e. don't want to require security. But I may want to use the new security features at some time in the future. What should I set this parameter to I'm a bit confused that the decision whether to use the new security features is hardwired into the code via this parameter rather than being defined in the configuration file. ...Show All

  • Visual Studio Team System Changesets, Merges, and atomic cherries.

    I've been having a look at the capabilities of changesets and merges, in particular I was interested in the following: * Cherry-pick merges -- you can merge specific file change to another branch without merging the changes that were included in previous versions of those files. Thus, if you've got 2 bug fixes which touch the same file, you can merge the second one without merging the first. So, I conducted the following simple experiment, involving a single file, and merge from a parent branch $/Test/Main to a child $/Test/Main-branch . I added a file A.txt into $/Test/Main, with a single line of text, Original Code. History ...Show All

  • .NET Development Assembly cant load for Policy Assemblies - .Net 1.1

    Yes I know this is typically for 2.0 but I hope someone can help. I can add the assembly in GAC. when I try to add in Runtime Security Policy\Machine\Policy ASsemblies, I get: --------------------------- Cannot Add Assembly --------------------------- Unable to add the selected assembly.  The assembly must have a strong name (name, version and public key). --------------------------- OK   --------------------------- but it is signed with a version and a public key!! here is the manifest: =================== .assembly extern mscorlib {   .publickeytoken = (B7 7A 5C 56 19 34 E0 89 )       ...Show All

  • Windows Live Developer Forums When is it gonna be released

    Hello, When is live chatting going to be included into live.com thanks I think the forum title related to this kind of chatter . ...Show All

  • Windows Forms view source of page requiring auth

    Hi. Is there anyway to get the source of a webpage if that page requires you to be logged in(giving you the login page if you're not)  The reason being I want to parse a forum that has a login.  I've tried gettting the page source the webclient download data way, but to no avail: WebClient web_client = new WebClient(); Byte[] page_in_bytes = web_c ...Show All

  • Visual C++ Type casting question

    I need to convert one legacy C++ type to .NET type.I would like to know which is the preferred one.I am writing code in managed C++. int a; 1)System::Int32 i = (System::Int32)a; 2)System::Int32 i = Convert::ToInt32(a); Thanks in advance Jimmy Martin, This actually confused me.This syntax looks like legacy C++ casting.Is this preferred in C++.NET What is your reason for using the same ...Show All

  • Windows Forms Manually wrap a string

    How do I manually wrap a string I want to popup a help text as a ToolTip on a TextBox, but I do not know how long this string is in advance and as the ToolTip does not have a maximum width with autowrap it might look pretty ugly to have an 800 pixel wide ToolTip with one line. So it seems that I have to break the string myself. How do I do this, if I want to break it after a full word every, e.g. 250 pixel One way I guess is to create a Graphic object from an empty Bitmap, append word by word to the string and measure it each time until it fits, but that sounds pretty unefficient to me. Is there a build in function I did overlook ...Show All

  • Visual Studio Express Editions How to get and/or set IP address?

    Hey, I'm using VB Express 2005 and I'm trying to write a small program to configure remote network devices. In order to do the initial configuration, I need to get the IP address of the local hard-wired ethernet adapter, or set it. One way of doing this, I figured I could set the local hard-wired adapter to DHCP and connect it to the device. Windows would assign an automatic IP address, which I could simply obtain. I would much rather be able to assign a specific IP address, do what I need to, and the re-set the adapter to its previous settings. Finding the correct hard-wired adapter could be as simple and promting the user with a list of ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Which version of MDX to choose?

    Hi! I've decided to start learining C# and MDX. Which version of MDX i should choose I thought about 2.0, but it's still beta and there's no documentation for it. What advantages does it have over version 1.1 use 1.1 its release and it works. mdx 2.0 is being rolled up in to the xna framework, and is currently not being worked on :( and in its current release, 2.0 has bugs i guessing MS hasn't said when the xna framework will come out ...Show All

  • Visual Studio Toolbar buttons getting disabled

    Hi, I developed an addin and added a toolbar to it (Visual Studio 2003). The toolbar is instantiated in the CConnect::OnConnection(...) function. Everything works fine and the toolbar is visible, however all buttons of the toolbar are disabled. I have tried various things to enable them but to no avail. I have tried using Office::CommandBar::put_Enabled(...) (for the entire menu) property and Office::CommandBarControl::put_Enabled(...) (for each individial control bar item) property. Any help will be highly appreciated. P.S. I have noticied that people usually answer questions related to VS 2005. Is it true or just my feeling If yo ...Show All

  • Visual Studio Team System Backup you data with Team Foundation Server Beta 3

    Since the documentation looks to be outdated: What are the steps to take to backup all the data within TFS3. It should be a backup of all tables (including SharePoint Services and Reporting Serves data) from SQL Server and a backup of Windows SharePoint Services. Is that it Are the attachements now stored within the database Thanks, Neno That's the version control file cache, as Bill mentioned.  The version control caching proxy is both part of the server (TFS) and a standalone app that can be installed on a server at a remote location.  Since it is inherently part of every TFS app tier, all installations end up with this dir ...Show All

©2008 Software Development Network