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

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

webber123456

Member List

Jonathan Howard
integrators
rstuven
Inetcor
DenversAllenB
abzz
yonatanh
Molavi
zx225
ScratchMonkey
Dhaval-Patel
Graham Lower
John C. Strauss
awturnbull
Nagaraju Somisetty
Peter Aspect
wigga
mightypeo
Bill Oliver
latdev
Only Title

webber123456's Q&A profile

  • Visual Studio Using an object as input to the CR Designer and runtime

    I just succeeded in getting my first CR .rpt file built with the ADO.Net Dataset designer resulting in a nice tabular report at runtime (passing an ADO.Net dataset, rendering it as a PDF report, etc). Now I need to find out how to fill out the Report Header and Page Header sections. At runtime, most all of the information I need for these sections is available to me in the Request.Form object. Are there any good examples of how to model report sections at design time when the "data" for will not be available till runtime in some .Net object Replace the single quote with double quote. string= ...Show All

  • Visual Studio Team System Upgrade RC to RTM

    Is it possible I only found information about how to upgrade from B3R to RTM. Can I just uninstall RC and install RTM Regards, Max Hi Max The following posts should answer your question: http://blogs.msdn.com/team_foundation/archive/2006/03/06/544808.aspx http://blogs.msdn.com/robcaron/archive/2006/03/17/554115.aspx Regards Michael ...Show All

  • Visual C# Help me : Recognise a word by press Ctrl+ right mouse click

    I make an dictionary application , i want to make a function : user can Ctrl + right click on the word ( Inside my own application , not other application ) and i show the meaning of word. How can I recognise a word by press Ctrl+ right mouse click Can you help me with some demo or can you give me an advice. Thank you very much. Hi! All depends on how you show words in your app. If you use TextBox or RichTextBox - use GetCharIndexFromPosition() to find the right character in right mouse down event. When you have index inside text - it's easy to find word by scanning forward and backward. If you render words by yourself ...Show All

  • Visual C# How to end the if statement?

    for example private void sample() { if(condition) { //some code here here is where I want to end the if statement without executing Execute me, I don't want to use the goto statement. } // Execute me } There is a couple of different ways: Use an else block: private void Sample() {     if (condition)     {         // This executes if 'condition' is true     }     else     {        // This executes if 'condition' is false        &nb ...Show All

  • SQL Server Problems migrating DTS package

    Hi I have run the migration wizard. This is the error I am getting: TITLE: DTS Migration Wizard Error ------------------------------ The destination server must be an instance of SQL Server 2005. ------------------------------ BUTTONS: OK ------------------------------ I have selected (local) as my destination server, it is the same as source. The version is 8.0.194   Any idea I believe that you have answered your own question! You are trying to migrate packages to Sql Server 2005 (9.0) but store them on an instance of Sql Server 2000 (8.0). As the error message states, this is not possible. -Doug   ...Show All

  • Visual Studio Express Editions Directory searching

    Using: Directory.GetFiles(string path, string searchPattern) Is there a way to specify multiple file types in the search pattern What I'm trying to do is get all BMP, PNG, and JPG files from a directory without having to search the same directory three times to get all of the files. Thanks in advance, Bill I don't think so it is possible for provide multiple search patterns like "*.jpg | *.bmp". i faced this problem also a little while ago, but was unable to find any solution. Workaround : Get all the files from the directory and then compare each file extension ...Show All

  • Visual Studio Team System How to view labels for a file in Team Foundation?

    I am using VSTS 2005 Team Suite June CTP. I add a label to a file, but the History command doesn't seem to show the labels that are assigned to a file.  I don't see any way to view the labels assigned to a file in Team Foundation. Am I missing something obvious or is this truly not supported While it's not exposed in our clients, there is an overload of QueryLabels that lets you see which labels are associated with a filespec. Example here: http://blogs.msdn.com/buckh/archive/2005/10/25/484854.aspx I don't believe we store the timestamp when a label was applied/modified. ...Show All

  • Visual C# classes best practices

    Hey guys, I am still new at this and was wondering what the best practices for creating and handling classes were. Is it better to build my classes inside one major C# file or do I need to create an individual file for each individual class or is it just better to have my classes embedded in the particular form I am working on Which is the best approach and best practice for classes Thanks, ~zero In my opinion it does not really matter at all how you orginize your code files, just do whatever seems to be reasonable... It is even valid to split one class over multiple files (partial class) if it makes sense to organize your ...Show All

  • .NET Development WS-SecureConversation and UsernameToken

    Hello, I've posted this on the Channel 9 Techoff forums but it doesn't seem to be getting any responses there so I thought I would try it here: I've tried searching for online material and looking through some code samples but am still in doubt as to the easiest way to do the following:  I want to initiate a SecureConversation using a UsernameToken, and do it in a secure manner.  Now, sending UsernameTokens securely seems to be a hot topic but none of the examples I've looked at seem to be any good.  Two methtods seem like good solutions but they really aren't that great (in terms of elegance) and I really think there is a ...Show All

  • Visual Studio Express Editions registration

    I downloaded visual c++ cd and installed it manually as explained in the faq. Everytime I open vc++ it ask me to register (to get icons and other prizes) I registered 3 times and got 3 e-mail in my homail inbox saying "thank you for registering" (and I downloaded the icons...) , but again each time I run vc++ it still asks me to register... But I'm registered! It's annoying, what can I do you have to put in your registartion code under the help menu - click register product... then enter your code. just a suggestion Glynnder ...Show All

  • Visual Studio Team System Connect to server error

    Hello all. Details:    Foundation Server (FS) beta 3 (refresh)               Team System Developer Editiion My current FS is functioning properly for the most part.  There are 4 clients running TS Developer that can connect to the FS server correctly.  One client is not working properly.  Below is an outline of events detailing the issue: 1. install FS1 2. install clients 3. clients connect to FS1 correctly 4. install FS2 5. clients connect to FS1 and FS2 correctly     (rogue client is not attemptin ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. non-FVF VertexBuffer

    How to create Mesh with non-FVF VertexBuffer (Managed DirectX) I tried to specify declaration but Mesh has FVF VertexBuffer after creation: Microsoft.DirectX.Direct3D.VertexElement[] elements = new Microsoft.DirectX.Direct3D.VertexElement[] { new Microsoft.DirectX.Direct3D.VertexElement(0, 0, Microsoft.DirectX.Direct3D.DeclarationType.Float3, Microsoft.DirectX.Direct3D.DeclarationMethod.Default, Microsoft.DirectX.Direct3D.DeclarationUsage.Position, 0), new Microsoft.DirectX.Direct3D.VertexElement(0, 12, Microsoft.DirectX.Direct3D.DeclarationType.Float3, Microsoft.DirectX.Direct3D.DeclarationMethod.Default, Microsoft.DirectX.Direct3D.Decla ...Show All

  • Visual Basic [Vb express 2005 beta 2] New project : nothing to add :( !!

    Hi, I'm using Vb express 2005 beta 2. If I hit "new project", the only options I have are :  - class library  - screen saver starter kit Where are all the rest I cant even create a windows form I should have here a couple of options to add (modules, classes etc..) I reinstalled it. Still the same issue. I hope someone can help ! Thank you very much ! Tusk Thank you for trying to work out that issue with me. Actually, no, this is a totally fresh install. I bought a brand new laptop about a month ago, that I formatted and re-built the partitions again, then installing win xp + sp2 On my destop, I ...Show All

  • SQL Server How to implement split and merge?

    I need to implement following flow: [Source] - > [Split] -  [IF TRUE] -> [DO SOMETHING] - [OUTPUT TO C] -  [IF FALSE] -> [DO SOMETHING ELSE] - [OUTPUT TO C] The issue is to come back to the same destination after conditional split. In other words, is there something opposite to "Multicast" I looked at Union and Merge - but it looks like it's not for this kind of things. Thanks. There is no requirement for both inputs into a UNION ALL component to both have data. It will work perfectly well if no rows at all are passed through it - which is of course true for ...Show All

  • Visual Studio Express Editions is it possible to make an english weather indicator?

    is it possible to make an english weather indicator AKA, one thats in celcius and has english weather. I know its possible, but does anyone know of a RSS site And can anyone supply me with some code for it Hi, Take a look at this post which has a reply on how to use Yahoo weather RSS feed. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=141737&SiteID=1 I believe Yahoo Weather also has England weather forecast. There's also an example of RSS Reader here http://msdn.microsoft.com/vbasic/downloads/code/default.aspx . Best regards, ...Show All

©2008 Software Development Network