Search results for query: *

  • Users: genu
  • Content: Threads
  • 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

    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
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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?
  10. G

    more than one color in textbox.

    how do you get more than one color to show in a textbox. Fore examples: a textbox has the following: "Hello World" How do I make "Hello" Blue and "World" Red
  11. G

    sending mouse movements.

    to send keys to computer u use: sendkeys.send("[ENTER]"), but how do you send mouse movements and click events?
  12. G

    loading a form

    How do you make it so it loads a form? for example: FORM1 is not visible, but its loading into memory and it has a progress bar. when the form is loaded into memory, the progressbar goes to 100% and then progressbar closes and form just shows.. thx in adavance
  13. G

    putting functions in modules.

    If I want to put a function in a module, how can I access a control on the form from that function which is inside the module. is there a way that I can reference the form to the module?
  14. G

    A little function problem

    [RESOLVED]A little function problem I made this function to populate a listview with data, but based on the columns its supposed decide wich part of te array to insert, but for some reason it doesnt do anything...it doesnt load anything into the listview: Function populate_data()...
  15. G

    Pictures on the toolbar

    hi, im trying to get pictures on the toolbar...and for some readon they are not showing right...I made them gifs so I can have them be transparent but they have a blue line around them like in the screenshot
  16. G

    Another distributing problem [RESOLVED]

    hi...I know I posted before about distributing is a pain...but her is another one that im having a hard time with...I really dont understand.....how do you know if its gonna work or not...cause I mean you are half way done with an app and then it turns out it doesnt work....how do you know if...
  17. G

    using inputboxes

    How do you have more than one textbox in a the inputbox function...if its possible. like have: Name: Age: favorite color: in just one inputbox popup
  18. G

    how do you escape in vb.net

    how do you have a quote inside a string? like r = "johnny says "hello world" "
  19. G

    Distributing is a PAIN...

    ok I just finished a program, and when I try it on my laptop it doesnt work. I get some weird error. then I serach the forums instructions when distributing, and then I find a post that I have to get the Microsoft .NET Framework Version 1.1 Redistributable Package. SO I get that and install it...
  20. G

    searching a string

    ok so I have a string for example: text1.text how do I serach it in this manner: if text1.text = <a href="archive/index.php">Archive</a> - <a href="mailto:<webmaster@somesite.com">Contact Us</a> - now I want to find the "@" in that whole...
Back
Top