Search:

Type: Posts; User: HanneSThEGreaT

Page 1 of 13 1 2 3 4

Search: Search took 0.39 seconds; generated 15 minute(s) ago.

  1. VS 2022 Re: Need EXIF Info Concerning Samsung Galaxy (Android) Photos

    Would this be of any use to you?
    https://www.codeguru.com/dotnet/getting-image-data-from-picture-files-in-net/
  2. VS 2015 Re: Excel Worksheet NumberFormat

    Hi Inferrd.

    That works. Thank you so much!

    Hannes
  3. VS 2015 [RESOLVED] Excel Worksheet NumberFormat

    Hello guys.

    I have a small irritating problem. I have a program that produces Excel reports. These reports are in South African Rand currency. Everything works perfect.
    Now a request has come...
  4. VS 2010 Re: Is it possibe to save panel as pdf?

    Need much more information please
  5. Replies
    3
    Views
    907

    Re: Rs232 Communication

    Don't know if this would be helpful, but have a look at this article:

    http://www.codeguru.com/columns/vb/programming-an-rs-232-scale-with-visual-basic.html
  6. Replies
    4
    Views
    1,834

    VS 2010 Re: Message=Syntax error in FROM clause.

    Please specify what the error is. At this stage it can be anything. For example: in the code you have supplied you have not created an object named dr or cmd, so by first look it would seem that that...
  7. Replies
    5
    Views
    921

    Re: Roman number addition

    A bit more difficult than adding the two numerals... :)To add the two Roman numerals I would recommend having a way to first convert these roman numerals ( which are actually strings ) to real...
  8. VS 2010 Re: Help for scraping read desc

    I am sure everyone wants to help. Remember everyone here are doing it in their own free time and most of them won't even hang around here if they didn't want to help...

    Anyway: could you please...
  9. Replies
    4
    Views
    879

    VS 2015 Re: Print Dialog

    You may also want to consider looking into the PrintDocument Class:
    https://msdn.microsoft.com/en-us/library/system.drawing.printing.printdocument(v=vs.110).aspx
  10. Replies
    4
    Views
    1,078

    Re: If item does not exist.

    JohnAsp: This article I wrote a couple of years ago deals with the most commonly used String functions. It might be worth a look ( for future reference ) :
    ...
  11. Re: tinted or faded look to form?

    I would say that you do not need to go through all those hoops and bounds, which could work - I agree.

    You could consider playing with the form's Opacity properties or even check out the...
  12. Re: If and else if help with textboxes

    This means that you most likely forgot to add an actual condition to your IF statement. Above you have :

    If TextBox4.Text Then
    This is wrong on two levels
    1) It should be :

    If Textbox4.Text =...
  13. VS 2015 Re: Problems implementing a plugin in vb.net

    OK, then it is most likely that you did not set the reference to the Tutorial_PlugIns project, As stated on the link.
    Click Project
    Click Add Reference
    Select Solution on the Left Side.
    You...
  14. VS 2015 Re: Problems implementing a plugin in vb.net

    Your problem lies how you have defined your interface. i refer to the same link. Look closely at the 1st code sample

    http://www.dreamincode.net/forums/topic/110542-plug-ins/


    Public Interface...
  15. VS 2008 Re: Send Message from one computer to all others computers connected through LAN

    have a look at a recent article of mine ciovering communication through UDP. I hope it helps you:

    http://www.codeguru.com/columns/vb/communication-using-udp-and-visual-basic.html
  16. Replies
    11
    Views
    1,321

    Re: Please help me to make for faster

    Instead of posting your zip project only, could you also please post some code that you are struggling with
  17. VS 2010 Re: Restarting a Windows Service Programmatically

    This might work :


    Dim controller As New ServiceController("ServiceName")
    controller.Stop()
    controller.WaitForStatus(ServiceControllerStatus.S topped)
    controller.Start()
  18. Re: [RESOLVED] trying to display Only the Year in another for can't figure out the ty

    Glad you got it solved, salsa.
    I'm just a bit frustrated and confused as to why you let this thread grow and continue as much as it did. i know my answer in post #4 wasn't perfect, but it at least...
  19. Re: trying to display Only the Year in another for can't figure out the type conversi

    No offense, but couldn't you have rather used a loop to add these items to your combobox? It would have saved you a lot of trouble.
    But, I do think you are going about this the wrong way, salsa,...
  20. Re: add data programmatically to sql table vs 2015

    OK, do you get any errors?

    Here are a few articles I wrote which I hope might be helpful to ou:

    Exploring the Data Controls in Visual Basic.NET...
  21. Re: Code to generate a list of all Excel Ribbon Objects

    It might be doable, but I really think that this may end up being a lot of work, whereas a video or even a book might be better suited. Look, this is a great idea, an awesome idea, but I really think...
  22. Re: add data programmatically to sql table vs 2015

    No need to apologize for asking a question... :)
    There are literally a gazillion ways to accomplish this, it all depends as rightfully mentioned by wes4dbt, how you will be approaching this. Do you...
  23. VS 2010 Re: Do you recognize this tool? I'd like to know more about it. It could be useful...

    Oh, apologies. I guess I am a bit rusty in the world of forums :) Wasn't ( and still isn't ) quite sure what the OP is asking about.
  24. VS 2010 Re: Do you recognize this tool? I'd like to know more about it. It could be useful...

    It looks as if the project's name is : prjEditPathV2.

    http://www.vbforums.com/showthread.php?828807-How-do-take-a-VB-project-from-Active(Release)-Mode-back-to-Debug-Mode

    Could you explain you...
  25. Re: Problems to open own developed UWP app with uri?

    Does it give you any error?
  26. crossdomain.xml on WCF Service hosted by Windows Service

    I am trying to make my Windows Service, which hosts a WCF service cross-domain compatible. After hours and hours of searching I was told that I needed to create another service which will load the...
  27. Replies
    0
    Views
    2,105

    VS 2013 Enabling CORS on a WCF Service

    Hi guys.

    I am really at my wits end, and I am going crazy because I am not getting much help ( by searching google etc. )

    The situation:

    I simply do not know how to enable CORS...
  28. VS 2015 Re: How to find name of label added programmatically?

    You could also make use of the the control's TAG property and then test for the control with the particular Tag, and do whatever you need
  29. Replies
    2
    Views
    1,329

    Re: Closing sub form and show main form?

    You can override your Titlebar Control buttons - your system menus. A bit tricky though...

    Here is a rough example on what you might need to do:

    You have to keep one thing in mind here, and...
  30. Replies
    2
    Views
    1,547

    C# to VB converter

    Hi Guys.

    Quick question...

    In the past I used to use the converter here:
    http://www.developerfusion.com/tools.../csharp-to-vb/

    to convert from C# to VB and vice versa.

    Lately it doesn't...
  31. Replies
    10
    Views
    30,271

    Re: Time to learn Java?

    All you need is the Android SDK. You can find it here :

    http://developer.android.com/sdk/index.html

    It includes Eclipse, Android SDK, The Android SDK tools and more. It is a big-ish download,...
  32. Replies
    14
    Views
    3,838

    Re: VB6, APIs, and OS's

    Nice! :thumb:

    I suppose I cannot recall any mistakes in that file
  33. Replies
    17
    Views
    9,742

    Re: Rock Paper Scissors

    Sorry, perhaps besides the topic but where is Lizard and Spock. It should be : Rock, Paper, Scissors, Lizard, Spock... :)
  34. Re: Please help with progressbar and a listview background worker error

    These might help :

    http://www.vbforums.com/showthread.php?739919-BackroundWorker-Problem-that-I-can-t-figure-out&highlight=progressbar+backgroundworker
    ...
  35. VS 2008 Re: VB.Net Project not responding to changes made.

    Do all those events have a Handles clause associate with them? The reason I ask is in the event of an object on the form being renamed, the Handles clause might not have been updated
  36. Replies
    3
    Views
    1,024

    Re: VB6 and OS

    I first installed VB 6 on Windows 95. Wow, it was awesome! :thumb: Much better than these days.... :rolleyes:
  37. Replies
    14
    Views
    3,838

    Re: VB6, APIs, and OS's

    I know I'm a bit late to the party, as always, but the API Viewer makes use of TextFiles. These are named WIN32API.TXT and MAPI32.TXT that are present inside the C:\Program Files\Microsoft Visual...
  38. Replies
    11
    Views
    2,512

    Re: data between 2 dates

    Perhaps you should try the BETWEEN command
  39. Replies
    20
    Views
    2,445

    Re: How can i get this vb6 code in vb.net

    Open your Output window and double click on any of the errors which gets listed. It should give you an indication of where the error(s) is / are
  40. Replies
    20
    Views
    2,445

    Re: How can i get this vb6 code in vb.net

    Taking a guess here, but perhaps the inclusion of e.Handled = True might also help.
Results 1 to 40 of 489
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width