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

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

Satishchandra999

Member List

xystar
Julie Knibbe
coldfact
Ed Maia
Siva M
Chris_Guzak
marcosaferreira
laslous
suddenelfilio
Star93
Avi_harush
Keith Dorken
Steven Raybell
Gareth Osborne
sloppypoet
Sairam Srinivasan
Ivan Farkas
TSVCorp
Ron Dean
minidea
Only Title

Satishchandra999's Q&A profile

  • SQL Server Problems with SQL Task

    Hi! I have a problem running a package and one of its SQL Tasks. This is the action the task performs: DELETE FROM Fac_Vendita WHERE Data >= I pick the value from a variable I get from a previous task, and I map it in the new task like this: Variable name: User::dur Direction: Input Data Type : DBTIMESTAMP Parameter Name: 0 I get this error: DELETE FROM Fac_Vendita WHERE Data >= " failed with the following error: "Invalid character value for cast specification". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or conne ...Show All

  • Visual Studio 2008 (Pre-release) How to minimized the application to system tray

    In WinFX, how do we minimized the application to the system tray You would have to use the NotifyIcon class to show the icon in the tray. In addition you might want to use ShowInTaskbar=false ...Show All

  • Visual Basic VB The usual sql update data row problem

    Hello everyone! Ive seen many differnent answers and solutions for this question, but mine is a little different... What I have is 2 different variables (1 string & 1 integer)... I want to place those two variables as data in an existing datarow in my sql db. I can add them as another row no problem... but i have a row of data already partially filled and want to add these two values into the two NULL parts of that existing data row... Any suggestions or hints (actual code would be nicer) would be greatly appreciated. Im actually starting to get this VB programming down- sorta. I think yo ...Show All

  • Visual Studio Team System Developer has no access to SCC

    Hi, I am using TFS beta3r and am experiencing a strange problem with the project I've created last. Since project creation failed a couple of times I had to use tfsdeleteproject.exe to remove it twice before I was able to successfully create it. After that it seemed to work just fine but my developers are not even seeing the project in SCC. They can interact through Team-Explorer, but cannot see nor access the source-code. The complete hive is missing in the source-control-explorer. If I look as administrator, I see the TFS-Project hive 3 times and all 3 show the solution and files. I've checked the rights in SCC-explorer and they are ...Show All

  • Visual Studio Debugging

    When trying to debug, I'm getting an error message "The binding Handle is invalid.  This VB Express 2005 (not a beta) I downloaded last night.  What should I do   In the project properties, under the Debug tab, can you uncheck the "Enable the Visual Studio hosting process" Do you still get the error Habib Heydarian Program Manager Visual Studio Debugger ...Show All

  • Windows Forms Data and multiple threads?

    Hi there I'm a bit of a database wimp and need to know the best method (at least the likely best anyway) of doing the following: I have data arriving at the computer from an external source over IP. The data is text delimetered. Records can arrive as slowly as once in 5 seconds and up to 10-20 per second. I need to be constantly monitoring the socket and when packets (records) arrive, spilt it up and put it into a table that is saved to disk. At the same time, the form needs to display a datagridview with the current information as it arrives. The form also needs to be able access the current data and write the data ...Show All

  • Visual C# Unable to update the dependencies of the project

    I have had this error every time I try to check my program into source control after making changes. The project builds and works fine until I check it in and check it back out then it won’t build. I have deleted the setup project and built a new one only to have the same problem after checking it into source control. It also givs me a warning that " Assembly ' FolderName\FileName.exe ' is incorrectly specified as a file. Any suggestions would be helpful. 1. Yes, there is a database project in the solution. 2. If I delete the hierarchy section in the project file I just get the same series of " ERROR ...Show All

  • Visual Basic How to implement the word warp option in a text box via coding - for VB and VB.net

    Hello guys, A text box should have word warp option enable. this should be done by a coding. It would be very helpful if it is both in VB as well as .net Please some one help me out with this. Regards Madhan Word wrap is turned on by default so you shouldn't need to turn it on in code. If you do then TextBox1.WordWrap = True does the job. However that seems too easy so I suspect that is not your problem. Two other things to note: 1. The MultiLine property also needs to be set otherwise wordwrap has no effect. 2. The box needs to be big enough to display multiple lines. You cannot do this ...Show All

  • Windows Live Developer Forums Web Site Integration

    Is it possible to allow my customers (who logon to my web site) to see that I am online with MSN Messenger, and begin a chat session with me from the web site, without using the Client-MSN Messenger software If so, could someone point me in the direction of some resources or information that I could pass along to our developers for review I just started using WebMessenger and it would be great if we could integrate some of that into our web site so that customers could send us questions, etc. via MSN Messenger. Thanks! I'm developing something exactly like that now :) It probably will take a few weeks though before it will be ...Show All

  • Visual Studio Team System TFS RTM Trial Upgrade to Full Version

    We are currently using TFS RC, and are planning on purchasing the full released version as soon as it is available for purchase. We would like to install the trial version that is available for download on MSDN, so we don't have to wait for media, but we are concerned about needing to reinstall once we do have the purchased media. Ideally once we make the purchase, we would like to be able to enter the key and have the trial turn into the full "unlocked" version. We have received contradicting information about this working. A TFS support person told us (over the phone on a support ticket) that this would not be possible, but ...Show All

  • Visual C++ memory leak and linking error

    I am a not-so-frequent user of microsoft tools. Someone [a great researcher and an ok-programer] left me with a project he developed in visual C++ 6.0. It has some memory leak. The program fails when I increase the data size. 1] Removing memory leak: I searched MSDN it asks me to add the following snippet to find memory leak #define _CRTDBG_MAP_ALLOC #include <stdlib.h> #include <crtdbg.h> I added that snippets to the .cpp files. Offcourse it defines a new "new function" and there seems to be another one lurking from libcmt.lib. How do I resolve it The error is a linking error nafxcwd.lib(afxmem.obj) : er ...Show All

  • .NET Development Difference between Sockets and TCPlisterner-TCPClient

    Hi, I'm new to sockets and I can't understand the difeerence on creating sockets using : New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp) or using the TCPListener and TCPClient classes. Any help will be appreciated.. Thanks. Ubercoder The Socket class is not protocol specific and provides an abstraction for network communication.  This way you can write code using a single set of semantics (Bind, Connect, Send, Receive, etc) regardless of the network protocols you wish you use.  For example, you can write a Sockets-based application that uses IPv4 or IPv6&n ...Show All

  • SQL Server Documenting a reporting services site

    Does anyone know of a good tool that will help with documenting a reporting services website I inherited a prebuilt site and I am trying create some documentation about it. I have tried Visio, but it documents down to layers I do not need to go to. I just need the folder heirarchy and the reoprts within each folder. Thanks for you help! frank Sorry - we don't have such a tool in the box.  You can use a script to do this pretty easily.  Create a VB.Net based script to call the ListChildren API recursively.  Run it in rs.exe. You can format the output into a tree pattern to make it presentable. -Lukasz --- This ...Show All

  • SQL Server SQL Server Express, ODBC, Microsoft Access sees data Read-Only

    Hi there, I have successfully installed SQL Server Express. I have copied NorthWind to SQL Server. I have created an ODBC to the SQL NorthWind. But my problem is, I open the data but I cannot edit or insert records to the Customer table. I have gone into SQL Management Studio and modified Permissions on NorthWind and the Customer table with Alter, Insert, Update. But no luck. Has anyone experienced this Email me at justintoronto@hotmail.com if you have a solution. I will try to check back here also. Thanks, Justin Please use Microsoft Data Access forum: http://forums.microsoft.com/MSDN/Show ...Show All

  • Visual C++ Interop with Struct

    If I have following class in C++. How should I declare the unmanaged code in C# typedef void * MQISDPCH; /* Connection Handle */ /* Information required for MQIsdp server connection */ typedef struct struct_SVRS { long portNumber; char ipAddress[MQISDP_INET_ADDR_LENGTH]; } MQISDP_SVR; /* Connect parameters - fixed length portion*/ typedef struct struct_CP { long version; long strucLength; /* Fixed length plus variable portion length */ char clientId[MQISDP_CLIENT_ID_LENGTH + 1]; long retryCount; long retryInterval; /* seconds */ unsigned short options; /* WILL flag, WILL retain, WILL QoS and Clean Start ...Show All

©2008 Software Development Network