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

Software Development Network >> DEEPAK GARG's Q&A profile

DEEPAK GARG

Member List

Vipul123
Lalitk
CharlieRussell
Shepherd
PatOvens
mattdawg
InquiringMinds
jorijo
JavaBoy
Saurabh Kulkarni
AndyMills
globemast
ac30boy
knvdssr
darknessangel
ScubaBob
CarlosAlfaro
nibsi
Madni Abbasi
Mark1916
Only Title

DEEPAK GARG's Q&A profile

  • Visual C# VS 2005 crashes when launching "Add Reference" dialog

    Actually happens for both c# and vb.  I simply try to add a reference and before any window pops up vs hangs and then crashes.  I reinstalled w/out any luck (note I didn't uninstall and reinstall -- I did the "repair" utility which apparently recopied all necessary files). It was working fine some time ago and haven't a clue what is different -- I certainly didn't install anything that would directly affect the ide... like a plugin/extension. Unfortunetly w/out this functionality I cannot develop anything using vs 2005 that requires anythign more than the most basic references. Thanks for the response. It doesn't even let me get that far. I right-click, add reference, and then it crash ...Show All

  • .NET Development How to update data based on dataset entries

    I have a xml < xml version="1.0" > <Amazonbooks> <Mybook> <MyBooktitle>Astronomy</title> <booknumber>b121</booknumber> <city>SHILLINGTON</city> <state>PA</state> <description>Astronomy b121 Description on 19 dec</description> </Mybook> <Mybook> <MyBooktitle>Geology</title> <booknumber>b212</booknumber> <city>West Palm Beach</city> <state>FL</state> <description>Geology b212 Description on 19 dec</description> </Mybook> <Mybook> <MyBooktitle>Astrology </ ...Show All

  • Commerce Server Editing order data in Customer and Orders Manager

    One of our client's requirements is to be be able to have staff manually change the order status of the order forms and line items using the Customer and Orders manager. Can this be done "out-of-the-box" or do we need to change the source code Thanks in advance Chris Pearce Hey Chris, You cannot manually change the order through the Customer and Orders Manager, out of the box. If you need to be able to do this, you will have to modify the source code. As an alternative, you could use the Commerce Server 2007 BizTalk Adapters to modify an existing order. Let me know if you have anymore questions/concerns. Thanks Alan ...Show All

  • Windows Forms Custom forms designer ToolBoxItem dragging is failing in 2.0

    My issue is quite similar to Greg's: http://lab.msdn.microsoft.com/ProductFeedback/viewFeedback.aspx FeedbackId=62c8cb67-2f23-44fa-b8d5-1e53fe9fe3eb and also SasaJ's: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=318518&SiteID=1 I have a custom forms designer that was working beautifully in .NET 1.1 and is now experiencing issues in 2.0. Basically I have a custom toolbox, with a custom ToolBoxItem that is dragged from the toolbox to my root component (a form), which has a designer inherited from DocumentDesigner. I experience the same issue as SasaJ as far as the OnDragEnter and OnDragLeave being fired one after the other rapid fire. This in turn leads to the nasty flicker as described in Greg's thread, above. The O ...Show All

  • Visual Basic Beginners question

    Hi, when I use the HelloWorld example from the interop forms toolkit, everything is fine except if I try to add a new Public Sub. 1) E.g. I add the following code (while VB6 IDE is closed): in class HelloWorldForm after # Region "Public Methods" : <InteropFormMethod()> _ Public Sub newPosition( ByVal x As Integer , ByVal y As Integer ) Me .Left = x Me .Top = y End Sub 2) I open the vb6 IDE and start the main app. I press the "launch .NET form" button and see a modified .NET form, because I modified the form earlier in the .NET environment. 3) But if I edit the vb6 code re browse the objects in the object browser, I can not see the new Public Sub. What is the reason that ...Show All

  • Windows Forms datagridview fill performance

    I have a datagridview bound to a single access database table which contians 8500 records (20 columns). This is a worst case scenario for the dialog which typically has no more than a few hundred records. The datagridview contains rows can be filtered but must support display of all rows initially. The form takes about 10 seconds to load on a fast machine, which is too long. I can iterate through the same dataset very quickly, so the performance hit seems to be in loading the datagridview. I have disabled all autosizing, so that isn't impacting the performance. I have tried running the data adapter fill process in a background worker thread which alows the dialog to immediately load, but the datagridview still has to wait the full 1 ...Show All

  • Windows Forms Remove Excel Export Option from DataGridView

    Hi, Is it posible to remove the export to Excel option from a DataGridView in a WinForms App Thank's Giber ...Show All

  • Visual Studio Express Editions SNMP with VB 2005

    I am noob and trying to write a very simple app that will pull OID from a Cisco Router. Anyone have any samples or KB articles that will point in the right direction Thank you, Tim ...Show All

  • Visual C++ how to get rid of 0xc0150002 error?

    Hi all, I have this 0xC0150002 error when I tried to run my client.exe. I am making use of log4cplus.dll and have put it in system32 folder. What else must I do to make my program run I have been trying to run my program in a different pc. My client program was created using VS2005 with the log4cplus.dll in system32 and the include headerfiles of log4cplus placed in VS8/Common7/Include folder. It compiled nicely. Ok trying the Profile of depends.exe, I found out that the program successfully hooked up NTDLL.DLL. And later, it threw a 0xc0150002 exception. Any suggestions how I can go about it thx Atiz ...Show All

  • Visual Studio Team System Issues List on Project Portal Problem

    When I click on the Issues List on the project portal for my MSF for Agile site, it apparently pulls up all open work items regardless of the value for the "Issue" column. Am I missing some subtlety here Thanks. Perhaps we're getting closer. I ran the web service manually and invoked the Run method. It returned true . I then invoked the GetWarehouseStatus method and it returned Idle . The report still shows the same results however... What sets off the hourly adapter run I don't see a SQLAgent job. Is there some other mechanism in use ...Show All

  • Visual Basic DLL Question

    In vb.net, can I create a dll that allows my calling program to use the exposed functions directly without needing to first create an instance of the dll Thanks, As I understand it, you want to make a DLL that isn't a class If so, just replace the class decleration in the DLL with: Public Module MyModule Public Sub GAH() 'do stuff End Sub End Module ...Show All

  • Visual Studio 2008 (Pre-release) Line break in textbox

    Hi! Hope its easy question. How can i force enter key to go the next line in textbox Thanx Maybe you are looking for this: AcceptsReturn = " True " (in c#: mytextbox.AcceptsReturn = true ) Sam ...Show All

  • SQL Server Inserting data from text file to SQL ME table

    Hello, I have an application taht requires the use of a table. The device that this application works on, has a local memory that does not allow me to insert the 800,000 records that I need. Therefore I have two approaches: 1. To insert less records into my local memory database e.g 40,000 but not row by row, bulk insert is better. How do I do the bulk insert 2. This is the most prefferable way: To find a way to insert all 800,000 records into a table on the storage card which is 1GB. What do you suggest Will using threads be helpfull Any ideas I use C# from VS 2005, SQL ME, compact framework 2.0 and windows 4.2. Thanks in advance, John. SQLCE doesn't support bulk inserts. In my opinion ...Show All

  • Visual Studio Prevent control from showing in toolbox?

    I have a C# control library (Windows.Forms controls) containing several controls. Some of these controls are base classes I don't want the user to have direct access to. I would like to prevent these base class items from showing up in the toolbox when the library is added to the toolbox via 'Choose Items...'. The question, then is how does one prevent a control from appearing in the control list when the library is added to the toolbox (I have no problem supplying custom bitmaps for the items I DO want displayed.) Thanks, Carlos. Someone actually tried to tell me this earlier but I didn't understand... must not have had my coffee. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. My first game... Asteroid Defense.

    In this game you are a ship protecting a planet from incoming asteroids. Controls: 360 controller: Left Joystick -- Move ship left and right. A -- Shoot Right or Left Trigger -- Change Weapon. Keyboard Left and Right Arrow Keys -- Move ship left and right. Up and Down Arrow Keys -- Change Weapon Space -- Shoot The weapon you are using is shown in the top left corner. The stronger the weapon you use, the less points you get for destroying an asteroid. Levels progress at timed intervals and more and more asteroids come down. You lose when one of them reaches the planet. Screenshot: http://www.rocketsoft.gm-school.uni.cc/uploads/ADScreen.JPG Game File: http://www.rocketsoft.gm-school.uni.cc/uploads/AsteroidDefense1.1.rar All in ...Show All

©2008 Software Development Network