Search results for query: *

  • Users: Muchni
  • Content: Threads
  • Order by date
  1. M

    Question Mute and unmute master volume?

    How can I unmute master volume in vb.net? I know how to increase and decrease but if it is turned off it wont start any sounds. Hope someone can help me // Sorry for bad english, if you dont understand just ask
  2. M

    Question Using registry key to autostart app?

    Hello, Can someone please teach me how to use registry key to make my application autostart.
  3. M

    Question How to hide program in app?

    Hello, I just wonder if there is a way to hide a second program in my application and start/save it from my app. What I am looking for is a way to have 2 processes so if you shut the first one(from ctr+alt+del) down the second will still go on. Thankyou
  4. M

    Question Change clipboard value when paste outside vb app?

    Is it a way to change Change clipboard value when paste outside vb app?
  5. M

    Copy listbox items to clipboard

    Im trying to copy items from listbox into my clipboard. The first word always works, but the rest just left blank. I am using this code Dim ordning As Integer = 0 Dim clip As String = "" If ordning < allanamn.Items.Count Then clip =...
  6. M

    Question Get the lowest value from a listbox

    What I am trying to do is either: 1. I have some values in a listbox, and want to find the lowest 2. Convert all values to array, cant find what I did wrong here: Dim allavarden() As Integer pop = 0 Do Until pop = valuen.Items.Count - 1 'also tried with for loop and for...
  7. M

    Question Loop set text to textboxes

    Is it a way to set the text in a textbox from a loop? Bad Explained, heres an example Dim id(10) as string For h As Integer = 0 To 10 id(h) = "hello" & h Next there will all 11 variables change, but I have a program that creates textboxes with the same name except...
  8. M

    Question Error message when adding Shockwave flash object

    Hi, Im making a trainer for flash, but when I add Flash Object with movie url I get this msg Translated means, I havent used any codes, all I have done is add shockwave object (COM) and found my movie url I wanted to use and put it in "Movie" in properties in the shockwave object. The form...
  9. M

    Question Replace a letter in a textbox with another letter

    Im making a program in vb.net 2008. You can open txt files and type in a textbox (so far like microsoft word, almost). But the thing is you can save in a diefferent fileending (my own) and I want to cryptonize it, ( not sure thats how you say in english but hope u get it) Like if you type in...
  10. M

    Creat form in a Do loop error

    Hi I want to creat new form in a loop in vb.net 2008 and I wrote like this but it wont work, the do loop is correct but the line where I "create" the form its an error, help please. Public Class Form1 Dim a(b) As Form Dim b As Integer = 0 Private Sub Form1_Load(ByVal sender As...
Back
Top