Search:

Type: Posts; User: ovi_gm

Page 1 of 6 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    1,025

    Re: Can't send email

    Can't do that because it is a simple email address. admin.google.com is used for G Suite account only.
  2. Replies
    3
    Views
    1,025

    Can't send email

    Hello,

    Please help me with the following problem. It is a code that worked in the past and now it doesn't work and I don't know why. It sends an email:



    Try
    Dim SmtpServer As...
  3. Replies
    4
    Views
    2,631

    Re: What is more appropriate?

    Ok. Thx.
  4. Replies
    4
    Views
    2,631

    Re: What is more appropriate?

    Ok. Thank you for the advice. I was wondering if php would be a better place to start. My intuition says that indeed ASP is the way to go.

    I created a "Hello World" and a button on a new page. It...
  5. Replies
    4
    Views
    2,631

    What is more appropriate?

    Hello,

    I want to develop an application and I need your advice what is the best approach for this.

    Consider a very simple application:

    The user will browse to a website where he/she must use...
  6. Thread: Panel printing

    by ovi_gm
    Replies
    2
    Views
    824

    Re: Panel printing

    Ok. It works. Thank you. I'm a bit rusty because I haven't done any programming for almost 2 years and now I need to do something for my workplace.

    Thx again.

    Cheers.
  7. Thread: Panel printing

    by ovi_gm
    Replies
    2
    Views
    824

    Panel printing

    Hello,

    I am trying to print the contents of a panel using a graphics image and I found out this link on MSDN:
    ...
  8. Replies
    4
    Views
    882

    Re: Best table approach?

    What about tablelayoutpanel? Would it be a good idea?
  9. Replies
    4
    Views
    882

    Best table approach?

    Hello,

    I am trying to design a planner for may company. Basically, I have a table and I want to know what the best approach is to design this.

    There will be a table like in the attached...
  10. Replies
    10
    Views
    1,931

    Re: MediaPlayer Crash

    Hello. Finally I changed to VLC. It works now. Still, couldn't find the issue with WMP. I'm sure it's got something to do with some Windows 10 update.

    Cheers.
  11. Replies
    10
    Views
    1,931

    Re: MediaPlayer Crash

    Yes, I tried everything. I can't find out what the problem is. Anyway, I am not completely satisfied with WMP so I was thinking to try something else anyway. What else can I use? I would like...
  12. Replies
    10
    Views
    1,931

    Re: MediaPlayer Crash

    Is there any other way to play a video, without using WMP?
  13. Replies
    10
    Views
    1,931

    Re: MediaPlayer Crash

    Yes, it works ok.
  14. Replies
    10
    Views
    1,931

    Re: MediaPlayer Crash

    I did this. Started a new project, adding windows media player from Com Components, setting URL to E:\media.mp4. I get the same result. It loads, media player shows the Connecting message and then it...
  15. Replies
    10
    Views
    1,931

    Re: MediaPlayer Crash

    Ok, I did this:



    Try
    Dim playList As IWMPPlaylist = axWMP.playlistCollection.newPlaylist("RMP")
    playList.appendItem(axWMP.newMedia("E:\media.mp4"))
    ...
  16. Replies
    10
    Views
    1,931

    MediaPlayer Crash

    Hello,

    I have an application with Windows Media Player that crashes. It worked very well for months and suddenly it just exits the program with no warning.
    I think it has to do with some Windows...
  17. Replies
    3
    Views
    929

    Re: How to use the timer control

    Yes. It works now. It seems I didn't quite understand how timer really works in the background. Now it's clear for me.

    Thank you.
  18. Replies
    3
    Views
    929

    [RESOLVED] How to use the timer control

    Hello everyone,

    I am trying to do a simple task but I can't seem to handle it and I don't understand why. I need to show form for 10 seconds when the user is not allowed to press the OK button....
  19. Replies
    3
    Views
    6,870

    Re: How do I start asp app online

    Ok. Thx for the information. Very useful as always. Seems I have to dig some more. Anyway, I thought that, being a default example application in VB, it should already work as is. Seems not.
  20. Replies
    3
    Views
    6,870

    How do I start asp app online

    Hello,

    I am new to ASP.NET and I have a very basic question. I searched online for this but with no luck.
    I am using Visual Studio 2010. I am good at visual basic so I thought ASP.NET for a small...
  21. Thread: Date formatting

    by ovi_gm
    Replies
    6
    Views
    873

    Re: Date formatting

    thank you very much for your answer.

    @si_the_geek: your solution seems to work best for me at the moment. The "largest first" code is great. I didn't know it and now I learned it.

    Thx a lot.
  22. Thread: Date formatting

    by ovi_gm
    Replies
    6
    Views
    873

    Date formatting

    Hello,

    I need a piece of code to find out the name of the 1 day of a certain month in a certain year.



    Dim d As Date

    d = "01/04/2017"
    MsgBox(WeekdayName(Weekday(d)))
  23. Replies
    4
    Views
    731

    Re: 32bit vs 64bit app

    Thx guys,

    I'll make the switch and hope for the best :)

    Cheers!
  24. Replies
    4
    Views
    731

    32bit vs 64bit app

    Hello,

    I have a very short question for you. I developed a application that I use very frequently for my work. Currently I am using Windows 7 - 32bit and I want to upgrade to Windows 10 - 64bit.
    ...
  25. Replies
    1
    Views
    5,237

    Datagridview row color lost when sorting

    Hello,

    I have a datagridview with all rows back color white. During runtime, depending on some situations, I will color some of the rows in red.

    What I want is to keep these rows colored when...
  26. Re: How do I make a form on top of my app

    Thx boops boops. This is exactly what I was looking for.

    Works great.

    Cheers.
  27. [RESOLVED] How do I make a form on top of my app

    Hy,

    Can I make a form to be OnTop of every form of my app (like TopMost = True) but not on top of another application that runs on the taskbar?

    Thx.
  28. Replies
    2
    Views
    801

    Re: App settings isn't stored in config file

    Ok. I understand know ho it works. Thank you very much.
  29. Replies
    2
    Views
    801

    App settings isn't stored in config file

    Hello,

    I have a application with defined settings from the Project properties - Settings.
    In my app I use them like for ex. "My.Settings.setting1"

    Now as I understood these setting should be...
  30. Thread: Trial

    by ovi_gm
    Replies
    1
    Views
    4,134

    Re: Trial

    Ok. This ruined my visual studio installation. Nice work. And my antivirus showed up saying there's a virus associated.

    So be careful with this download
  31. How to detect currently played item in mediaplayer

    Hello,

    I have this app where I create a playlist for media player.



    Dim movieList As IWMPPlaylist = axWMP.playlistCollection.newPlaylist("movies")
    Dim files =...
  32. Re: Ho do I create a "Please Wait..." window behind a process...

    I did that and it's just the same. Maybe I did something wrong then. Anyway, it doesn't work this way. The thing is that the background worker isn't finished until I manually close the form2 window....
  33. Re: Ho do I create a "Please Wait..." window behind a process...

    Doesn't work. The thing is at first it did close the form and then gave me an error but I can't remember what it was. And now it's just doing nothing.
  34. Re: Ho do I create a "Please Wait..." window behind a process...

    Can anybody please help? Could I write something else to close this form by code when the background worker finishes?
  35. Re: Ho do I create a "Please Wait..." window behind a process...

    Hello again,

    I didn't like the .Show method because I don't want the user to be able to do anything while the process runs so I decided to go with the Background Worker. Now, the simplest way to...
  36. Re: Ho do I create a "Please Wait..." window behind a process...

    Thx. Good ideas. I will try both oh these and see how it behaves.

    Cheers
  37. Ho do I create a "Please Wait..." window behind a process...

    Hello,

    I have a vb 2010 access database application and I am interested to create a window that says something like: "Project loading. Please wait...".

    This is because there are some...
  38. Replies
    5
    Views
    3,438

    Re: Datagridview cellstyle format

    Ok. I tried to make a separate application to see how it works and I noticed that if you declare a "single" variable and assign for example 3.10 to it within the code then the zero automatically...
  39. Replies
    5
    Views
    3,438

    Re: Datagridview cellstyle format

    K. Thx. I'll try and do it that way
  40. Replies
    5
    Views
    3,438

    [RESOLVED] Datagridview cellstyle format

    Hello everyone,

    I have a question for formating a cell style in a data grid view.

    I need to display numbers with two digits after comma but without zeros. So far I have found this:

    ...
Results 1 to 40 of 222
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width