Search:

Type: Posts; User: ne0_b0mb3r

Page 1 of 9 1 2 3 4

Search: Search took 0.02 seconds.

  1. 3.0/LINQ I just simply can't change controller values from another class.

    Seriously vbforums, this is terribly annoying. I've tried every single method online to change the text of some damn labels from another form, and it just simply doesn't work. It works with...
  2. VS 2010 Catch all possible errors and ignore them?

    Like there is a try {} catch{} or On Error Resume Next in vb.net, how would I go about having just 1 thread to catch all possible errors and ignore them? I have a really big project that it shows ...
  3. VS 2010 At what .net framework should I compile my software for more stability?

    So I coded this software for a shop, and when I presented it I kept having errors. My software was compiled in .net framework 3.0 and it ran perfectly fine in my computers and laptop who are using...
  4. VS 2010 Re: Something isn't going the way it should.

    That did work thank you.

    However, just out of curiosity I'd like someone explaining why my code wouldn't work. It has all possible combinations.
  5. VS 2010 Re: Something isn't going the way it should.

    Thanks for the reply but would you care to elaborate?

    I'm debugging right now and I have to wait 10 minutes just to see if I missed a combination.
  6. VS 2010 [RESOLVED] Something isn't going the way it should.

    Hey vbforums. So I need a timer that displays


    00:00:01
    00:00:02
    ...
    01:05:09

    Basically if h or m or s < 10 then adds a 0 before. - And I'm kind of doing the hard way, you might as well as...
  7. Replies
    2
    Views
    536

    VS 2010 Need help with string

    Hey vbforums,

    Let's say I have this text file:





    line 1
    line 2
  8. VS 2010 Re: Having hard time trying to click this button wtih webbrowser.

    I see. Isn't there a way to call that 'class' though?
  9. VS 2010 Re: Having hard time trying to click this button wtih webbrowser.

    Well it looks like a button and you can click it. :/ I don't get it.
  10. VS 2010 Having hard time trying to click this button wtih webbrowser.

    <a class="submit blue" href="#">
    Add
    </a>

    That is the html of the button, I can't seem to get it right.. Any help? I'm using WebBrowser control
  11. Replies
    11
    Views
    2,805

    Re: employment: . net programmers

    Can I work from home? And do you pay via paypal or WU?
  12. Replies
    5
    Views
    727

    VS 2010 Re: Open custom files.

    On Error Resume Next is probably the reason of so many lazy coders, like me.
  13. VS 2010 ListView help; trying to load .txt to a listview.

    Hey guys, what's up!

    So, I have this ListView control that I managed to code a 'save to text' function for it, but now I can't load that text, ha - the irony.

    Anyways, ListView has 7 columns...
  14. VS 2010 Re: Select x random items from a listbox and add em in an array?

    Thank you, case resolved. +rep
  15. VS 2010 Re: Select x random items from a listbox and add em in an array?

    Thanks for the quick answers! However, Listbox1.Items.Cast doesn't seem to work as it says Cast is not a member of ListBox1.Items
    I'm using the 2.0 .NET framework, could that be the reason?
  16. VS 2010 [RESOLVED] Select x random items from a listbox and add em in an array?

    Hello VBForums,

    So I have a listbox that has many items in it and I want to select x number of random items and add them in a string array.
    Any solution with code or how would it work? I can't...
  17. VS 2010 Button1.PerformClick() with a BackgroundWorker?

    When I use Button1.PerformClick() in a BackgroundWorker thread it gives me:
    Cross-thread operation not valid: Control 'Button1' accessed from a thread other than the thread it was created on.
    I...
  18. VS 2010 Can someone explain why this wouldn't work?

    If hr1 >= 1 Then
    total1 = total1 - (hr1 * 10)
    End If

    So, example if hr1 is 4 then it should minus the value of total1 by 40, if 3 then by 30 etc.
    For some reason...
  19. Replies
    0
    Views
    527

    Saved wireless passwords?

    How can I get saved wireless passwords on this computer? I run windows 7.
    I downloaded this 'Wireless Key View' app and I'd like to know how it works, are they saved in Microsoft Credentials thing?
  20. Replies
    1
    Views
    501

    Mixing console and form together fail

    My app is basically console based but I need a Form to run in background. Adding a form in the app works but using Form1.Show didn't work, so I used

    Application.Run(New Form1)

    However, in...
  21. VS 2010 Re: components not appearing in screenshot of form2?

    This works perfectly when using 'None' as Border style. Using other styles, the screenshot is 50% transparent. 'None' style is what I actually need anyways. Thanks.
  22. Replies
    20
    Views
    4,516

    Poll: Re: (From Admin): Please take this poll

    If it kind of works like Steam, does that mean you can develop a cool app and 'sell' it through this so called App Store?
  23. VS 2010 [RESOLVED] components not appearing in screenshot of form2?

    So I need to show form2, take screenshot, hide form2. But it's kinda not really working.
    Here are my codes below:

    Form2.Show()
    System.Threading.Thread.Sleep(500)
    ...
  24. Thread: 'dynamic'?

    by ne0_b0mb3r
    Replies
    2
    Views
    551

    'dynamic'?

    dynamic htmlDoc = wb.Document.DomDocument;

    I downloaded some source off internet, that thing is giving me an error. I did a research and 'dynamic' is a .NET 4.0 thing. Is there a way to change...
  25. VS 2010 Grabbing link in website from webbrowser in a different way?

    I've tried the "href" method, it works fine. Are there other ways?
  26. VS 2010 Re: 'While' loop causing the problem?

    Thanks for pointing that out, seems like my logic didn't work at all hah. Cheers.
  27. VS 2010 [RESOLVED] 'While' loop causing the problem?

    I'm developing an app and I need to make it so at a certain time, to show e.g. a messagebox.
    Here's the function I've been coding and it's not working.

    Function Randomizer()
    Dim...
  28. VS 2010 Re: Help me get this basic thing straight -.-

    jmcilhinney, your code worked. Thank you very much.
  29. VS 2010 Re: Help me get this basic thing straight -.-

    I tried that and didn't work. :sick:
  30. VS 2010 Help me get this basic thing straight -.-

    Dim wc As New Net.WebClient
    Dim ws As String = wc.DownloadString("http://www.mywebsite.com/some txt file countaining names.txt")

    Dim warr As String() = ws.Split(what?)
    ...
  31. Replies
    10
    Views
    926

    VS 2008 Re: Call doubleclick function of a label?

    Dude he's 50. Anyways, lol'd though. haha
  32. Replies
    10
    Views
    926

    VS 2008 Re: Call doubleclick function of a label?

    I would not consider it. I originally coded the app with buttons and simple one-clicks but my boss was like: I'm probably going to click it by accident so make it so it only works with doubleclicks,...
  33. VS 2008 Re: System restart corrupting my files?

    Okay told my boss the deal, he has no clue about computers so I explained him somehow that he wont be able to understand it for years and he's good with it lol. Anyway, thanks for the help guys. <3
  34. VS 2008 Re: System restart corrupting my files?

    That's what I have, in which case the file saved corrupts in power drops. Though I don't get it why.
  35. VS 2008 Re: System restart corrupting my files?

    Okay then I should explain this to my stupid boss, he said I had to be as predictable as possible about this app. How the hell is his computer cable going to plug out anyway, I just don't get it....
  36. VS 2008 Re: System restart corrupting my files?

    I need this application finished by 5PM, it's already 6 and this is the only thing that left me. Seriously guys?
  37. VS 2008 Re: System restart corrupting my files?

    Still not working when plugging the cable out. What I don't get it is, I can see the file, open it with notepad. When I plug out pc that file just stays there with nothing in it.
  38. VS 2008 Re: System restart corrupting my files?

    Yeah I get it, but I don't think code from FormClosing event would run e.g. if you plug out the pc cable..
  39. VS 2008 [RESOLVED] System restart corrupting my files?

    I'm coding an application, it gets you some info and then saves in a .txt file like every 10 seconds on a timer.
    Testing the app, everything goes okay, on "accidental" application exit it goes well...
  40. VS 2008 Re: Open text file and write to listbox without using OpenFileDialog?

    nvm forgot about streamreader. Lol. You can close this stupid thread.
Results 1 to 40 of 335
Page 1 of 9 1 2 3 4



Click Here to Expand Forum to Full Width