Search:

Type: Posts; User: OhGreen

Page 1 of 8 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    10
    Views
    2,678

    Re: Disable/delete VBForums Account.

    You hit the nail on the head there :thumb:
  2. Replies
    10
    Views
    2,678

    Re: Disable/delete VBForums Account.

    That's understandable, I am more after an anonymity from the name OhGreen.

    Would a name change to something along the lines of "unknown6342" be possible?
  3. Replies
    10
    Views
    2,678

    Disable/delete VBForums Account.

    Not entirely where else I would post this, other than dropping private messages to some of the admin...

    Basically for reasons of my own, I need to disable/delete this account and I can't find...
  4. Replies
    10
    Views
    1,334

    Re: Can't find where I went wrong.

    Nice spot :)
  5. Replies
    10
    Views
    1,334

    Re: Can't find where I went wrong.

    To a certain extent I agree, but if you're converting without catching any erroneous entries you're going to have crashes all over the place.

    I always allow the assignment and handle the contents...
  6. Replies
    10
    Views
    1,334

    Re: Can't find where I went wrong.

    If QuantityInteger >= 0 Then

    Should be:

    If QuantityInteger > 0 Then

    Otherwise your check for "0" is pointless unless a negative value is entered.
  7. Replies
    4
    Views
    846

    Re: Find Group in Active Directory

    Looks like you beat me to it :)
  8. Replies
    4
    Views
    846

    Re: Find Group in Active Directory

    I use the below to create an LDAP connection to test whether a user is a member of a group.

    Although this isn't a full solution to your problem, it contains a lot of what you're after.

    Public...
  9. VS 2008 Re: Moving Shape leaving a trail of copies of itself

    I agree with boops, you should be Invalidating the specific object rather than the entire form.
  10. Replies
    4
    Views
    3,386

    VS 2008 Re: How to hide my ip to internet!!!

    superhideip = a server
    VB.NET = application

    server = possible to hide IP
    application = not possible to hide IP

    Thought I'd put it simply as there is a language barrier :)

    oG
  11. Thread: Help Please

    by OhGreen
    Replies
    11
    Views
    1,026

    Re: Help Please

    Dim str As String
    str = TextBox1.Text

    If TextBox1.Text = str Then

    You've made a variable called str and said it's a string.

    You've then made the value of the string equal to the text value...
  12. Replies
    16
    Views
    1,494

    Poll: Re: You might be doing it wrong!

    To a certain extent I agree, however, where do you start with such a thread? It would be a massive amount of information squished into one thread for users to trawl through.

    I personally would...
  13. Replies
    10
    Views
    1,346

    Re: Recommended Resume Services?

    I dislike the idea of having someone else create a CV for you, at the end of the day, you're supposed to be representing your skills through that piece of paper. If you can't format a document, if...
  14. Replies
    3
    Views
    3,622

    Re: Integrating SSRS

    What's the point of this post?

    If your intentions are to provide useful code for others to reference, there's a codebank for that.

    Also a little more explanation would be a good start.

    I'll...
  15. Replies
    7
    Views
    733

    VS 2010 Re: Updating a progress bar

    Thought as much :)
  16. Replies
    7
    Views
    733

    VS 2010 Re: Updating a progress bar

    I'd probably say there's no reason to have either doevents or a refresh, it's within a closed loop and there isn't much to queue.
  17. Replies
    7
    Views
    733

    VS 2010 Re: Updating a progress bar

    Try this:

    frmMain.tsProgressBar.Value = 0
    frmMain.tsProgressBar.Maximum = 100

    Do While byteCount > 0
    EncryptCryptoStream.Write(buffer, 0, byteCount)
    (MsgBox("byteCount = " &...
  18. Replies
    7
    Views
    733

    VS 2010 Re: Updating a progress bar

    Because presumably your BytesWritten and inputLength are the same value.

    From what I can tell at no point do you control the speed of the stream and as such it's bytecount is equal to the...
  19. Replies
    6
    Views
    954

    VS 2010 Re: How to Impliment another project

    Apparently I'm not very sharp today.



    Read that as 12:41 PM :blush:
  20. Replies
    6
    Views
    954

    VS 2010 Re: How to Impliment another project

    First off I read this thread and got utterly confused what you're after, I then noticed the second post was posted before the first post.

    Where did you buy your Tardis?

    Before my head...
  21. Replies
    2
    Views
    897

    Re: Keylogger Detector

    How do you plan on detecting the logging of keys?

    Surely if you could do that, keylogging would be a thing of the past.
  22. Re: How can you recognise an out-of-office auto-reply email?

    Outlook does recognise auto-replies, and obviously Out of Office falls under that category.

    Problem is the category also includes similar auto responses and as far as I'm aware there's no way to...
  23. Replies
    5
    Views
    513

    Re: How to Display Calender in IIS

    You're correct szlamany, IIS is a web server application and as such is used for webforms.

    Even if it is possible, why would you want to use IIS for a VB.NET application?
  24. Replies
    18
    Views
    2,204

    Re: String Manipulation

    If the OP copies your code, makes slight modifications, hands the project to his teacher, gets an A... what did he learn?

    What is the point in posting an entire solution, rather than providing...
  25. Replies
    35
    Views
    22,473

    Re: Loading progress Circle?

    I would've thought creating a custom control would be a bit of a stretch for someone new to VB?

    That's the only reason I suggested a more primitive "draw it yourself" technique.
  26. Replies
    9
    Views
    979

    Re: This makes no sense to me - at all.

    Do something as simple as:

    MsgBox(username & " " & password)

    Are the values as expected?
  27. Replies
    35
    Views
    22,473

    Re: Loading progress Circle?

    I don't personally like gifting answers, I feel that you don't learn anything that way.

    Method:

    The idea is to draw two imaginary circles, one smaller than the other and placed in the middle of...
  28. Replies
    35
    Views
    22,473

    Re: Loading progress Circle?

    The link Kevin posted is really helpful even if it is in C#, I've previously created my own circular progress bar within VB.NET but not even considered the method he used.

    My advice rafter would...
  29. Replies
    18
    Views
    2,204

    Re: String Manipulation

    What a ridiculous statement.

    The first response to the OP by Niya was a perfect nudge in the right direction, the rest of the 'help' given is far beyond what the OP will have been taught or...
  30. VS 2010 Re: How do I make an application that downloads things off the internet?

    On a side note, using a progress bar is simple.

    For example:

    Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer1.Tick

    ProgressBar1.Maximum = 100

    If...
  31. VS 2010 Re: How do I make an application that downloads things off the internet?

    Strange request really, how would you stipulate what you wanted to download?

    Also you'd have to factor in that not all websites are built in the same fashion, the way in which 'pictures etc.' are...
  32. Re: how to add delete or update record in access using vb10

    I'd recommend finding some time and sitting down through the entire tutorial, it'll really benefit you.
  33. Re: how to add delete or update record in access using vb10

    Click here
  34. Re: how to add delete or update record in access using vb10

    If you follow my VB tutorial link in my signature, there is a database connection section which should be what you're after.
  35. Thread: Mac Address

    by OhGreen
    Replies
    1
    Views
    528

    VS 2008 Re: Mac Address

    How can you test the speed of an address?

    What are you aiming to achieve?

    oG
  36. Replies
    9
    Views
    7,094

    Re: How would I encrypt a 4 digit number?

    Read my first post and you'll learn that your encryption doesn't work.
  37. Replies
    6
    Views
    889

    Re: create circle image HELP!!

    You have a screenshot of the kml, you then load that screenshot into a picturebox?

    What do you mean by "dir"? and what is dot.png?

    I realise English may not be your first language but please...
  38. Replies
    11
    Views
    871

    VS 2008 Re: Delete Duplicates

    Then why does post #5 have the posted time 11:38 AM and post #4 have the posted time 12:52 AM?

    oG
  39. Replies
    3
    Views
    5,015

    VS 2010 Re: Duplicate Control

    If you copy the control it will rename itself to DataGridView2 and so all the code for DataGridView1 won't apply to it.

    Yes you can just copy the code too, changing each bit to DataGridView2.
  40. Replies
    3
    Views
    5,015

    VS 2010 Re: Duplicate Control

    Why not just create the second datagridview and on form load set:

    DataGridView2.Visible = False

    When the user presses the button:

    DataGridView2.Visible = True
Results 1 to 40 of 299
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width