Software Development Network Logo
  • Visual C#
  • Windows Forms
  • Windows Vista
  • .NET Development
  • Microsoft ISV
  • Visual FoxPro
  • Audio and Video
  • SQL Server
  • Smart Devicet
  • Visual Basic
  • Visual C++
  • SharePoint Products
  • Visual Studio
  • Game Technologies
  • VS Team System

Software Development Network >> Joseph Stalin's Q&A profile

Joseph Stalin

Member List

roadresident
Eric Kinateder
yvolk
Prabagarane
Sandeep A
Karthikeyan Mahadevan
furjaw
HedleySohn
Al33327
m_shane_tx
Sarwanan
Auris
BillyBee
mikeymay
Amir.S
imanish11111
IanO
daytonboi
VenkatB
Dylan Smith
Only Title

Joseph Stalin's Q&A profile

  • Software Development for Windows Vista I get linker errors for an empty project produced by DirectShowWizard VS.NET2003

    Hi everyone I installed the DirectShow Wizard for VS.NET2003 in http://tmhare.mvps.org/downloads/DSWizardInstaller.zip , and produced a default project. When I build it It gives the following linker error. Could anyone know the reason for this error Thanks for your attention from now ------ Build started: Project: Test, Configuration: Debug Win32 ------ Compiling resources... Linking... Creating library Debug\Test.lib and object Debug\Test.exp Test.obj : error LNK2001: unresolved external symbol "class ATL::CAtlBaseModule ATL::_AtlBaseModule" ( _AtlBaseModule@ATL@@3VCAtlBaseModule@1@A) TestProp.obj : error LNK2001: unresolved external symbol "class ATL::CAtlBaseModule ATL::_AtlBaseModule" ( _A ...Show All

  • Visual Studio Express Editions Problem with dates

    I want to add days to a date, but I dont want to count the saturdays or sundays, or party days, how can I do that Thanks for all the help. Kaos wrote: I want to add days to a date, but I dont want to count the saturdays or sundays, or party days, how can I do that Thanks for all the help. As Stephen says, there's nothing intrinsic in the framework or the Base Class Library to do what you want. But, it's already been done many times. For example: Calculate Number of Working Days . ...Show All

  • Visual Studio Express Editions My.Computer.Keyboard.SendKeys test works so-so

    I figured it's about time for me to try out 'sendkeys' so I modified the help example slightly and my code does not work too well. Using button 2 (below), only occasionally results in additional text being added to Notepad. What did I miss Public Class Form1 Dim ProcID As Integer Dim ss As String = "Here is a little bit longer string" & _ " and it even goes to a second line" Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ' Hit button one first, just one time ProcID = Shell( "notepad.EXE" , AppWinStyle.NormalFocus) AppActivate(ProcID) My .Computer.Keyboard.SendKeys(ss, True ) ...Show All

  • Visual Studio Express Editions How to AutoRedraw drawing on a picturebox

    I wrote a simple program which saved two mouse positions of mouse down and up and then drew a line. But the problem was that when I minimized the window and again restored it, the drawing would disappear. In VB6, enabling the AutoRedraw value would repaint the picturebox. How can I do it in VC++ Plz don't mind the unnecessary cast, it was just a dummy project (^; private : System::Void pictureBox1_MouseDown(System::Object^ sender, System::Windows::Forms::MouseEventArgs^ e) { x1 = static_cast < float >(e->X); y1 = static_cast < float >(e->Y); } private : System::Void pictureBox1_MouseUp(System::Object^ sender, System::Windows::Forms::MouseEventArgs^ e) { x2 = static_cast < float >(e->X ...Show All

  • Visual Studio Team System Exam 70-306. Visual studio version?

    I want to give the following exam. Exam 70-306 Developing and Implementing Windows-based Applications with Microsoft Visual Basic .NET and Microsoft Visual Studio .NET   However, i want to give it for Visual Studio 2005. Does anyone know which version of Visual Studio is covered in the exam If it is not Visual Studio 2005, when is Ms planning to bring it. Thanks for your time!! Hi This exam uses original VB.Net (2003). Its format has not changed when new version of vb.net was posted. If you are interested to train and study using VB 2005, you should consider taking the new route / set of exams (MCT) A good starting point is below: These would be the ones to start ...Show All

  • Software Development for Windows Vista HKEY_CURRENT_USER\System ?

    I found it Today. ( this is not question and issue for me) HKEY_CURRENT_USER\System\CurrentControlSet\Control\MediaProperties \PrivateProperties\JoyStick It should be located under HKEY_LOCAL_MACHINE ...Show All

  • Visual Studio reportviewr in C# express

    Hi, I am new in C#, I installed vs c#2005 and .net 2.0 but unable to installed SQL in my computer. I would like to use reprotviewer in local mode in my C# project. I had installed reportviewer.exe and .net framework redistribution according to the instruction, but I cannot find the reportviewer tool in the tool box. I don't know what I was missing, can anybody help. Thanks in advance. Hello there, I have installed the ReportViewer add-in and the references were added on my Visual C# Express... but when i click right on Toolbox and then Choose Items it doesn't shows ReportViewer component in the list... what has happened I don't understand... Another thing... i would like to create a Client Report Def ...Show All

  • Windows Live Developer Forums Map not loading in Firefox 2+

    I'm catching the following error in Firefox 2+ when calling LoadMap(): "TypeError: this.InitializeMap() is not a function" this.InitializeMap() is called in the VE api. Does anyone know of a workaround try { // FF 2.0 fix from MSDN Forums - http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=852512&SiteID=1 // Avoids the "Browser does not support SVG or VML" error // If the browser is Firefox get the version number var ffv = 0; var ffn = "Firefox/" var ffp = navigator.userAgent.indexOf(ffn); if (ffp != -1) ffv = parseFloat(navigator.userAgent.substring(ffp + ffn.length)); // If we're using Firefox 1.5 or above override the Virtual Earth drawing ...Show All

  • SQL Server SQL Server 2005 Express install on VISTA

    I have a new laptop with VISTA. I've enabled IIS with all features turned on. When I install SQL Server 2005 Express I get a warning stating IIS is either not installed or disabled. Any ideas Thanks. I upgraded to VISTA Ultimate. Now I have an FTP Service windows feature and the Advanced SQL Express installation detects IIS when I enable FTP Services. I did not try VISTA Business; don't know if VISTA Business has the FTP Service option. ...Show All

  • .NET Development SqlDataSource to call stored procedure

    Can someone show me how to use SqlDataSource to call stored procedure in a c# class (a support class for aspx) and not in aspx or code-behind Cindy, SqlDataSource is geared more towards declarative code, rather than programmatic access. Even though you could do it, why not just use SqlCommand Sahil Malik http://blah.winsmarts.com ...Show All

  • Visual Studio how to create a deployment for add-in in vs2005?

    Hi man, I have made a add-in in vs2005, now I want to make a deployment pls tell me how Thanks. Hi Focus, Have a look at Setup and Deployment Project type. Or also you can use more agile method and use Votive project - WIX integration for VS 2005. To know more about Setup and Deployment Projects in VS.NET use Google or just read article – “ Creating Setup and Deployment Projects in VS.NET ” More information about WIX I've posted here - IronPython Setup using WiX 3.0 Good luck! ...Show All

  • Visual Studio Tools for Office Where are the deployment walkthroughs?

    The deployment walkthrough articles mentioned in the VSTO resources post have vanished with no forwarding links. Where did they go, those are the most complete and best information for deploying VSTO addins to target machines. VSTO Deployment These whitepapers are interrelated, so be sure to review both of them. · Overview http://msdn.microsoft.com/office/default.aspx pull=/library/en-us/odc_vsto2005_ta/html/officevstowindowsinstalleroverview.asp · Walkthrough http://msdn.microsoft.com/office/default.aspx pull=/library/en-us/odc_vsto2005_ta/html/officevstowindowsinstallerwalkthrough.asp Hi Ken, Alternatively you may use this FWLINK http://g ...Show All

  • Windows Live Developer Forums Problem Photo Upload Dialog: "THis folder has a new image format. The COnverter is downloading."

    Does anyone have any insight as to what is causing the photo uploader not to recognize any photos in the My Pictures folder It shows "No photos in this folder" (when there are) and when you change to another folder containing photos it gives a dialog box " There are images with a new format in this folder. The converter is downloading". Well, there are the typical jpg photos in the folder, and when the dialog box goes away by itself, it still shows "no photos in folder". I've tried the whole reinstallation procedures, clearing cache, removing objects, etc. Every reinstall has the same problem. Any insights please -David Hi David  Did you ever get a reply or ...Show All

  • Visual Studio Team System FxCop confusion

    Hi, I'm a bit confused between FxCop 1.35 and and the "managed code analysis" : 1. Do I need VSTS for Software Developers for the VS code analysis to work 2. If not then how do I enable the built-in code analysis I noticed I've got the fxcop folder and rules under "C:\Program Files\Microsoft Visual Studio 8\Team Tools\Static Analysis Tools" - does this help me 3. Will the SuppressMessage attribute only work with VSTS for developers I can't get it to work with fxcopcmd thanks Av 1. You need either Visual Studio Team Suite or Team Edition for Developers to run Code Analysis. 2. If you have the Team Tools\Static Analysis Tools directory sounds like you alread ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 2d Platforms

    I understand it'd be pretty difficult to help me with a problem with me just describing it, without seeing code so... http://skynes.tripod.com/TheWizard.zip There's a link to a zip file containing my XNA project and all images. The Project so far is a mix of a couple of tutorials I found online (2d wizard and a tile engine) along with sprites I found online. I haven't made any of my own sprites yet cause I don't see the point until I have everything working, but I will be using all my own original sprites when it works. Anyway. So far it's a wizard who can jump and shoot fireballs. An enemy (movement currently commented out) walks across the screen, firballs dont do anything yet, but touching the enemy costs you a life. M ...Show All

©2008 Software Development Network