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

Software Development Network >> Deepesh Srivastava's Q&A profile

Deepesh Srivastava

Member List

Fred
rwgreene
IainDowns
Jacob Sebastian
mert-1
silentpower
imok
twinsfan08
Gueneal
RomanJB
PUYBARET
daman543
redwyre
AliSyed
Govert van Drimmelen
jmccall3
bob12354
Malcatrazz
SlEasy
Allen Jones
Only Title

Deepesh Srivastava's Q&A profile

  • Visual Studio Express Editions Can't install VB Express from a CD

    Because I have a dial-up connection, a friend burned me the setup.exe file for Visual Basic 2005 Express Edition.  However, when I double-click to install from the disk (whilst connected to internet) the process of downloading 60 MB starts up  (v-e-r-y slow on my connection - took 15 minutes yesterday to get just 6 MB! Has my friend made a mistake when burning setup.exe file to CD   I thought doing it this way would save my phone costs, but I might as well have downloaded from the VB Express site for myself. Using Mozilla Firefox/Thunderbird, downloads start up again when cut off (which I had to do due to lack of time).  ...Show All

  • Visual Studio Express Editions Compiling a Visual C++ project in Visual C++ Toolkit

    I have a small project that someone gave to me that was written in Visual C++ 7.1. I need to make some tweaks to the code, but I don't own Visual C++. The project outputs a DLL. I just downloaded the Visual Studio Express Edition 2003. This would be fine for me, but I'm not sure how to translate the project files he gave me to the compiler and linker command line options. I've got a vcproj, dsp, dsw, ncb, sln, and suo file for the project. Is there any documentation that I could follow to figure out how to rebuild this project Or might there even be a tool that does it Failing that, any suggestions on how to get started ...Show All

  • Visual Studio Express Editions Problem porting a Visual C++ 6 application to Visual C++ 2005

    I'm trying to migrate a project made on Visual C++ 6 to Visual C++ 2005, but even with no compilation errors, the application don't work as the VC++ 6 project. My application is a project about API Hook, and it's not working on Visual C++ 2005. What can I do to maintain compatibility Hi! You need to provide more information about your problem. Which library you use - MFC, ATL, WTL, STL... or clean Win32 API What function not working as you expected - post it here, so we can see it. ...Show All

  • Visual Studio Express Editions Random Number generation In Visual Basic 2005 Beta 2 Express

    Hi. Can anyone tell me how to generate a random number between 2 other's I have found a function for it in the object browser: System.Random.Next(integer, integer) but I can't access it in my code. Any help would be wonderful. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Thanks, The Digital Pioneer OK, thanks a million. That did it. ...Show All

  • Windows Forms Is there a way to ONLY install the source code...

    I'm getting an 80005000 error on the install. I'm only after the source code at this point. Is there a way to just innstall that and not the db or web pages Kyle! click on the source code download link.  Install that and you will have a VS solution you can look at. ...Show All

  • SQL Server How to encrypt database in SQLServer2000, please help me, thanks

    I have 2 questions: 1. How to encrypt data of database in SQL Server 2000 Someone can't see true data if without password or something else. 2. If i have 2 database . All of them have same table, structure, ....How to update or insert or change in the second database when i update or insert or change in the first database automatically Thank you very much. Oops, I didn't realize you were referring to SQL Server 2000 1. Encryption is a new feature for SQL Server 2005.  Prior to this, encryption on tables had to be done externally.  You can create encrypted procedures, but this only encrypts the p ...Show All

  • Windows Forms User Control - GotFocus - LostFocus

    Hello, I work with a third party control that provides the ability to load within it Winforms controls and providing a multi document interface such as the one in the VS.Net IDE. I find that adding a handler to the user control's got and lost focus works when the user control does not have any other controls hosted on it. On adding one or more controls on the user control, the user control's Got Focus stops firing. I cant seem to figure out either the cause of the problem or even a work around that will enable Got and Lost focus to fire correctly. Any help will be great. Regards, Avinash       ...Show All

  • Visual C# Writing a txt File problem

    Ok, in my proyect iam trying to simulate a drawing editor, but i want to create a Log File ( drawing.txt ) in this file i want that every line have two points example: {100,100},{200,00} // this for the first line drawn {45,88},{82,89} // this for the second line ... //... etc, for every line drawn so i did in my code a function, fucntion that is called by the event OnPaint public void logactions( Point a, Point b) { string path_string = "C:\\Drawing1.txt" ; using ( StreamWriter _path = new StreamWriter (path_string)) { string data = a.ToString() + "," + b.ToString(); ...Show All

  • Visual J# I need System.setProperty(String, String)

    Hi; I need to be able to set some system properties (for some unit tests). How do I do this In java it's System.setProperty("key", "value"); thanks - dave Hi David Thanks for the feedback. Your request for this JDK 1.2 level method in the future releases has been noted. Like all other requests from our customers about what they would like in our future releases, this request also would go through our planning/investigation process. With regards Ashwin Raja ...Show All

  • .NET Development client-side/server side cursor

    I'm using VS.NET 2005 (July CTP) to develop a windows application that connects to a SQL Server database.  How can I set my connection to use server-side cursors instead of client-side   I'm going to have some large result sets and I'm afraid some client machines will not have adequate disk space.  .Net Data Provider for Sql Server (SqlClient) version 2.0 does not support server-side cursor. There is no connection string attribute to enable this. If you have certain large BLOB columns, then you can use ExecuteReader with the CommandBehavior.SequentialAccess option. The values wi ...Show All

  • SQL Server Updates to Live Web Server

    I'm developing a web app using ASP.NET and SQL Server 2005 Express. So far it's all been on my local computer, it hasn't gone live yet, so if I need to add a column to a table or make some other schema change I just do it right in Visual Studio, nice and simple. If I have to delete all the old content and start over, no problem. When I deploy it to a staging server I just overwrite the existing file with my new one, losing its data in the process. But soon enough I'll be deploying this to a public web server, there will be real live data in the db, people using it when I need to make updates. What are some common strategies for updating t ...Show All

  • .NET Development How to Serialize a non Sertilizable object into Binary?

    Hi   ,   I have an object ObjXML of type XmlDocument (object may be of any non serializable class). I have to Serialize it into Binary. I know that XmlDocument does not implement ISerializeable.   That's why according to framework we cannot serialize it.  So is there anyway around to get this object (ObjXML) into Binary.   I will be   highly   obliged to your help.     Regards Muhammad Waqas Bashir The following uses a MemoryStream (just another way of doing it) [ Serializable ()] public class Custom ...Show All

  • Visual Studio Team System list of fixes or improvements for VSTS from Beta 2 release to July CTP version

    Hi,   Could someone please provide list of fixes or improvements for VSTS from Beta 2 release to July CTP version Thanks, Anu You can find other information about what changed in the following blog post. Info on the upcoming July CTP http://blogs.msdn.com/buckh/archive/2005/07/11/437820.aspx Buck ...Show All

  • Windows Forms Selecting a row in a datagrid

    I have a datagrid bound to a dataset. I am wanting to be able to double click on a row and have a new form come up that is passed a hidden ID of the selected row, I can then load the relevant info onto the new form. Currently I have the following: Private Sub DataGrid1_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles D ...Show All

  • SQL Server Connect to SQLServer behind a fire wall.

    Is it possible to connect to SQLServer which sits behind a firewall I have a VB 6 application using OLEDB. How about with .net appliction. Yes, you just need the right port/protocols open. By default, I believe SQL server uses UDP over port 1434. Here are some MSDN resources: MSDN Library > ... > SQL Server 2000 > Basic Installation Options > Network Libraries http://msdn.microsoft.com/library/en-us/instsql/in_runsetup_77g3.asp frame=true SQL Server 2000 > Relational Database Components > Communication Components http://msdn.microsoft.com/library/en-us/architec/8_ar_cs_98mr.asp ...Show All

©2008 Software Development Network