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

Software Development Network >> Andrew Tweddle's Q&A profile

Andrew Tweddle

Member List

scndsky
kieranjacobsen
Mike_Kla
Gris
jony
Ernesto Vasquez.
CI2
Sean Stapleton
Sevana Oy
freeranger
Bertil Syamken - MSFT
ashish1482
Smitha S Saligrama
greg_burns
Jason Lau
kunallen
Mark McCasland
JWhite
NithyaS
Talljames
Only Title

Andrew Tweddle's Q&A profile

  • SQL Server Where are my migrated packages?

    I have successfully migrated 50+ packages from 2000 to 2005. Where are they ! ! I looked through Management Studio and through Visual Studio ("SQL Server Business Intelligence Development Studio") and cannot find them. Note: When I open Visual Studio the splash screen confirms that Integration Services is installed.   Thanks   Kirk has blogged about it here: http://sqljunkies.com/WebLog/knight_reign/archive/2005/05/05/13523.aspx Hope that helps! - Ranjeeta ...Show All

  • Windows Forms I love MS and Windows

      Filiberto Selvas MSFT wrote: Thanks for the note; we are definetely watching performance. Could you provide me more details on what operations were too slow and what specifically too slow means   knowing some details on your connection speed/location coould help too Thanks Hi Filiberto, I dont have troubles with my connection speed. It is ok. But I have one issue: (1) When I enter Members List. Later, I enter to Search posts of any user there. Then I enter to Member List, again. I enter to Search post of other user there. Finally, I see same post list of first user. I believe that some variable of session ...Show All

  • Visual Basic textbox selectall not working

    Neither of the two code pieces are working for me... Private Sub TextBox1_GotFocus( ByVal sender As Object , ByVal e As System.EventArgs) Handles TextBox1.GotFocus TextBox1.SelectionStart = 0 TextBox1.SelectionLength = Len(TextBox1.Text) End Sub -= OR =- Private Sub TextBox1_GotFocus( ByVal sender As Object , ByVal e As System.EventArgs) Handles TextBox1.GotFocus TextBox1.SelectAll() End Sub When i put text in the textbox, move focus away, and then back again, i would expect the text to be selected, however it is not working for me. Any ideas (Visual Basic 2005 Pro ...Show All

  • .NET Development NetworkStream with UDPClient

    hi, is it possible to use a networkstream while using an udpclient to send and receive data. I have a thread wich constantly checks the Stream to see if new data has arrived, because i have to implement both a tcp connection and an udp connection i'd like to use the same thread to check for incoming data as well as sending data; by setting the UDPClient to work only with 1 remote host is it possible to use the networkstream for this pupose btw, how do i make the code in a post look like code instead of normal text thanks!!!! ...Show All

  • Windows Forms Remoting

    Hi,   This is a multiserver application. It has a primary server ,a secondary server & a client. The client first creates a remote primary object and a remote secondary object, then makes a remote call on the secondary object with the primary object as a parameter. When the primary object is passed as a parameter the exception thrown is: "An unhand ...Show All

  • Visual Studio Express Editions New VB user questions

    I am an experienced programmer in QB but new to VB. I have VB 2005 Express and am trying to get up to speed. For a learning project, I have a simple Windows form that calculates a Cylinder volume. The form has labels and test boxes for input, a results box, and 3 buttons (Calculate, Next, and Exit). Functionally, all works correctly so far. Question 1 - How do I set up to use keyboard navigation for data entry going to the next field or button The TAB key will jump to the next field, but not trigger a mouse click. The Enter key does not do anything. Question 2 - How can I cause a jump to a desired field on a data entry error such a ...Show All

  • Visual C# GDI+ Multi Thread

    I am using GDI+ to draw to the graphics object when an OnPaint event occurs. However, if you draw lots of things, the form becomes unresponsive until all of the drawing is done. Is there anyway to put the OnPaint event in another thread, so the form can remain responsive while the painting occurs Try to create classes that contain the logic and create a IDrawable interface or something with a Draw( Graphics g ) method. Then you can cache the Pen, Brushed or even an Bitmap representation withing the instances. Grey Young, please specify wish part you are intrested in and i will provide a sample. ...Show All

  • Visual C++ Has casting to int from double changed completely in VS2005?

    Has casting to int from double changed completely in VS2005 Numbers that are too big are always -1 now. Which has caused me much pain to track down and is not compatible with code we currently use. Here is an example, it used to be that if you cast a big number to an int, you would some value that was related to it in some way: (int)1.0957837e+011 => -2090779696 But now it is always -1 if the value is out of the range of the int: (int)1.0957837e+011 => 0x80000000 Is there anyway to make Visual Studio 2005 use the old style of casting Thanks John Petritis John: I'm not see this behavior. Her ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. c++ Express

    Hi All, I get an error when trying to install Microsoft Visual Studio 2005 Premier Partner Edition Installer . It tells me that I don't have VS2005 and cannot install. I thought this could be used with the Express editions Is this true I tired to install XNA without this but it would not work. Thank you, Paul Hello, The program we are talking about in this thread is XNA Build, which is a build system for professional games. It is not related to XNA Game Studio Express that was announced on Monday that allows you to develop games for Windows and the Xbox 360. ...Show All

  • Visual C++ Problem compiling a program

    How do I compile my code   When I open a file, it won't let me debug or run the file.  And if I manage to get that, as soon as it runs, it just says: Press any key to continue... then it quits.  windows.h is part of the PSDK headers which is not installed with the VC 2005 Express SKU, you will need to install it separately. Check the below link for more details on how to proceed: http://lab.msdn.microsoft.com/express/visualc/usingpsdk/default.aspx Thanks,   Ayman Shoukry   VC++ Team ...Show All

  • Software Development for Windows Vista Work on Native Application Menus

    Hi Guys Is there any possibilities to add a menu in native menu list of Pocket PC 2003. I want to add a menu in popup menu list when tap and hold on desktop screen of PocketPC Hi Satish, in this forum we discuss issues around software development for Windows Vista on Mobile and Tablet PCs. For PocketPC issues I suggest posting to http://www.microsoft.com/communities/newsgroups/en-us/default.aspx dg=microsoft.public.pocketpc.developer Thanks Stefan Wick ...Show All

  • .NET Development DoEvents not available under My.Application

    Problem: When I try to add a My.Application.DoEvents statement to my form code, DoEvents is not a member of the list. Background: I started this project as a Windows Service. To make my initial draft easier to debug, I changed it to a Windows Application and added a form. The program is running and the interface works. I tried the Run Custom Code option under each of the files under My Project, thinking it might regenerate the myApplication object. Now I am not sure it has anything to do with this. Thanks in advance for your advice. Glenn Not sure why it doesn't show for you, but you can hit it ...Show All

  • Visual Studio Propating targets from master to sub-builds

    Any real world product of any size that uses msbuild.exe (apart from the VS project systems) will end up with many .*proj files which get chained together using the MSBuild task. There must be some way to propagate specified targets from parent to child. I have seen some suggestions on doing this and they look absurdly combinatorial in approach. There has to be a simple way for a parent *.proj file to pass along the target list that it was invoked with to its subordinate .*proj files. Yes We do not have any runtime defined property like MSBuildBinPath for target names that the project was invoked with. H ...Show All

  • Visual Studio 2008 (Pre-release) WS-Management

    Does WCF support WS-Managerement WCF doesn't have an implementation of the WS-Management http://msdn.microsoft.com/library/en-us/dnglobspec/html/ws-management.pdf The WS-Man is based on the WS-Transfer, WS-Enumeration and WS-Eventing specifications. These specifications are not implemented in the WCF current version. Roman ...Show All

  • SQL Server Cant See Network Server

    Hi, I just installed SQL Server 2005 on Windows Server 2003 (Act as DNS and DHCP server for the network). When I tried to access it from my workstation (Windows XP Pro), using SQL Server Management Studio, theres no list of Network Server available. Anything that I should configure first Hi, is SQL Server Browser started on the server HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

©2008 Software Development Network