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

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

Tussh

Member List

Ralf.R
Dev2808
Tom0674
Richard Lyon
Gary Mason
Sandeep Saxena
yaduo79
tori K
Janaka
Damodar
RobertV
fred1
Keith Boyd -MSFT
TamirB
brentonc
Georgi Vajarov
BLOODream
Timothy Carroll
Ramrakhaini Shanker
Manas Tripathi
Only Title

Tussh's Q&A profile

  • Visual Studio 2008 (Pre-release) February CTP of WinFX Posted -- Breaking Changes Post as well

    If you haven't seen, the February CTP of WinFX has been posted. While there isn't an MSDN article that outlines new features and breaking changes, I have posted a pretty comprehensive list on my blog. Regards, Karsten ...Show All

  • SQL Server "Creating a Mobile Application with SQL Server" Tutorial Problem

    I am attempting to go through the "Creating a Mobile Application with SQL Server" walkthrough found in the SQL Mobile Books Online help file. Towards the end of this document (under SQL Server Mobile Tasks), they show how to create a new subscription. Unfortunately, after step 10--when you are asked to click finish--I get the following error: TITLE: Microsoft SQL Server Management Studio ------------------------------ Failure to connect to SQL Server with provided connection information. SQL Server does not exist, access is denied because the IIS user is not a valid user on the SQL Server, or the password is incorrect. HRESULT 0x800040 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Hey Everyone

    Hello every1, i remember playing my snes :P it was a damn fun game console for sure though. i remember a game called earthbound best. it was a great game and it looks simple enough to make with todays game dev tools. i thought maybe it would b possible to make a online version of this game... would this be possible also wat about legal issues Deprecated means not supported any more - so there will be no bug fixes if you find any. Can you live with that Deprecated often (depends on the product) means 'won't be there in a future version. I have no official story on if DirectDraw will be in the next version of DirectX (major version - n ...Show All

  • Visual Studio Tools for Office security level problem

    I used visual studio tools to make an access runtime. When I tested the *.adp file I made, I have teh same security-level problems as if I set te security level in the normal access on medium. How can I change the security level of the access runtime to low Hi Korsakow: The best place to ask this question is on the Access Developer Toolkits newsgroup. You can access it here: http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.access.devtoolkits&lang=en&cr=US Thanks! Mike Hernandez Community Program Manger VSTO Team ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. multiple object with different colors

    i'm drawing 3 object, they are created from the same class so they are identical. i try to alter the color, so they have 3 different colors. the result is that the color of the first object is used for the other object aswell. this is some of the render function myGraph[ 0 ].GraphBorderColor = Color.Red; myGraph[ 1 ].GraphBorderColor = Color.Green; myGraph[ 2 ].GraphBorderColor = Color.Gray; for ( int i= 0 ;i< 3 ;i++) { Vector3 grafdist = new Vector3(( float )i* 10 ,( float )i* 0 ,( float )i* 10 ); Vector2 mousepos = new Vector2(MouseMovedPoint.X,MouseMovedPoint.Y); SetupMatrices(grafdist, mousepos) ...Show All

  • Visual C# event

    ok i read 1000 articles about events, they are all saying how to do what to do and i think i got that reall good, but still remain one big clarifing question: On click event how does even the event know that the user clicked the mouse Well... this "how does the event know that the user clicked the mouse" doesn't really have to do with events but with how Control class does it. The Control class from WinForms is in fact a Win32 window and so it receives window message from the operating system. Upon receiving some mouse meesage like WM_LBUTTONDOWN it fires a MouseDown event. It's something along this lines: void WndProc(M ...Show All

  • SQL Server Progress

    I have some SP's I run once a month and each SP takes a few mins to run and when I batch em together in one shot, I hate sitting there waiting for them to finish whats the easiest way to report back the status of the exec Ex: Set NoCount ON EXEC StatesUpdateZipTableUpdate 'AE' EXEC StatesUpdateZipTableUpdate 'AK' EXEC StatesUpdateZipTableUpdate 'AL' EXEC StatesUpdateZipTableUpdate 'AP' EXEC StatesUpdateZipTableUpdate 'AR' EXEC StatesUpdateZipTableUpdate 'AZ' How would I get it to report the results after each Exec In otherwords Id like to create a progress bar...... Just for Query Analyzer..... no bells and whistles ...Show All

  • Visual C# How to build C# using DDK environment NMAKE command?

    I have "makefile", "sources", "makefile.inc" and all .CS files in directory,  I want to use a command NMAKE to build it, like DDK build environment. How can I build it ------------ Sources file begin -------------------- !INCLUDE csharp_inc.inc TARGETNAME=CSharpBuildTest TARGETTYPE=DYNLINK SOURCES=    \         AssemblyInfo.cs         \         source1.cs    \         source2.cs     \ REFERENCES=System.dll;  \ ...Show All

  • Visual Studio Team System Microsoft Partner Program License Benefits FAQ

    The Partner team has provided me with the following FAQ, which I'd like to share with all of you in the hopes that it answers many of your questions. Thanks, Ajay 12/8/05 - I've updated the FAQ with a new version that I received from the partner team. This information will be making its way to the partner Web site as well. Eligible partners are scheduled to have access to Team Edition for Software Developers on 12/16. In the meantime, the Team Suite 180-day trial is available for your evaluation. We apologize for the delay. Microsoft Partner Program License Benefits FAQ   MicrosoftR Visual StudioR 2005 with MSDNR Subscrip ...Show All

  • Windows Forms position of the cursor in a form

    how do I get the position of the coursor in a WinForm application ...Show All

  • .NET Development A symmetry issue

    I don't know if this is the right place to post this, but any help regarding this simple( ) issue is appreciated. I need some symmetry between my development environment and my running web site. The root of my web site is http://www.mysite.com/ while the root of my development environment is http://localhost/myproject/. This means a lot of trouble as some url rewriting on my site forces me to use absolute referers in a href and img src attributes, which come to point to different locations in my local environment and on my web site. I tried redefining the root of my local environment in iis to c:\Inetpub\wwwroot\myproject\ instead of c:\Inet ...Show All

  • Visual Studio Team System "Assigned to" field in the work item editor

    Although I have added the team members in the Server groups they don't appear in the Assigned to“ combo of the Add new work item“ dialog. What should I do to get the team members listed in that combo Thanks, Ognjen Actually, we got around the problem by putting the users in the global namespace admin group first (close VS, reopen again).  Then move the users to their appropriate permission groups (e.g.: project contributer).  This seems to work for us (for now...) Hope this helps, Cissy. ...Show All

  • Software Development for Windows Vista SetWindowsHookEx and JournalRecordProc

    Hi, SetWindowsHookEx(WH_JOURNALRECORD,JournalRecordProc,hInstance,0) This is failing on Vista build 5231. Is this just not supported yet in the beta or is there a change to the SDK that I'm not aware of Thanks, Marcus Hi, I am looking for an answer to this also. When I call SetWindowsHookEx specifying Journal record I get an access denied error. Other hooks such as low level mouse seem to work fine. Does anyone have any infomration on this thanks, tim ...Show All

  • SQL Server drill-through does not work ?

    Hi friends I have a simple report that lists summary of transactions made by each customer. when i click on no of transactions ,as you know, it would display invidual transactions automatically. It all working fine with VS2005 RC1 but recently we bought VS2005 standard edition (Nov release). with this licensed version i cant drill thru report !! i mean i can run my report ok but if i click on no of transactions it would not display any details !! is it limitation of standard edition is it not default in released version Thank you very much for your help. Thanks Robert. Thats what i just found !! damn ,thats a nice feature to loose :( ...Show All

  • Visual Studio 2008 (Pre-release) Peer Channel performance

    Hi all! I am building a p2p application using WCF and the peer channel and one of the requisites of this application is to be able to send the higher number of updates per second. While doing some profiling, I noticed that server was sending (at least the sending method executed and returned) at the rate I had specified but clients were receiving at a variable rate. For instance, I specified an update rate of 170 miliseconds on the server and logs said it was sending more or less at that rate. But the logs on the client side were different: they showed a quite variable receiving rate (i.e. 171, 12, 189, 12, 231, 11, 171, 12, 232, ...Show All

©2008 Software Development Network