Search:

Type: Posts; User: JoePage

Page 1 of 6 1 2 3 4

Search: Search took 0.01 seconds.

  1. Re: How to put a VB.net application onto my website?

    Oh I didn't even notice you were using WP. Like Stanav said an Iframe to host the app would be a good option or even create a seperate page and just link to it. There is one thing that might also be...
  2. Replies
    2
    Views
    670

    VS 2010 Re: button behavior to avoid multiple clicks

    Sorry I am not 100% sure what you mean. What exactly does the button do? Anyways try using a boolean.


    Private btnClicked As Boolean = False
    Private Sub Button1_Click(sender As...
  3. Thread: Trim text...

    by JoePage
    Replies
    2
    Views
    702

    Re: Trim text...

    If the users information will not contain a colon then you could do a simple string split. There is many ways you could do this. If splitting from the colon doesn't work for you then explain the use...
  4. Ambiguous in the namespace issue, even after removing previous control

    I was using a control in my application and then decided to make some customizations to it so I modified the control and built it and removed the old control from my project and dropped the new one...
  5. Re: How to put a VB.net application onto my website?

    Since it is a very simple application you could easily create a asp.net app in vb.net to do the same.
  6. Re: Need some help figuring out my regex mystery.

    Paul the parameters it is expecting: e.ChangedRange.SetStyle(Style I want to add to the range, Regex match pattern to apply the style to, The regex options.)
  7. Re: Need some help figuring out my regex mystery.

    Thanks for the help guys. I wanted to make sure I wasn't crazy with the regex being right. After dunn's suggestion, I looked into the preset styles for fastcoloredtextbox and one of them was...
  8. Need some help figuring out my regex mystery.

    Short Version: I am trying to build the regex to find out if a string contains "0,0,0,0". Every attempt I have made only returns each char as a match not the full string within the quotes.

    I am...
  9. How to take screenshot of region on screen using x1,y1,x2,y2?

    I am trying to figure out how to take a screenshot of just a region of the screen using the x/y coordinates of the upper left corner and the x/y coordinates of the lower right hand corner?

    My...
  10. Re: Accessing same file from multiple instances of application

    Thanks I had no idea.
  11. Re: Accessing same file from multiple instances of application

    True, the reason why it was on form load was because in my application you could save the data to the file while it was open instead of close. Even then it still doesn't really make sense though I...
  12. Re: Accessing same file from multiple instances of application

    Hi dday, were you referring to the missing end if in the code I posted? I must have left it out when I was copying the code.

    How to I close the filestream in my else statement?
  13. Accessing same file from multiple instances of application

    I have noticed alot of "Cannot access file because it is being used by another process" errors in my bug tracker reports. I am geussing this might have to do with the file not being closed after it...
  14. Re: Trying to find the first instance of a string in a listview from a specified inde

    Hi dunn, thanks for comming back to help. It is working great now.

    Here is the code that you gave with a slight modification, in case anyone else needs to know how to do this. I have it so that I...
  15. Re: Trying to find the first instance of a string in a listview from a specified inde

    I tried a couple more things, I feel like I am pretty close. Can anyone shed some light for me?


    Private Function FindLogic(ByVal LV As ListView, ByVal CIndex As Integer, ByVal SearchFor As...
  16. Replies
    6
    Views
    762

    Re: Inserting Snippets?

    Are you saying you have entered all lines of code and you are getting errors on those lines? what errors are you receiving?
  17. Re: Trying to find the first instance of a string in a listview from a specified inde

    Hey dunn, how would I be able to change it so I could add a specified listview column for it to search for listviews that have multiple columns? I have been toying around with it and cant seem to get...
  18. Re: Trying to find the first instance of a string in a listview from a specified inde

    Thanks that's exactly what I was looking for. I never thought about doing it this way.... Until next time.
  19. Re: I've made a word processor. How can i close the document but not the program?

    Hi there.

    Like datamiser said, in this case all you would need to do is clear the textbox when the button is pressed. Although you could add a tab control and dynamically add the textboxes/tabs as...
  20. Re: Trying to find the first instance of a string in a listview from a specified inde

    No I think you misunderstood what I mean, I am not trying to check if the item on the specified index contains the text. I am looking for the first instance of the word dog from a specified index,...
  21. Re: I've made a word processor. How can i close the document but not the program?

    Well first you would need some sort of tabbed document interface, or the ability to add multiple documents. Or at the very least if you want to create that effect you can remove a textbox then make...
  22. Trying to find the first instance of a string in a listview from a specified index

    I am trying to find the first instance of a string/word from a specified index in a listview. For instance the first instance of the word dog from the selected item in the listview.

    I thought...
  23. Replies
    1
    Views
    433

    VS 2008 Re: regex to scrape the string between the "

    Hi there.

    This is the regex:
    "([^"]*)"

    And to use it you could do something like this, this would get each item as a match that you could use. I am not sure how you wan't to use it though. ...
  24. Should we be starting to develop all desktop apps for windows 8?

    Sorry if you have seen this question too many times before, but with the release of windows 8 it really changes everything. Personally I am not a fan, I think the idea is great for their...
  25. Can the picturebox be used to display vector based images?

    My questions is the same as the title. I have read a post from someone claiming that the picturebox can be used to display vector based images instead of bitmap images. So the box can be resized and...
  26. Re: Why is my application loading my files twice?

    It is because it is acting as my form_load. In order to use form_load I need to show my form. The reason there is the IO code in this spot, is because it is checking for an outside refferal as it...
  27. Re: Why is my application loading my files twice?

    The reason for the setvisiblecore is so my start up form can remain invisible, while still allowing data to go through it and so a notify icon is still displayed that allows the user to access...
  28. Re: Why is my application loading my files twice?

    Hmm im not following. The For loop just adds the row number into the first column of each row, for every listview item. The while loop adds each line from the text file into the listviews sub items....
  29. Re: Why is my application loading my files twice?

    Thanks alot. It works great. Yes I really had no reason to understand why it was firing more than once. I understand it a little more now. Thanks.
  30. Why is my application loading my files twice?

    In my application I have my own custom filetype. I have it set to detect whether the application was started from a file being opened in the explorer or if it was just opened up from the assembly....
  31. Re: How to test for memory leaks in .net application?

    Nothing wrong with TaskManager, I just figured I'd ask the experts if there might be some tools that were created solely for this purpose. I will use the task manager. Thanks Dun.
  32. How to test for memory leaks in .net application?

    I am wondering how to test for memory leaks in an application. I am not 100% positive that it is my application that is causing the spike in memory but I want to make sure it is not. What free tools...
  33. Can not select different item in listview.

    I am having an issue, I have a listview that holds a file location in each items tag and also a name for the file in the items text. Wwhen an item is selected in the listview it displays the data in...
  34. Replies
    6
    Views
    3,964

    Re: Alternatives to the BackgroundWorker?

    I have one question. I moved everything over to my main form, and I am using the background worker now. My UI no longer hangs, but I am having a hard time cancelling the thread when the cancel button...
  35. Replies
    3
    Views
    639

    Re: Removing string from textbox?

    Thanks alot. Got it working now. I have many other spots in my project where I used Instr, I think I should probably change those to contains too.

    Here is the working code for anyone elses...
  36. Replies
    3
    Views
    639

    [RESOLVED] Removing string from textbox?

    I am trying to remove a certain string from a textbox when a button is pressed. Although using replace isn't working out too well for me. Can someone give me a hand?

    This is my code already.
    ...
  37. Re: Having trouble adding string to textbox through keyup event.

    I assumed that although it is running on every keyup, it will only add the text once everytime it is found.
  38. Having trouble adding string to textbox through keyup event.

    I am trying to have my application to check for a certain string as words are added into my textbox, and when the string is found it adds another string 2 lines below it. For some reason once the...
  39. Replies
    5
    Views
    2,457

    VS 2010 Re: ToolStrip disappeared

    Triple post. The server lagged out on me for a minute there.
  40. Replies
    5
    Views
    2,457

    VS 2010 Re: ToolStrip disappeared

    Double post.
Results 1 to 40 of 201
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width