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

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

Sandhya

Member List

Guy Burstein
Moshe Shitrit
Die LTs
vijil
mayette
-Mak-
basquini
dnyanesh
MISIIM
Neil K.
NeonLight5325
Arthur
PaNuK
Cher
bradgessler
GWizmo
Arulanantham
mapradeepkumar
charlie_mtz
chen_k
Only Title

Sandhya's Q&A profile

  • Windows Forms Help for final application

    Hi I wonder how can I develop a help for my application for example Micorosoft word has a very good help which can be pulled up by pressing F1, yet I don't know whether we can do make a help for our applicaiton using Vs.net 2003. Is there any tool which can be used to make help for my window application. And how about web appli ...Show All

  • Smart Device Development migrating to CE5

    I have program written for a Symbol PPC scanner. I used VS .NET 2003 for this device that runs CE4.2. Symbol is now shipping these scanners using CE5.0 and naturally my simple program (I scan barcodes and save them to a SQL CE database) is not compatible to the next version of your OS. Please excuse the sarcasm but it is a little frustrating. Anyway, Symbol indicates I need the MS Win CE Utilities for VS.Net 2003 Add on pack and their .net kit for their stuff. However, when I look at the readme for the MS stuff (I got version 1.1 off support.microsoft.com), it says nothing about 5.0, only 4.2. I loaded them anyway, but I do not see ...Show All

  • Software Development for Windows Vista Soundmax Audio Driver and Windows Longhorn Beta 1

    Hi, I have Soundmax driver installed on Windows Longhorn OS. When I use the sound recorder that comes with the OS (in the Startup->Entertainment section) and record through a microphone, my recording is okay. But if I use Wave out Mix as input pin  and try recording from Windows Media Player to the Sound recorder that comes with the OS, it does not record. It changes my setting to microphone when I start recording automatically. Also another difference I noticed between Windows Xp and Windows Vista is that mixer device option in the Volume Control of Windows Xp shows SoundMax Digital Audio and with Windows Vista it shows " ...Show All

  • Visual Studio Team System Snapin VersionControl.Common.Integration & EventFilter give error

      When running the items related to the below trace a sql exception related to Updating Identity occurs--   any insight is appreciated.     00000399 9:23:45 AM [4764] [CS] [Info, PID 4764, TID 5644, 14:23:45.714] Snapin Loader Examining file C:\Program Files\Microsoft Visual Studio 2005 Team Foundation Server\Web Services\Services\bin\Plugins\Microsoft.TeamFoundation.Build.Common.dll   00000400 9:23:45 AM [4764] [CS] [Info, PID 4764, TID 5644, 14:23:45.824] Snapin Loader Examining file C:\Program Files\Microsoft Visual Studio 2005 Team Foundation Server\Web Services\Services\bin\ ...Show All

  • SQL Server invalid object name 'sys.objects'

    Our scripts have a sql server 2005 requirement.Some of our customers have reported the error invalid object name 'sys.objects'  . On going through some of the posts in this forum it seems to me that sys.objects is a view introduced in sql server 2005. So i suspect this problem might be occuring because the user is trying to run our script on an older version of sql server. I want to know if this is the only possibility or if there is any other case this error can occur in sql server 2005. Thanks, CC ...Show All

  • Visual C++ Is there anything wrong with this command?

    /* read in the parameters from the infile */ if ((fp = fopen(Infile, "r")) == NULL) { sprintf(msg, "Input Error: can't open %s", Infile); Error(msg); return FALSE; } I have this part of my code, where in another subroutine data is wrote into an input file and here I want to open the input file for the use of the data within it. When I execute my program, I obtain the error: Input Error: can't open in. 8()E where () symbolises what looks like a musical note. I ran the Debug and this is what I got back, can anyone decipher it or make any sense of it Thanks Loaded 'ntdll.dll', no ma ...Show All

  • SQL Server Well, thanks. But..

    I'm using the import wizard to create a new table from a flat file source.  The table gets created but no data gets copied.  What's wrong   Here's the report: Operation stopped... - Initializing Data Flow Task (Success) - Initializing Connections (Success) - Setting SQL Command (Success) - Setting Source Connection (Success) - Setting Destination Connection (Success) - Validating (Error)         Messages         * Error 0xc00470fe: Data Flow Task: The product level is insufficient for component "Source - inSsrc_txt" (1).    ...Show All

  • .NET Development Is it possible to convert XML into a Class?

    Given an XML stream as below, is there any possibility to convert the same into any treditional class style with . (dots) as seperator of the nodes of the xml file... for instance bank.code.tostring() should reslut me " 5070 " and bank.description.tostring() should result " ICICI - Bangalore " bank.location.destination.code should result " MB " bank.location.zone.code.tostring() should result " 12 " etc ., And the XML file being ... < xml version ="1.0" encoding ="utf-8" > < MainBank > < bank > < code > ...Show All

  • Visual C# How do I calculate the number of days between two dates in C#?

    Does anyone have a code sample that might help Here's also a suggestion: Code Snippet private int DateDiffInDays( DateTime fromDate, DateTime toDate) { return toDate.Subtract(fromDate).Days; } ...Show All

  • Visual C++ Static link of Microsoft Samples - need hotfix download dir *.lib

    When I linking Scribble, IDE regular post me kind of 'Could not find user32.lib - failure' & so on. I solved the problem by importing \LIB from Visual C++'98(6.0). Why on the earth Visual C++'2005 Express have no MFC and even WOW32 LIB   >You can download the Platform SDK and an the VS Express homepage there are instructions to include the PSDK into Express. Sorry one more time! Platform SDK already downloaded. FAQ's, too. Would you mind be so kind as to refer to a strict link for 'instructions to include the PSDK into Express' ...Show All

  • Visual Studio 2008 (Pre-release) CodeBehind gone?

    Has the ability to provide a CodeBehind compile at runtime source file been removed from WPF altogether used to be a CodeBehind element in http://schemas.microsoft.com/winfx/xaml/2005 None of the samples that use it work anymore. If you are talking about x:CodeBehind attribute, then it has been removed a long time ago.  You do not need it to specify the code behind. ...Show All

  • .NET Development to use the NetworkStream::Write() for synchronous sending!?

    Hi ^, i would like to realise a synchronous communication using the NetworkStream::Write() method. In theoretically ("...The Write method blocks until the requested number of bytes is sent or a SocketException is thrown. ...") it is possible to use this function for synchron sending but in fact the Write() method doesn't send the data directly to the remote machine it puts the data into the outgoing network buffer of the PC so doesn't wait for the remote machine's answer. If the outgoing network buffer is full just in this case will be blocked the Write() function. I don't know how can i avoid this buffer or how can i set th ...Show All

  • Visual Studio Unable to read 2 (out of 3) media

    Is there any reason that a TOSHIBA DVD-ROM SD-M1612 DVD player might be able to read the Visual Studio Team Foundation Server DVD, but not the SQL Server 2005 DE or the Team Suite media ("Windows cannot read from the disk.  The disk might be corrupted, or it could be using a format that is not compatible with Windows.") Either way, is there an alternate method of obtaining the software hey, thanks a lot for the reply mike i know, HP should be a little more helpful with the updates, what i had to wind up doin was scrapin the old HP drive and i put in a samsung burner, and everything works perfec ...Show All

  • Visual Basic GDI Save Problem

    I've been reading books and surfing the web for an answer to what, I thought, was a standard graphics problem I'm having...hopefully you can help. I need to obtain an image from a file (bmp), display it on a form (probably a picturebox), draw on it (g.drawline(), etc.), and then save the image as a different BMP. Here's a simple version of the code: Dim g as graphics = Me.CreateGraphics() ' get image Dim myImage as Image=Image.FromFile("MyPic.bmp") ' draw it g.DrawImage(myImage,0,0,myImage.Width,myImage.Height) ' draw anything here g.DrawEllipse(Pens.Red, 50, 0, 50, 100) ' save it myImage.Save("c:\MyPic1.bmp", Im ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Shader versions and efficiency on same shader code

    I was wondering about, as the title says, if there's any difference in compiling shaders using vs/ps2.0 instead of vs/ps1.1 on code that's compatible for both types. Here's an example of the vertex shader I use for setting up the post processing quad in my program: vsQuadOutput vs_QuadSetup( vsQuadInput Input ) { vsQuadOutput Output = (vsQuadOutput)0; Input.Pos.xy = sign(Input.Pos.xy); Output.Pos = float4(Input.Pos.xy, 0, 1); Output.Tex.x = 0.5 * (1 + Input.Pos.x); Output.Tex.y = 0.5 * (1 - Input.Pos.y); return( Output ); } So simply put, is there a difference between the following 2 options I can use ...Show All

©2008 Software Development Network