Search results for query: *

  1. D

    How to run .hlp files on 64bit Windows 7?

    Hi, My application is developed in VB.Net and i call .hlp files from it. I am facing a common problem that .hlp files are not running on 64 bit Windows 7 by default. After downloading “winhlp32-windows-7-x86-x64-komeil” I have three files i.e. Install.cmd, winhlp32.exe and winhlp32.exe.mui...
  2. D

    Question Process.MainWindowTitle returns empty for service

    Thanks for reply, You are right Service has no GUI, Infact i want to get windows title of the other processes running on the local machine. Those processes are windows applications having GUI. Service is getting Process IDs successfully and also get the Process Name as well using...
  3. D

    Question Process.MainWindowTitle returns empty for service

    Hi, I have developed a Windows Service in VB.Net (VS2010) which is running on Windows7. I am trying to get “MainWindowTitle” but it returns empty. lObj_Process = Process.GetProcessById(Pi_ProcessID) lObj_Process.MainWindowTitle If same service runs on Windows XP, title is found. Moreover if...
  4. D

    Problem in printing a Farpoint Spreadsheet in .Net

    I am migrating application developed in VB6 to .Net using VS 2008. I have converted VB6 code (using common dialog control) to print a Farpoint Spreadsheet in .Net(using PrintDialog). The problem which I am facing is that, regardless of selection, the print is always sent to printer which is...
  5. D

    Question Disabling Close window option in windows 7

    I tried to use Windows API Code Pack but it provide options to add new categories and links, but by default "Close window" option is there. can you provide me help in using them
  6. D

    Question Disabling Close window option in windows 7

    I have an application developed in VB.net with 3.5 framework. I have disabled close (X) button on the main form of the application while doing some processing. I have achieve disabling by "Overriding ReadOnly Property CreateParams()" of the form. This is working fine as both control button on...
  7. D

    Question SHBrowseForFolder (shell32 API) raising exception in 64 bit OS (Windows 7)

    Hi, I had developed an application in VS 2008 which uses ‘SHBrowseForFolder’ method of shell32.dll for browsing of files as well as folders. i.e. I can get path of folder only or path of file only as per requirement. I used it as following. Private Declare Function SHBrowseForFolder Lib...
  8. D

    Form is hiding in background

    The solution you propose works, thanks for your quick reply. I tried that earlier but in the closing event which didn't work. The solution is fine for me but can you please reason why this is happening, as why Form1 gets minimized? Is the usage of forms like that cause that?
  9. D

    Form is hiding in background

    Hi, I am working on a project in VB.net 2008. I have a problem arising while opening a form as modal from a modeless form. I have attached a project to demonstrate the problem. This demonstration contains three forms with following characteristics. - “Form1” is main form of the demo...
  10. D

    Windows Service stops triggering monitoring event for starting process

    I am developing a Windows Service Application in VB.net (using WMI). The application monitors for occurrence (Start) of any new event/ process in Win32 environment. The code which I am using for handling this monitoring event is as under:- WithEvents Watcher As ManagementEventWatcher Watcher =...
  11. D

    Question Problem in using COM Component "MSCOMCTL.OCX"

    Hi, I converted a VB6 application in VB.net 2008 by using VS 2008 conversion wizard I have encountered a problem in using Tab control in VB.net. I used “Microsoft TabStrip Control 6.0 (SP6)” in VB 6 project. VB.net converter wizard converted it properly and add reference to...
  12. D

    Question How to associate two windows forms?

    In my VS-2008 (VB.Net) application, I am using a background worker to make my main form more responsive. In case of any error (in DoWork event) I m displaying the error on another form. In this case main form can’t be a parent of error form so if main form is clicked, error form go in the...
  13. D

    Question How to make a windows form more responsive?

    In my (VB.Net+VS2008) application, I want to make my windows form (splash) more responsive as there is some complex functionality is performing while loading splash form. Currently when any other application come in front of splash screen and then minimize then splash screen looses its proper...
  14. D

    Question HelpProvider with web browser

    I am using HelpProvider control and a web browser in my vb.net (VS2008+XP) application. It works fine, but when web browser navigate to a page, then on pressing key F1, it doesn’t show the help. Can anybody guide me to handle it ? Thanks in advance
  15. D

    Question How to bring an already running application in front?

    Thanks for reply, On calling Activate to the form, it start blinking in the taskbar. I am using Windows XP SP3. One thing i want to share that when i m in Debug mode then Activate works prefect but on closing VS2008 and executing the program thru excutable causing the problem. Is this...
  16. D

    Question How to bring an already running application in front?

    I am developing an application having multiple screens appearing one after another using vb.net. My requirement is to bring some screens (windows form) in front of the user to take input and some of the forms can work in background (behind other applications) as they are only progress showing...
  17. D

    Question How to change Panel Opacity?

    I have a Panel and a button control on windows form. Button is placed behind the Panel. I want to change the opacity of Panel, so that the button control can also be visible. But there is no property of panel control to change the opacity. Is there any way to make the Panel Opaque in this way?
  18. D

    Question Populate TreeView in Background worker

    In vb2005, I have to load a treeview control while loading the form so make the form loading more effective therefore I use Background worker to populate treeview. I tried treeview to pass by ref and faced the error “Cross thread operation not valid: Control” accessed from a thread other than...
  19. D

    Question Problems while animatiing Webbrowser control in blend 3

    Hello, I am trying to build a WPF application using blend 3. I need to display HTML contents in a portion of my application window. I tried to use 'web browser' control for the purpose, it renders the HTML as desired. But the problem is when I apply a simple animation (change width) for the...
  20. D

    Is it possible to restrict user to access drives on Citrix MetaFrame?

    My Application is installed on Citrix MetaFrame. I have created some users accounts who login to the server through client Citrix Program Neighborhood. As soon as user login to the server My Application launches. I want that login user should be restricted to My Application only and other...
Back
Top