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

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

DineshSharma

Member List

CodyPasspied
Rob Manger
RBowden
Joseph22
Tilfried Weissenberger
smithmx
Kirk Evans
Madix_t
mliesmons
Ayman_Hdaib
Emz21
Lawrence Parker
crowsfoot
ljc-ljc
Matt_
Derek Nedelman
davidhov
Ro0ke
Phillip S.
julien talois
Only Title

DineshSharma's Q&A profile

  • Smart Device Development Problem getting connected in mobile5

    I have an ordering program that sends the order over the phone line. We use a bluetooth modem to connect and a dell axim to take the order. The application uses opennetcf to open a dial up connection to the modem. It worked fine in windows mobile version 4.2 but it does not work in version 5 now when i try to send an order, an error message pops up saying it can not connect. Any suggs. would be helpful thanks, ...Show All

  • Visual C++ Error message PSAPI.DLL

    I am getting a error pop up saying Get Process Image file name w. could not be located in the dynamic link library psapi.dll What should I do to fix this. April Ok, first of all, I'm not sure this is the right forum. So, if it isn't, I'd appreciate you telling me which one is. Now, to the problem. I just downloaded Internet Explorer 7.0 (yay!). But, whenever I click any of the usual toolbars (like File, Edit, View, etc.) or click any of the new toolbars (on the right side of the screen the down arrow next to the house, the down arrow next to Page, etc.) I keep getting the following message: McAfee AutoUpdate: UpdaterUI.exe – Entry Point Not Found The procedure entry point GetProssImageFile ...Show All

  • .NET Development get the IP-Address of Remote PC

    Hello Everbody I have a problem regarding getting ip address of remote pc that is connected through dial up connection. It is not connected through internet. I' establishing dial up connection through the RasDial function of rasdial I m getting my ip address but i m not finding any function that could return me the ip address of remote pc. One more thing the remote pc is an Linux RTOS Real Time Operating System. Problem-2 Is there any library available for SCP Secure Copy Protocol in windows. That is used for file transfer. Thank you in advance for the reply If RAS server is your own then you can make it's IP Address Static! Remeber every client connected to RAS Server has IP Address 1 greater than ...Show All

  • Windows Forms Localization loaded from file...

    I want create localization for my program, but I want to put resource (.resx) files into Language folder so I need a code of how can I dynamically load .resx file(s). For example, my resource file is called Language.en-US.resx and I want to load it into ResourceManager and to use it like I would if the resource is embeded into my application. How can I achieve this Thanks in advanced. took me a while to figure out also: private ResourceManager manager = new ResourceManager ( "projectnamespace.foldername.filename" , Assembly .GetExecutingAssembly()); where resx = Texts.en.resx my folder = Translations projectnamespace.Translations.Texts ...Show All

  • Smart Device Development .NET CF 2.0 application occupies lot of memory

    Hello, I have created a .NET Cf 2.0 application which working perfectly fine however as the application is continuosly used over a few hours the program memory goes on reducing till finally at some point it gives a system error and crashes. Also after the crash the memory is not release and the application is also not running after teh crash. Only after a soft reset th memory comes back to normal size. What could I be doing wrong Devices tested on HX4700 (WM 5), HP 2210 (WM 2003), Dell Axim X50 (WM 2003 SE). Hozefa You have a memory leak which you'd need to find and fix. Most common reason is not disposing of IDisposable objects allocating native resources, e.g. Bitmaps. ...Show All

  • Visual Basic Question

    Hey gyuz! I wrote a little program that runs any other program you want throuh a contextmenustrip.The program adds a notify icon in the tray and you can access the menu through there.All the programs you add are saved in the registry for calling them. I used the AddHandler to create a new ToolStripMenuItem each time i add a new program. But here is my question .. when running a program: I used : Process.Start(RegistryKey.GetValue(sender.tostring) and Shell(RegistryKey.GetValue(sender.Tostring),AppWinStyle.NormalFocus,False) The Process.Start works fine. The Shell throws the File Not Found Exception. I don't why! Sorry guys i was away for a while! Yes the problem was the double quotes. I used quotes with Sender.toString ...Show All

  • Visual Studio Express Editions Object and Property Descriptions

    I am making a managed dll in C++ to use in later projects for C++, VB, and C#. When ever you click on properties of MS user controls in the design portion IDE it tells you what that property is, ect. I would like to know how describe properties in the same manner. Also when you look at an object in the object browser it gives you a summary; I would also like to know how to define these summaries in C++. Thanks in advance for any help well compiling isn't the the problem, I rebuild every time I  make a change; although I am building it in C++, I am testing it with C#. Basically if I decide to distribute the dll I making, I want people to know how to use the  propert ...Show All

  • Visual Studio Team System TFS Migration to a new server

    Has anyone been successful in migrating a TFS server to a new machine with a new name We are currently still using the RC, but I was surprised at some of the problems I had during a migration. Specifically Sharepoint, I don't know if its been improved with the RTM, but the restore procedures I saw were just wrong. The 1st trial I did had Sharepoint completely messed up. I finally fixed it, but it took my own understanding of Sharepoint, not the backup\restore procedures provided on msdn. Has anyone else had these issues http://msdn2.microsoft.com/en-us/library/ms404883.aspx :) ...Show All

  • Windows Forms DataGrids

    I was wondering.. If anyone can show me a really really simple example of datagrids with maybe just one row of a random information... I have a load of tuts.. but I cant find the right one to start with. i'm having a little problem, because the generic list that i'm trying to bind to the datagridview is a generic list of int, and when i show the grid it shows me the raws(the count of items in the list), but not the integer, it shows to me the raws in blank. why i'll really appreciate the help. excuse me for my english, i'm from spain. thnaks ...Show All

  • .NET Development SqlGuid and Serialization

    Hi .Net Friends, Is there any way to get the SqlGuid value serialized in uppercase Hi Sinan, Thank you for your proposal, but I would have expect some solution that overloads the default serialization mechanism. Your proposal introduces a sub-node called guid and would appreciate a solution without this annoying guid node. Best Regards, Michael ...Show All

  • .NET Development Fastest way to call C++ code from C#?

    I would like to write plug-ins for my application using C#. My plan was to make the C# objects COM visible and derive from my plug-in interface. I’ve been told that the transition to and from managed code is a very expensive operation and I should limit the transitions as much as possible. This makes sense but I would still like to do things in the most optimal way since there will be no way from the transitions to be eliminated. That said, what would be the optimal way to call C# code from C++ (COM) and C++ code from C# My current plan is to use COM visible interfaces to call C# code C++ and COM connection points to call C++ code from C#. Hi, The fastest way to interact wi ...Show All

  • Visual Basic What is wrong with the ComboBox !!

    Hi all, I am writting very simple event for the ComboBox... but my msgbox displays nothing. kindly have alook at my code. Public Class Form1 Private Sub ComboBox1_SelectedIndexChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) 'Handles ComboBox1.SelectedIndexChanged If Me .ComboBox1.SelectedIndex <> -1 Then 'MsgBox(Me.ComboBox1.Text.ToString) MsgBox( Me .ComboBox1.SelectedText.ToString) End If End Sub Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load Dim conn As New Data.OleDb.OleDbConnection( "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\MaHMouD\Deskt ...Show All

  • Visual Basic Windows registry user permission in VB.NET

    Hi!!! I'm developing a windows application using the Windows Registry to save important information... this information can be changed... the problem is that when i create the registry entry using VB.NET, the restrict user can't modify this entry... this problem limit my software only to Administrator users... I'd like to know that is possible (using vb.net code) change the permissions to restrict users adding full access to the registry entry that I created... thanks so much You're trying to break a system in place for a reason. You can A. Write this permission to something in the user's personal registry. B. Write it to a public key under LocalMachine. Your setup project should add this key and if ...Show All

  • Visual Basic Custom control problem

    This may well show my idiocy but here goes. I decided to build a custom control using visual basic in Visual studio 2005. I created a control library and built a control by dragging a Text Control from the tool bar. I managed to add the properties I wanted and modified the key down and key press events to accomplish what I wanted. The idea was of course to have this custom control available in many areas in a project. I then added the control library to the visual basic windows project. I am able to select the control from the toolbar in the project and add it to forms in the project. This all works (the control works as designed). The problem I have is when I add code to say the got focus event of the control in the project th ...Show All

  • Visual C# How to Retrieve dlls version?

    Hi, My app (C# 2.0) used some dlls, some locals and some in GAC. For support, I need to retrieve the dlls version (local and GAC) and the dll file version. How can I do this To see the version number of the .dlls that are installed in the GAC you can use the Window's shell extension. Use windows explorer and navigate to c:\windows\assembly (or wherever your windows directory is located). It should show you a view that contains the entire strong name of the assembly, including the assembly name, version number, culture, public key token, and processor architecture. For the assemblies that aren't loaded in the GAC, you can use the ILDasm utility. Open the "Visual Studio 2005 command prompt" ...Show All

©2008 Software Development Network