Search:

Type: Posts; User: Jenova

Page 1 of 13 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    4
    Views
    804

    Re: declare and assign variables

    If you want to assign a value immediately after you have declared the variable why don't you just assign a default value when you declare it.



    Dim myNumber As Integer = 0


    If you need to...
  2. Replies
    3
    Views
    5,891

    Re: Code samples VB. NET to the cloud

    A good place to start might be Windows Azure. You can find all the documentation here. It will tell you how to setup different types of applications and provides some good code samples as well.
    ...
  3. Replies
    3
    Views
    3,128

    VS 2010 Re: Scheduling Routines

    Thank you for your reply :). I did consider the Windows task scheduler but I have no experience in using it but I'll have to look into this further. Also, I felt I should check to see if there are...
  4. Replies
    3
    Views
    3,128

    VS 2010 Scheduling Routines

    Hi all,

    I’m in need of help in relation to scheduling tasks in VB.NET. I’m developing a File Backup Utility in VB.NET and one important aspect of the application is allowing the user to specify a...
  5. Replies
    5
    Views
    1,089

    Re: Format MySQL Output

    Excellent! Thank you SambaNeko for that idea. You've saved me a headache and a half. Had to tweek it a little but your method worked like a charm. Thank you so much for your help :thumb:.

    Rep...
  6. Replies
    5
    Views
    1,089

    Re: Format MySQL Output

    Thanks, menre for your suggesstion. I've added the code i've been using to my thread.
  7. Replies
    5
    Views
    1,089

    [RESOLVED] Format MySQL Output

    Hi All,

    It's my first time working with PHP and MySQL. So far, I've managed to get all of my scripts to work, however, i've run in to a bit of a bump in the road.

    What i'm trying to do is to...
  8. VS 2010 Re: e.cancel "cancel is not a member of "System.EventArgs" Error Help

    That's my bad. Thanks jmcilhinney for pointing that out. Sorry, It slipped my mind when I pasted it.



    Public Class Form1

    Private Sub LoanTextBox_Validating(ByVal sender As Object, ByVal...
  9. VS 2010 Re: e.cancel "cancel is not a member of "System.EventArgs" Error Help

    The reason why this isn’t working is because you’re trying to use the Cancel property for the EventArgs class. Additionally, you’re performing validation in the wrong events. You’ve been using...
  10. VS 2010 Re: e.cancel "cancel is not a member of "System.EventArgs" Error Help

    Cancel is not a member of System.EventArgs. It’s a member of CancelEventArgs. That’s why you’re getting your error. If you want to validate data in your text boxes you should do it in the Validating...
  11. Replies
    5
    Views
    1,441

    3.0/LINQ Re: Uboxing vs Cast/Convert.To

    There are a few articles available online that talk out performance issues with both. CodeGuru has an article on Type Casting and MSDN says that boxing and unboxing are computationally expensive.
    ...
  12. Replies
    5
    Views
    5,824

    VS 2010 Re: Treeview and Listview in one

    WeirdDemon is right. There is no control for it in Visual Studio. The only way you can get hold this type of control would be write it yourself or dowload an existing one. Here are some examples you...
  13. VS 2010 Re: How do I make a detailed listview?

    So you want the data to be entered into the ListView manually and not programmatically? I’m not sure why you would want to do this; you’re limiting yourself a lot by doing so. You have greater...
  14. Replies
    4
    Views
    837

    Re: ComboBox text display...

    You would use the SelectedIndex property for the Combo Box control. Add the following to your Form_Load event:



    ComboBox1.SelectedIndex = 1


    This will set the default index to 1. In your...
  15. Replies
    2
    Views
    693

    VS 2010 Re: Help with sending imput to other forms

    Just so I understand this, you’re trying to transfer the value of a text box from one form into the list box on another form? If this is the case then there are two ways you can achieve this.

    The...
  16. Replies
    8
    Views
    1,367

    VS 2010 Re: ListView problem

    jmcilhinney's code works. The only logical explanation is that you're not using the right code. Just add this line to your delete button's click event and nothing else:


    ...
  17. VS 2010 Re: vb6 to vb.net drawing on a picture box

    If you’ve been working with VB6 then I would imagine the easier solution would be to use GDI – or GDI+ as it’s better known as in .NET. GDI is easier to work with in .NET than it was in VB6. There...
  18. Thread: count 00 to 52

    by Jenova
    Replies
    5
    Views
    873

    Re: count 00 to 52

    You would use a for loop to achieve this.



    Dim iCount As Integer

    For iCount = 0 to 52
    MsgBox(iCount)
    Next iCount
  19. Re: Find & Replace does NOTHING, with no errors

    Is it possible for me to see this document that you're working with and i'll see if I can come up with something :)?

    EDIT: Never mind, just seen the solution. Glad you managed to figure it out :)
  20. Re: Generating documentation like MSDN but manually

    Have you come across Doxygen before? Would that help at all?

    Regards,

    Jenova
  21. Re: Find & Replace does NOTHING, with no errors

    No problem :)! Don't forget to mark your thread as resolved :)!
  22. Re: Find & Replace does NOTHING, with no errors

    Regardless, the code will still work with both file types. I've tried both and it still works. This can only mean that it may be a problem with the document you're trying to modify. This will only...
  23. Re: Find & Replace does NOTHING, with no errors

    Hi Blacksaibot,

    I've tested your code and it works fine for me. What version of Office are you using? I've tested it on Office 2007 several times and it works:



    Imports...
  24. Replies
    2
    Views
    742

    Re: line chart of an array

    Hi Rmoer,

    There are a few tutorials on the internet that could help you with this. This is one that I have previously used. Perhaps it may be of some use to you.

    Regards,

    Jenova
  25. Replies
    8
    Views
    1,874

    Re: Listview Sub Item Value Add

    Hack's code should do exactly what you need to. Your question was that you wanted to know how to add the Google Page Rank as a subitem to a listview item which contains a URL. You can do this by...
  26. Replies
    6
    Views
    1,514

    Re: Wage Program

    I'm assuming that you live in the UK. If you do, then this may help you a little. You'll need to develop and understanding of how the tax system works. To answer your tax question you can use an Enum...
  27. Replies
    7
    Views
    848

    VS 2008 Re: Files and Arrays

    I see :). Well, ideally you would use a database to store that kind of information. The reason is because it's more efficient in terms of data access and data manipulation. If however, you were to...
  28. Replies
    7
    Views
    848

    VS 2008 Re: Files and Arrays

    Why are you storing this in a text file? It would be easier (and more efficient) to store it in a database and then use ADO.NET to retrieve the data. Is there any specific reason why you're using a...
  29. Replies
    12
    Views
    21,624

    Re: %USER% path in VB.NET?

    Does this help you at all?
  30. Replies
    11
    Views
    732

    Re: [SERIOUS] Ban Dihydrogen Monoxide

    Here are the people who are "against that evil water".
  31. Replies
    38
    Views
    1,976

    Re: The Similar Images Thread

    http://i211.photobucket.com/albums/bb209/disturbedchickie/fail-cat2.jpg
  32. Replies
    16
    Views
    872

    Re: My frightening experience

    I'm hurt by this statement. I don't think i look like a crack head at all :D.
  33. Replies
    16
    Views
    872

    Re: My frightening experience

    I know, my parents said the same thing. They told me that it would have been a different story if he had attacked me again or if he had a knife, I could have been seriously hurt, or worse.


    ...
  34. Replies
    16
    Views
    872

    My frightening experience

    Thursday night is an exciting night here in the North East; it’s alternative night and a good night to go out and socialise with friends. I must admit, it was a really good night and fun was had by...
  35. Thread: Criminal Birds

    by Jenova
    Replies
    6
    Views
    536

    Re: Criminal Birds

    I'll think of a better title next time. Sorry to disappoint you :D
  36. Thread: Criminal Birds

    by Jenova
    Replies
    6
    Views
    536

    Re: Criminal Birds

    I know, it's from July 2007. I posted it because of the humour :D.
  37. Thread: Criminal Birds

    by Jenova
    Replies
    6
    Views
    536

    Criminal Birds

    Just when you thought crime in the UK couldn’t get any worse :afrog:
  38. Replies
    12
    Views
    728

    Re: I went to Skindred last night

    Your bruising could of been substantially worse. I can't wait for Download 2008 :afrog:
  39. Replies
    10
    Views
    788

    Re: Microsoft's Ballmer Escapes Egg Attack

    Here's the video for those of you who are interested. :afrog:
  40. Replies
    14
    Views
    1,395

    Re: VB solves crimes

    It's good news for Microsoft and VBForums :). The vast majority of CSI: New York fans will take up Visual Basic programming and then post questions on this forum.


    How do I create a GUI...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width