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

Software Development Network >> Dharan Prakash's Q&A profile

Dharan Prakash

Member List

Sharma Rahul
Furqan Farooqui
NagySaNa
rsholtes
GaryPod
Gnanaprakash
Tryin2Bgood
dangrmous
vasu pulipati
FM_AX
Andijk
Tryin2Bgood
Farhan H Soomro
Troy Lundin
Vyanki
prozac11
El Bruno
SAIC Albany
Rozee
Sacha Vieux-Roy
Only Title

Dharan Prakash's Q&A profile

  • Visual Basic String input to copy remote files

    I am trying to create a checked listbox containing a listing of .dll files to choose from, underneath this listbox I want to have checked boxes listing servers. I am trying to create an application that will allow the user to choose which .dll's they would like to copy onto a remote server of thier choice. My question is - Is this a possibility to do I am learning vb.net on my own and I am looking for any information that might help me with this project The main question I was trying to ask, sorry it wasn't to clear, is how to work with a check list box listing which .dlls to grab and encorporate this into the checked boxes below it that choose the servers. I'm not sure how to do the coding on this. ...Show All

  • Visual Studio Team System integration of 2 database

    im working on an online project. i have got 2 datbases. 1. bookings and 2. accounts. i want to insert the updated details of 2 tables of bookings to accounts.Accounts already have those tables.by using a class i hope to perform this operation.. could you suggest how to or any other idea to perform this operation VS TS for database professionals does not directly offer any such feature to integrate two databases, but by editing the scripts manually, it may be achieved, although not sure if it is a practical solution for you. Using schema compare feature, you may generate the schema update script, and alter it. Schema compare also facilitates skipping some schema objects which do not need t ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. The Relation Of Math And DirectX?

    Do I Really Have To Be Professional In Math To Be Professional In DirectX Matrix understanding is important, so is the fact that a Matrix * a Vector will give you a vector and stuff like this Also you need to understand a little about tangente that are vector on surface of object, Normal that are perpendicular vector That vector are simply 3 values x,y,z That matrix can contain Rotation/translation/Scaling Also their is math involved in Calculating light, math formula like this : Light = Material Color * (Light1 + Light2 + Global Ligth ) This is not the exact formula but DirectX microsoft help will give this to you Those mathematic formula are crucial to understand how color component give the final light ...Show All

  • SQL Server Error: unable to start t-sql debugging. could not attach to sql server process

     Hi, Sorry for the long post but I tried to be thorough. Recently an issue was discussed on the .NET Framework inside SQL Server Forum of that I have when trying to debug a SQL server project in Visual Basic. Here are the steps that I have done in order to resolve the error is get (Unable to start T-SQL Debugging. Could not attach to SQL Server process on ....  ) : I have created a SQL Server project using Visual Basic. It only have one file: test.sql that has only a select statement. This is the standard template from Visual Studio 2005. I attached a valid connection to SQL server 2005 on the server. The workstation is named Scully and the server is named Mulder. I can ping the server and connect to SQL ...Show All

  • SQL Server adding dbo to db_owner

    Im duplicating a database by running the script below. This works fine. My only problem is that the dbo user does not by default have any role memberships in the new database hence no access. I have tried using sp_addrolemember but dbo is not a valid user for this procedure. Adding dbo to the db_owner role through the sql2005 MS works fine, but I would very much like to script this. Any suggestions --copy database use master; alter database polaris_regular set single_user with rollback immediate; DROP DATABASE polaris_regular; backup database polaris to disk = 'c:\tmp\polarisbak.bak' with INIT,format; restore filelistonly from disk = 'c:\tmp\polarisbak.bak'; restore database polaris_regular from disk = 'c:\tmp\polarisbak.bak' with ...Show All

  • Visual Studio Accessing IVsTextLayers?

    Hello, I'm trying to support word-wrap and folding/outlining better and with better performance in my vi/vim emulation addin. In order to do this, I'm trying to access the different layers in an IVsTextView directly. I've been successful in getting the 'topmost' layer (IVsTextView -> QI(IVsLayeredTextView) -> GetTopmostLayer() -> IVsTextLayer), but I can find no sensible way to get the next layers. The real need is to get to the layer that comes before word-wrapping, which I'm guessing is the last layer. I'm guessing there is one or more layers that applies the outlining/hidden regions. Accessing this layer, I can quickly map buffer coordinates to non-word-wrapped-but-outlined coordinates. The only thing I've found that return ...Show All

  • Windows Forms font.Height and Graphics.MeasureString failing on user machine?

    I have a Forms app that prints reliably on my laser printer but fails on a user's Zebra thermal printer. Filling my code with exception logs shows it throwing System.ArgumentException whenever I try to use the Font.Height property or Graphics.MeasureString on the same font. To help track this down I borrowed the user's printer, installed his driver on my development machine... and it works fine. Any suggestions as to what could be going wrong, or other things to check Looking at the Font.Height property implementation, I see no code that could throw ArgumentException, just ArgumentNullException and one of the many GDI+ exceptions. Can you post a snippet of the code that throws on your customer's PC ...Show All

  • Visual Studio Express Editions Create Data in dataset that was not created in SQL

    How do you create a table in the Dataset that does not appear in the sql database, but uses info from tables that were created in the sql database And why is this done How do you create a table in the dataset... Dim theDataTable as new DataTable( name ) Dim theDataSet as new DataSet() theDataSet.Tables.Add(theDataTable) ...used info from tables that were created in the sql database this part im a bit unclear on, do you mean you wish to create a table, extracting certain values from an existing datatable which was populated by SQL ...Show All

  • Windows Forms How to change the icon beside a filename in windows explorer?

    Can someone please tell me how to change the icon beside a filename in windows explorer I use Visual Studio to create some icons and wish I can change the icon beside these icon filenames in windows explorer to look similar to the icon themselves. Thanks! Zhi-Xin, I know it works with the "Thummails" mode but why I don't know how to make it work with the "details" mode. (As you know, the "details" mode does contain icons next to filenames.) ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Garbage Collection

    Hi. I'm not a game programmer yet but I'm a programmer. I have been learning computer graphics (opengl) at school and while I was talking to one of the professor was referring to Java as the main problem is that the garbage collection does not permit it to be real time. I know that the .net framework which I use quite often has garbage collection as well. The problem with garbage collection is that you (the programmer) does not know when it will happen. My question are 1) Is Xna going to have garbage collection and 2) if it will have garbage collection, wouldn't this make a video game slow thanks Francisco Shawn Hargreaves wrote: ]A lot of the code for Unreal Engine games is written in a scripting la ...Show All

  • Windows Forms How to Hide Entire Category in a PropertyGrid

    Hi Folks, I would like to know if there is a way of Hiding entire category from a PropertyGrid (PG) I have been using the Browsable(False) attribute on property that I need want to be displayed on the PG. Then when all properties belonging to a perticular category have been browsabled-false the category automatically dispeared. However, I still have the a category that are still present and that is the Design category. It contains the Name and Locked properties, but I would like to remove them too. Is anyone knows how to get around doing that Thanks Seve Hi I have followed the steps you have written and i am able to filter based categories and display name etc.. but i have an issu ...Show All

  • Visual Studio Reporting in VB .Net 2005

    Hi, I have MS Access as the backend, and using VS 2005. I want to create a report, where I could load pictures in the section. I will get the path of the picture's path from the database. Anyway of doing this, as I couldnt find any solution so far. Please kindly help. Thanks in Advance. When you say you are using a command to bring back data from your database, where do you put the data      My knowledge of VB.Net is pretty limited so there are probably other ways to do this but I use a dataset.   I right click on the project name in the Solution Explorer then select Add then Add New Item and I select Dataset.   This opens the designer view for creating your dataset. &nbs ...Show All

  • Visual Basic MessageBox.Show doesn't works in Win2003 ED. Why?

    Hi everyone, Primary platform is Framework 2.0. We're suffering an odd behaviour for an UI code. We've built a Windows Service by means of VB and everything goes fine. OnStart method and another ones we've defined a MessageBox.Show function in order to show errors or whatever to the users but unfortunately they don't see at all. Curiously it happen only in our server (Windows 2003 Enterprise Edition) no in a Windows XP Pro workstation. Does anyone ever faced this issue According to BOL is not recommendable to show UI in that kind of projects but "only not recommendable". Thanks for your time, I don't think it is a good idea to use messagebox for a windows service. Windows services shou ...Show All

  • .NET Development Memory in aspnet_wp.exe in Increasing

    Hi Everyone I have one c#.net web application.when i am running the application my aspnet_wp.exe memory is increasing regularly to 200MB.Can i manage the aspnet worker process memory in my application Its urgent.... Regards Saroj Nanda Hi Saroj, I don't know any possibilities to limit the memory usage of the worker process. You should search for memory leaks in your application because this is not a normal behaviour. Maybe you should manually dispose large objects, which are temporary used. Regards Christoph von Ameln ToxicMind Software ...Show All

  • Visual C++ exporting vc++ 2005 class in vba

    Hi, need some help from you guys. Till now I've been writing dll code in VC++ 6.0 exporting classes to VBA ( Excel ). I tried to recompile the dll under VC++ 2005 ( I don't get any error message ) but it doesn't work anymore when I call the methods via VBA. I wonder if anyone has a suggestion on what I should do to make it work properly. What has changed so radically between VC6.0 and VC2005 that make the code useless A help would really be appreciated. Thanks in advance Christina   chris65 wrote: dependency walker show the exports but tells me as well that three dll are missing ( MSVCR80D.DLL, EFSADU.DLL, MSJAVA.DLL ) whereby when I copy MSVCR80D.DLL in the debug directo ...Show All

©2008 Software Development Network