Search:

Type: Posts; User: Crystalii

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Re: Read basic XML information to a datagridview

    Hmm, I think I'll go the way you said. But then how would I read the date values? Say I want to look for a specific day in a specific month (forget year), how can I do this your way?
  2. Re: Read basic XML information to a datagridview

    The reason I have it this way is because when I read the data to my program, I convert the numbers directly to a real date, and make use of the information. I understand it would be easier to read it...
  3. Read basic XML information to a datagridview

    Hello!

    So I have an XML file with some information in it, and I want to show this information in a datagridview. My XML file is very basic, and it looks very similiar to this:


    <?xml...
  4. Re: Why does my app close after I click this button?

    Haha, what a miss. Thanks very much guys!
  5. Why does my app close after I click this button?

    Hello!

    I am working on an installer. When you press my Install button, the quick and basic installation process begins. However when the process is finished installing, my app for some reasons...
  6. Re: Help with prerequisites - .NET Framework 3.5

    No I'm using Installshield 2010 Premier. The project assistant wizard is basicly a wizard which guides you to make a basic installer. There is a wizard, for beginners and an advanced mode for experts.
  7. Help with prerequisites - .NET Framework 3.5

    Hello!

    I have an application that requires .NET Framework 3.5 to run. Now what I want my installer to do is to check whether .NET Framework 3.5 or later is installed, and if it is not installed,...
  8. Replies
    1
    Views
    600

    Problems with releasing an application

    Hello!

    I recently finished my application project I was working on, and now I want to release it. So I bought a domain and web host to upload my application to the internet. So I have a website...
  9. Replies
    9
    Views
    1,727

    Re: Run my application in startup

    Something just came to my mind. Doesn't each Windows version have a different registry path, meaning the path of the registry key responsible for startups in let's say Windows XP is different than...
  10. Replies
    9
    Views
    1,727

    Re: Run my application in startup

    Using CurrentUser instead of LocalMachine fixed the problem. Also, I have changed "projectname" to Application.Productname as you said. Thanks for the help!
  11. Replies
    9
    Views
    1,727

    Run my application in startup

    Hello!

    I want to run my application on windows startup. The code I am using to do this is by adding to the registry key. It is working fine, however it requires the application to run with...
  12. Replies
    9
    Views
    1,112

    Re: Need help with a multithreading problem

    Hello!

    I fixed the problem. Till now, I was drawing the background colors of the application manually by code. But today I tried to make an image in photoshop where I would design my application...
  13. Replies
    9
    Views
    1,112

    Re: Need help with a multithreading problem

    Hello!

    I fixed the problem. Till now, I was drawing the background colors of the application manually by code. But today I tried to make an image in photoshop where I would design my application...
  14. Replies
    9
    Views
    1,112

    Re: Need help with a multithreading problem

    Hello!

    Yeah I have been thinking going over to WPF with this project. But will my problem get fixed if I use WPF instead?
  15. Replies
    9
    Views
    1,112

    Re: Need help with a multithreading problem

    Hello!

    I searched for some animation libraries and found this https://code.google.com/p/dot-net-transitions/wiki/CodingWithTransitions

    I tested it in my application, and the animation itself...
  16. Replies
    9
    Views
    1,112

    Re: Need help with a multithreading problem

    What do you mean by an animation library?
  17. Replies
    9
    Views
    1,112

    Need help with a multithreading problem

    Hello!

    In my application, I have a setting button which when clicked will increase the forms height, in order to show the settings panel. A picture of how my application looks at default:
    ...
  18. Replies
    2
    Views
    1,605

    Antivirus deletes my deployed application

    Hello!

    I deployed my application to my website. However when I download the "setup.exe" from the website, Google Chrome starts warning me that the application could be risky to launch. Ignoring...
  19. Replies
    2
    Views
    1,101

    Re: Publishing an application

    Hello!

    I've read a bit more about the subject. Yesterday I bought a web hosting based on IIS. Now I want to deploy my desktop application to this website, so people can download the setup from the...
  20. Replies
    2
    Views
    1,101

    Publishing an application

    Hello!

    I am soon getting done with the first version of my application, and I want to publish it. However I have some questions regarding the publish feature in Visual Studio 2012. The reasons why...
  21. Replies
    21
    Views
    6,570

    Re: Mute a sound from my application

    Hello!

    After some comparing between strings as you said, I managed to make it work. Here is the working code:


    Dim pathway As String = String.Format("open ""{0}"" type mpegvideo alias...
  22. Replies
    21
    Views
    6,570

    Re: Mute a sound from my application

    Hello!

    Of course cmdString is the same as the normal text, no doubt about that. If I write the directory myself, I can just make it like this, and put the quotes manually, before open and after...
  23. Replies
    21
    Views
    6,570

    Re: Mute a sound from my application

    This is how it needs to be:


    "open ""C:\your\pathto\theapplication\Mekka.mp3"" type mpegvideo alias myAudio"

    However it is like this:


    open ""C:\your\pathto\theapplication\Mekka.mp3"" type...
  24. Replies
    21
    Views
    6,570

    Re: Mute a sound from my application

    Good idea. I'll try it now.

    Edit: This code worked


    mciSendString("open ""C:\your\pathto\theapplication\Mekka.mp3"" type mpegvideo alias myAudio", Nothing, 0, 0)

    However this code did not...
  25. Replies
    21
    Views
    6,570

    Re: Mute a sound from my application

    Unfortunately, that did not work either :/
  26. Replies
    21
    Views
    6,570

    Re: Mute a sound from my application

    I've already tested that, and it also didn't work. My startupPath does not have any spaces either.

    I'm working on it atm, trying to figure out how to fix it...
  27. Replies
    21
    Views
    6,570

    Re: Mute a sound from my application

    I like that method. But how do I play sounds inside a folder? From the directory:
    Application.StartupPath & "\mysound.mp3" ?

    This is what I tried:


    Dim fileName1 As String =...
  28. Replies
    21
    Views
    6,570

    Mute a sound from my application

    Hello!

    My applications plays a sound with this code:


    My.Computer.Audio.Play(Application.StartupPath & "\Audio\Sound.wav", AudioPlayMode.Background)

    What I want to do is put a...
  29. Replies
    15
    Views
    4,555

    Re: Doubleclick event is not working

    By the way, when my application is minimized to tray, and I close my application. The tray icon does not disappear, it just stays there. Sometimes there can be like 5 icons of my application in the...
  30. Replies
    15
    Views
    4,555

    Re: Doubleclick event is not working

    Perfect! That worked, thank you very much!
  31. Replies
    15
    Views
    4,555

    Re: Doubleclick event is not working

    Oh, so your disabling the capture of Label1? But the problem is that I have removed the title bar from my application. So in order to move the application, you just press anywhere on the screen and...
  32. Replies
    15
    Views
    4,555

    Re: Doubleclick event is not working

    Okay I found out the reason why:

    I already have another MouseDown event on my form:


    Private Sub Form1_MouseDown(sender As Object, e As MouseEventArgs) Handles Me.MouseDown
    If...
  33. Replies
    15
    Views
    4,555

    Re: Doubleclick event is not working

    Read my post below.
  34. Replies
    15
    Views
    4,555

    Re: Doubleclick event is not working

    I changed it into MouseDoubleClick, and it still didn't work :S
  35. Replies
    15
    Views
    4,555

    Re: Doubleclick event is not working

    Okay your kind of right I think. Basically I got the form, then above it I got a picturebox covering the entire form area. But hey! I also put a DoubleClick event on the Picturebox, and it still...
  36. Replies
    15
    Views
    4,555

    Doubleclick event is not working

    Hello!

    I want it that every time the user double clicks anywhere in my program, it hides the program to the Tray. For this I used this code, but it's not working for unknown reasons:



    ...
  37. Replies
    114
    Views
    130,302

    Re: Animated Window Effects with "Toast" popup demo

    Never mind, I fixed the problem.

    Add this to Form_Load in FormAnimator.vb:


    Me.Form.TopMost = True
  38. Replies
    114
    Views
    130,302

    Re: Animated Window Effects with "Toast" popup demo

    I am having problems with the popup. I use JEmlays' version. But my problem has nothing to do with the feature he added, so I guess this is a problem concerning the original version as well.

    Okay...
  39. Replies
    43
    Views
    3,889

    Re: Reading from XML

    Thank you, you fixed one of my biggest problems! It's actually fascinating that the solution was in front of my eyes. But I had been trying so many ways to fix this, and the whole code was such a...
  40. Replies
    43
    Views
    3,889

    Re: Reading from XML

    Anyone?
Results 1 to 40 of 101
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width