Search:

Type: Posts; User: phpman

Page 1 of 13 1 2 3 4

Search: Search took 0.19 seconds.

  1. Replies
    10
    Views
    1,535

    VS 2019 Re: Listview slowness

    Well, don't you just love chasing the rabbit down the deep dark hole just to find out that it was the antivirus software dragging you down? LOL. It was the real-time scanning that as making the...
  2. Replies
    10
    Views
    1,535

    VS 2019 Re: Listview slowness

    So I have found that it is not the listview that is the slowness. It is reading the 170 files from the directory that takes 11sec, then load into the listview with is about 2 seconds. Any better way...
  3. Replies
    10
    Views
    1,535

    VS 2019 Re: Listview slowness

    Scoring the internet, I did come across a bug in .NET5.x that is doing my exact problem. But we are on 4.8. The bug showed that 4.7.2 didn't experience the issue so I updated the code to run on 4.7.2...
  4. Replies
    10
    Views
    1,535

    VS 2019 Re: Listview slowness

    We can't close it, it runs all day with no way to kill it except task manager. But yes, I do have it refreshing every hour and still see the slowness


    I did look into this, and I would have to...
  5. Replies
    10
    Views
    1,535

    VS 2019 [RESOLVED] Listview slowness

    So I have this app that has a treeview and listview on it. Basically a mini explorer window without any bells or whistles. All it does is shows icons that are shortcuts loaded from the local C drive....
  6. Replies
    8
    Views
    2,125

    VS 2019 Re: Cancellation of task

    Ok so I made some changes and I have it working now. I was missing the cts.token in the task sub. And after I changed it around to be more like yours, dbasnet, thinks started to align and I could...
  7. Replies
    8
    Views
    2,125

    VS 2019 Re: Cancellation of task

    If I make my code like yours, well as close as I can as I have a for next loop in mine, and I can't use the "Await" line as it tells me that "Await operator can only be used within an Async method"...
  8. Replies
    8
    Views
    2,125

    VS 2019 Re: Cancellation of task

    Ok, so I unchecked the System.OperationCanceledException under Exceptions settings. That fixed the breaking, still throws the error in the console, but it also does not go to the " Catch ex As...
  9. Replies
    8
    Views
    2,125

    VS 2019 Re: Cancellation of task

    Thanks Karen, I will check that out on Monday when I'm back at work.
  10. Replies
    8
    Views
    2,125

    VS 2019 [RESOLVED] Cancellation of task

    I am trying to setup a task and when I click the stop button it should cancel. Everything I have read states I could use



    cts.Token.ThrowIfCancellationRequested()

    But when I do I get an...
  11. VS 2019 Re: Drag & drop to Specific Listview folder

    Yes I was, just not the correct way. But thank you
  12. VS 2019 Re: Drag & drop to Specific Listview folder

    I think I figured it out. So once i realized that GetNodeAt retuned nothing/null I changed my checks to check for nothing instead of text length. I can then drag and let go in white space and not...
  13. VS 2019 Re: Drag & drop to Specific Listview folder

    Thanks Si_the_geek,

    I did try a variation of that

    If Selected.Text.Length > 0 Then

    And still got the error. But trying yours doesn't give me an error until I release the left mouse button...
  14. VS 2019 [RESOLVED] Drag & drop to Specific Listview folder

    So I am trying to only allow drag & drop to a specific folder in my listview. The problem I am having is that with the current code below is that you start the drag to a folder not allowed it gives...
  15. Replies
    2
    Views
    1,135

    VS 2019 Re: Iiterate any json sring

    Well i think I fixed my own problem. But it leads to another problem. So instead of sending res.Item.(0) I just send res. It works it out. But when it gets to the image it gives a null value


    ...
  16. Replies
    2
    Views
    1,135

    VS 2019 Iiterate any json sring

    I'm trying to loop through this string but it stops right after the array.

    Here is the JSON String


    [
    {
    "@context": "http://schema.org",
    "@type": "BreadcrumbList",
    ...
  17. Replies
    4
    Views
    890

    VS 2015 Re: System.IndexOutOfRangeException

    Yeah, I looked at the same text in a different text editor and it shows they are line breaks. I can see why it errors out. The line just stops so there is no index 4.

    Thanks jmcilhinney, I think I...
  18. Replies
    4
    Views
    890

    VS 2015 Re: System.IndexOutOfRangeException

    Ok, I looked into Contents(x) and seen that the space (which is a return character) and errors out. The file is produced from a database and all the returns are suppose to be replaced with spaces, so...
  19. Replies
    4
    Views
    890

    VS 2015 System.IndexOutOfRangeException

    I understand the error but I don't know why I am getting it. I have a tab delimited file that I am reading line by line. The line it fails on in the file is the last one and gives the error


    ...
  20. VS 2013 Re: Open command prompt and see command run from App

    Never mind, I think creating the batch file will be easier.
  21. VS 2013 [RESOLVED] Open command prompt and see command run from App

    Hi guys/gals,

    I have a small problem that when I open cmd.exe and send commands to it I see the command prompt open and the command runs but I don't see any text in the window. when the command...
  22. Replies
    2
    Views
    979

    VS 2013 Re: copy selected datagridrow to new row

    Thanks dolot, I ended up going that way, basically.



    Dim currentrow As DataRow = DirectCast(Me.DataGridView6.DataSource.Current, DataRowView).Row

    NewValue = InputBox("Enter New Serial",...
  23. Replies
    2
    Views
    979

    VS 2013 copy selected datagridrow to new row

    Greeting guys,

    What I have is a inventory database setup as a datagrid bound to a datatable. Everything is working great, but what I would like to do is if at any point in time we let say, order 3...
  24. Re: [.NET 2.0+] Visual Studios "My Project" Tab Control (Updated! 12/9/2009)

    Thanks JuggaloBrother, but please forgive me ignorance. I know how to setup a enum, but I am not understanding how to use the enum to set the tabpage. have an example that would be great.
  25. Re: [.NET 2.0+] Visual Studios "My Project" Tab Control (Updated! 12/9/2009)

    Just a heads up, I can call the tabpage just fine from the main form, FrmMain, just not from any other file
  26. Re: [.NET 2.0+] Visual Studios "My Project" Tab Control (Updated! 12/9/2009)

    Sorry guys, error is:

    VisualStudioTabPage6 is not declared. It maybe inaccessible due to its protection level.

    Also, I can not see it in general drop down. I see VisualStudioTabControl1 but no...
  27. Re: [.NET 2.0+] Visual Studios "My Project" Tab Control (Updated! 12/9/2009)

    Thanks JuggalBrotha, but it still doesn't like anything after the = sign


    FrmMain.VisualStudioTabControl1.SelectedTabPage = VisualStudiosTabPage6
    FrmMain.VisualStudioTabControl1.SelectedTabPage...
  28. Re: [.NET 2.0+] Visual Studios "My Project" Tab Control (Updated! 12/9/2009)

    Love this control, but when I try to make the whole thing transparent like it shows in the first post, it gets really weird on me and labels from the other tabs start to bleed through. did i miss an...
  29. VS 2013 Re: [RESOLVED] Splitting string with multiple delimiters

    PEBKAC = Problem exist between keyboard and chair.

    lol
  30. VS 2013 Re: [RESOLVED] Splitting string with multiple delimiters

    nevermind paul, it was a PEBKAC lmao
  31. VS 2013 Re: [RESOLVED] Splitting string with multiple delimiters

    funny, I was just reading about that method. It finds the correct index but doesn't show it selected in the box
  32. VS 2013 Re: [RESOLVED] Splitting string with multiple delimiters

    Hi paul,

    One thing I noticed is after saving the item, I try to edit it, the dropdowns don't come back with what was saved. It loads like it is a brand new list.
    I've tried both of these
    ...
  33. VS 2013 Re: Splitting string with multiple delimiters

    I can easily do it like this

    row("PODept") = Replace(CmboPODept.SelectedItem.ToString, "'", "`")

    but I know that it not the right way to go

    [edit]Sorry, didn't refresh to see your post, that...
  34. VS 2013 Re: Splitting string with multiple delimiters

    small problem paul, when I save the form it errors out saying "Conversion from type "listitem" to type String is not valid"

    Saving it like this

    row("PODept") =...
  35. VS 2013 Re: Splitting string with multiple delimiters

    Thank you guys. dday9, I couldn't quite get yours to do what I wanted, gave me errors on the first line.substring, but I believe it was more my code stopping it then anything else. But paul, thank...
  36. VS 2013 [RESOLVED] Splitting string with multiple delimiters

    I can't see where I am going wrong. I have a text file with this in it:

    dept=div1,div2,div3
    dept2=div1,div4

    I tried this but where does the string after the = go?



    Dim tfLines() As...
  37. VS 2013 Re: Multiple text boxes using one timer?

    Thanks shaggy, doing the enum worked like a charm.

    without the pause it happens so fast it doesn't look like it is working, if there are a lot of results returned. :)
  38. VS 2013 Re: Multiple text boxes using one timer?

    Thanks Shaggy,

    Yes, the timer is all for a slight delay in the datagrid view for each filter. And yes, each box can override what the last one did. it doesn't mess anything up, just changes the...
  39. VS 2013 [RESOLVED] Multiple text boxes using one timer?

    Is it possible to have multiple textbox use one timer. What I have is a tabcontrol that shows a datagrid. I have text boxes to filter the grid. so I use a timer control for the keyup on the textbox....
  40. Replies
    2
    Views
    1,514

    VS 2010 Re: error occurred creating the form

    well, I took the most recent updates this month and am not having any issues. That did crossed my mind, but others don't seem to have this issue. I just want to verify that the error is machine based...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width