Search:

Type: Posts; User: JacquesLebrun

Page 1 of 7 1 2 3 4

Search: Search took 0.06 seconds.

  1. VS 2019 Re: Detect MTP / WPD device connected and read files from the device

    That's it, I forgot to check if the function definition matched the function! After I fixed this error, I came accross another small mistake in th Stream module. You accidently used the Read...
  2. VS 2019 Re: Detect MTP / WPD device connected and read files from the device

    I upgraded my btnSendFile procedure with the info from the VB6 program, but it still does not work (I think I am very close though). When it runs, it crashed in the call...
  3. VS 2019 Re: Detect MTP / WPD device connected and read files from the device

    A HUGE thank you, this is exactly what I needed !!!
  4. VS 2019 Re: Detect MTP / WPD device connected and read files from the device

    I tried with this code, but I am getting an error on the GetDevices. The Nuget package "MediaDevices" was installed, the "using MediaDevices" is present at the beginning. What am I doing wrong? I...
  5. VS 2019 Detect MTP / WPD device connected and read files from the device

    My application needs to detect a GPS that was connected to a USB port and obtain folders / files from it.

    On older GPS, Windows was automatically mapping a logical drive to it so we could use...
  6. Replies
    2
    Views
    973

    Re: Access a GPS Garmin NUVI data

    No, the drive mapping does not work on this path. Also, this is not an option. My DotNet application needs to read or write GPX files directly on the GPS of my customer when he plugs it onto his...
  7. Replies
    2
    Views
    973

    Access a GPS Garmin NUVI data

    On most Garmin GPS, when you plug it into a USB port, Windows maps it as a new drive letter.

    On most models, you easily access its data by opening folders and files from that drive (it works on...
  8. Replies
    10
    Views
    13,835

    Re: Read extra file properties

    I found part of the code on the WEB after a lot of research, I don't remember where exactly.

    I don't know if this could be done in VBA.
  9. Replies
    5
    Views
    1,136

    Re: Grouping methods into a sub-class

    It does work, but not the way I wanted. I do not want to create a new instance for each of my sub-class.

    However I realized that I could instanciate each sub class directly into my dll class. ...
  10. Replies
    5
    Views
    1,136

    Grouping methods into a sub-class

    I have a DLL with a bunch of methods, however when I access my DLL, I would like to group similar methods under its own sub-class.

    For example, I have a bunch of regular math methods, but I also...
  11. Replies
    0
    Views
    677

    Passing SortedLIst to a COM object

    I have a DLL written in c# where a function returns a SortedList (list of key/value pairs).

    I need to call this function thru a ComObject within a C++ application. Any ideas how to to it? I am...
  12. Detect if running with emulator on macintosh

    Hi,

    In my applicxation, I already detect on which version of Windows my program is running.

    However, some of my customers run my application on a Macintosh using an emulator like Parallel...
  13. Replies
    10
    Views
    13,835

    Re: Read extra file properties

    Eureka!

    I found it, to get extended properties of a JPG file, we must use the Image.GetPropertyItem method. Here is my sample code to extract the Latitude / Longitude / Altitude of a...
  14. Replies
    10
    Views
    13,835

    Re: Read extra file properties

    Anyone else managed to read all the properties of a Windows file?
  15. Replies
    10
    Views
    13,835

    Re: Read extra file properties

    I tried with this code. I do see a lot of additionnal properties, but the GPS information is still not visible:



    ' --> Add a reference to the COM object "Microsoft shell controls ans...
  16. Replies
    10
    Views
    13,835

    [RESOLVED] Read extra file properties

    I have a bunch of JPG that where taken by a Garmin Montana 650 (GPS device with a 5 mega-pixel camera).

    Everytime I take a picture, the current latitude / longitude / altitude is stored as file...
  17. Replies
    2
    Views
    6,249

    [2010] Get special folder DOWNLOADS

    With my application, I need to access files that were downloaded by the user's default browser and stored in the default "Windows Download folder".

    How can I get the path to the Windows Download...
  18. Replies
    4
    Views
    2,982

    Re: Semi-transparent polygon over an image

    It is kind of late, I posted this message 6 years ago.

    Since then, I switched to VB.NET ...
  19. Re: Changing line spacing in a RTF control

    Finally the problem was not related to my functions. The example I found on the WEB had a faulty definition for the PARAFORMAT2 structure. It had an extra dsPad parameter, when I took it out it...
  20. Replies
    5
    Views
    3,273

    Re: Show / hide loaded DLLs

    In the Debugging Option, I do not have a Output Window subnode, but I do have a General subnode.

    In the General subnode I could not find any setting similar to "Load / Unload modules".

    However...
  21. [RESOLVED] Changing line spacing in a RTF control

    I found a few examples on how to change the line spacing inside a RichText control, but it does not do anything. Here is my code:


    Public Const MAX_TAB_STOPS As Integer = 32&
    Public...
  22. Replies
    5
    Views
    3,273

    Re: Show / hide loaded DLLs

    This is not the right parameter, even if I set it to quiet, I still see all the junk.

    My problem is that I want to use debug.print to show some debugging information, but it is completely...
  23. Replies
    5
    Views
    3,273

    Re: Show / hide loaded DLLs

    Am I the only one that sees all those DLL messages scroll down in the Output window when I run my program in the IDE?

    This never happened to my when I installed VS2008 on my other computers. Is...
  24. Replies
    5
    Views
    3,273

    [RESOLVED] Show / hide loaded DLLs

    When I installed VB.NET on a Windows 7 PC, I started seeing a detailed log of all system DLLs as they were loaded in the OUTPUT window when I compile and run in Visual Studio 2008.

    ...
  25. Re: VB Program appearing faulty on another computer

    Right-click on the desktop, resolution settings, look at the text size (sorry I don't have the exact names, I am currently using a french Windows)

    Sometimes people set it at 125%, 150% or any...
  26. Replies
    3
    Views
    1,626

    VS 2008 Re: Hide a button tooltip

    No that did not work.

    The only way I could make it work is really ugly:
    I create a small borderless form call frmEmpty, then I do:


    frmEmpty.show
    Delay(1) ' 1 second delay
    frmEmpty.hide...
  27. Replies
    3
    Views
    1,626

    VS 2008 Hide a button tooltip

    In my VB application I have a button that allows the user to take a snapshot of the entire application window, and send it to someone else via Email.

    The problem is that every buttons in my...
  28. Replies
    8
    Views
    1,226

    Re: Draw over a web page

    Thanks to your inputs, I finally got my TransparentPanel class working perfectly!

    Eventually I found a better way to take care or the Ghost and child windows when I minimize. I simply save its...
  29. Replies
    2
    Views
    4,752

    DEMO: true semi-transparent panel

    I finally achieved a true semi-transparent panel.

    Instead of seeing Windows desktop, you can put anything you want to fill the background of the panel (WEB page, PictureBox, Video, etc).

    Feel...
  30. Replies
    8
    Views
    1,226

    Re: Draw over a web page

    I replace the FormBorderStyle to Sizable and it still minimizes to the bottom of the screen ...

    Also I still have a problem with any child form that I opened, because I can not set their Owner...
  31. Replies
    8
    Views
    1,226

    Re: Draw over a web page

    Even with the Owner property, I do get a lot of other problems that cannot be solved (I tried dozens of different things, without success).

    With this version, I also get a second minimized window...
  32. Replies
    8
    Views
    1,226

    Re: Draw over a web page

    I already tried this. It does bind the two forms together, but then I get all kinds of other problems with Minimize / Normal state. With some fixes I get nothing on the taskbar, with other fixes I...
  33. Replies
    8
    Views
    1,226

    [RESOLVED] Draw over a web page

    I have a small project where I need to draw graphics over a WEB page.

    To do this, I create a "ghost" form with a WebBrowser at the same location
    and size of my main form that is always displayed...
  34. Replies
    10
    Views
    4,274

    VS 2008 Re: Transparent label on a WebBrowser

    I am getting a REALLY big problem with me.owner = form2.

    If only Form1 has the ShowInTaskBar = True, when I minimize Form1, it completly disapears from the taskbar! It is impossible to bring it...
  35. Replies
    10
    Views
    4,274

    VS 2008 Re: Transparent label on a WebBrowser

    Thanks a lot BOOPS-BOOPS, I did not think about overlaying 2 seperate forms!

    I turned around your example to create an easy program template. Start a new project with Form1 and Form2. Paste this...
  36. Replies
    10
    Views
    4,274

    VS 2008 Re: Transparent label on a WebBrowser

    I think I need to be more precise.

    My WebBrowser will show a map from internet. I would like to add labels, path and polygons from my program as an overlay on the map.

    I do know that I could...
  37. Replies
    3
    Views
    573

    Re: List Box Question

    You can define tabs stops for your listbox:



    ...
    Dim Arr1() As Integer = {10, 20, 30}
    SetTabs(ListBox1, Arr1)
    ...
    Listbox1.items.add("10" & vbtab & "John" & vbtab & "Doe")...
  38. Replies
    10
    Views
    4,274

    VS 2008 Re: Transparent label on a WebBrowser

    It does not work.

    For example if a add a label on top of the WEB page, I see a big rectangle with the background color of my label. I only wish to see the text of my label overlaid on top of...
  39. Replies
    10
    Views
    4,274

    VS 2008 Transparent label on a WebBrowser

    I have a WebBrowser control that displays a web page, and I need to add some graphics as overlay on this page.

    My research indicates that I should add a transparent panel over the WebBrowser,...
  40. Re: Updating labels upon Show()

    Actually the content of all your tabs will be part of your startup form. You just don't need to create any other forms, just drop a TabControl on your form, then add a many tabPages as you need in...
Results 1 to 40 of 263
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width