Search results for query: *

  • Users: genu
  • Order by date
  1. G

    Problem with accessing database.

    Hello, I've started working on this program to make my life at work a bit easier, but I got stuck. Basically I have a blank access database that my program connects to, I'm able to add records to it, and delete. I made a listbox to display all the records (just the "Name" column), and I want to...
  2. G

    View Complete source

    How can I view the complete source in VS 2008? As in all the generated form code and the controls?
  3. G

    controlling newly created objects

    hi, I created a webbrowser at startup like so Dim browser As New Windows.Forms.WebBrowser me.controls.add(browser) how do I control the newly created control? for example how can I do this: newcontrol1.navigate("http://www.google.com") thx
  4. G

    Making my App, unclosable

    I got to dissable everythign except CTRL+ALT+DEL can somebody help me dissable those...thx
  5. G

    Making my App, unclosable

    Hi, I'm making an application that locks the system. How Do I make it so that they cannot use these Keys: CTRL DEL ALT ESC F1 - F12 ETC basically disssable all the keys except the letters, so that they can type in the password. thx
  6. G

    skinning in vb.net

    does the resolution affect the way that the controls are placed on the form? because not just the skin is messed up, but also the listview control is not where its supposed to be.
  7. G

    skinning in vb.net

    Hi, thx so much for the reply. I got everything to work....no I just have one more problem. Everything works on my computer, but when I run it on my friends computer, I notice that some of the skin elelments are not where they are supposed to be, and are not aliggned. Whats could be the cause of...
  8. G

    how to resize a form?

    I dont have it to be sizable (thats the only way to remove the border) to size the form howeveer, I have to work with the MouseDown MouseMove MouseUp events. i konw its someting with the mouse postion for mouse move and mousedown something like this: me.width = e.x me.height = e.y that...
  9. G

    how to resize a form?

    I have made the form all transparent, and I made the border of the form to none, so the whole program is made of a skin. How do I make it so that when they click on the bottom rigt corner picture box the form resizes when they hold down the mouse button just as if they were resizing it when the...
  10. G

    skinning in vb.net

    another question is: Why is it that when I tried this program on my friends computer, many parts of the skin was not aligned, even the listbox was not where its supposed to be exactly. Does the client resolution affect the way the skin is shown? if thats the case, how can I make the skin show...
  11. G

    skinning in vb.net

    Here is a project that I made with a skin applied to it? here are the troubles that Im having with it: 1) Resizing the form cause the skin to flicker as its resizing 2) the Transparecy of some of the images in the skin is messed up (top area) ALSO is there a way that I can acomplish this: I...
  12. G

    malfunctioning string function

    I have ALL the html in a variable called html I want to read line by line from that variable...so...how would I make a loop to read each line?
  13. G

    malfunctioning string function

    how do I get a line number from the html file. For example if I find a string in a html file, and I want to put the whole line where it found the string into a variable. so I can pass it down to another function.
  14. G

    malfunctioning string function

    thx for the replies...ill try to work with the example
  15. G

    malfunctioning string function

    ok in a nutshell here is what I want to do: I have this html CODE: <TD valign=top><SPAN class=LstName><A name="&lpos=Results&lid=Persons+Name" HREF="something">william, fuler</A> <TD valign=top><SPAN class=LstName><A name="&lpos=Results&lid=Persons+Name" HREF="something">Wilson, Charles</A>...
  16. G

    malfunctioning string function

    ok ill try to put together a better code...sorry...it was late at night and I was stressed out...lol....
  17. G

    malfunctioning string function

    here is the code: Function get_pname(ByVal text As String) Dim num As String Dim c Dim s As Integer Dim t Dim r For c = text.IndexOf("<SPAN class=LstName>", r) + 20 To text.Length - 1 If text.Chars(c) = ">" Then...
  18. G

    checking if number in listbox

    I have a listbox with phone numbers extracted from a website. but the list is populated with different characters that the program thinks that are potential phone numbers. the phone numbers in the list are in this format: "1231231234" how doI remove all the other items that dont have numberes in...
  19. G

    .net framework autoinstall

    ok lets say I make a program, how do I make it check for the .net framework, and include it in my installer if they dont have it?
  20. G

    sending mouse movements.

    did u ever figure out how to do that?
Back
Top