Search:

Type: Posts; User: kayleigh

Page 1 of 13 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    3
    Views
    880

    centralized file reading and writing

    Hey guys, hope everyone is staying covid safe :)

    I have been looking around for examples but have yet to come across anything close to what I am trying to do. As my application grows I'm finding...
  2. Replies
    5
    Views
    2,110

    Re: Listbox.datasource displays class name

    But when I do call toarry it just displays windowsapp3.form1.cars

    But if i select a new index(i use debug.writeline to check the value) the output is correct.
  3. Replies
    5
    Views
    2,110

    Re: Listbox.datasource displays class name

    I'm not sure what happened there. Type is not a member here, but name is. I must have made an error in the reply.
    tripple chcked it again, and everything is correct. I am sorry about the typo above...
  4. Replies
    5
    Views
    2,110

    Listbox.datasource displays class name

    when cast to (list of, but the list is corrected populated if i change the slected index each ite

    now if I try this way below I ill get argument exception ": 'Complex DataBinding accepts as a data...
  5. Replies
    6
    Views
    801

    Re: Calling a Function from a Dictionary

    So done some reading. Works, what do you think guys?


    Public Class Form1
    Friend Class Commands
    Friend CommandKey As String
    Friend commandLine As String
    End Class

    ...
  6. Replies
    6
    Views
    801

    Re: Calling a Function from a Dictionary

    Cheers both of you, I spent a good amount of time googling and seeing some very complicated examples so was surprised when I it was so simple.




    That was my next issue as some will have...
  7. Replies
    6
    Views
    801

    Re: Calling a Function from a Dictionary

    Not sure if can be improved. Think I was over thinking it.


    Public Class Form1

    Private readonly functions As New Dictionary(Of String, Action)() From {
    {"CloseAll",...
  8. Replies
    6
    Views
    801

    Calling a Function from a Dictionary

    To avoid any "why am I doing this". I'm simply playing around. After 3 hours of googling I still can't crack it.

    What I am trying to do is to pass a "string" command to a Dictionary and if it...
  9. Re: VS 2017 displaying new button according to search results other way?

    am i doing this correctly?


    Nope.
  10. Re: Parsing a textfile that each line is its own script.

    @si_the_geek

    Hey, yeh that was the only I could think of to parse a script. Because there will be a lot of different commands I was thinking there might be another way without select case.
    ...
  11. Parsing a textfile that each line is its own script.

    Hello, and sorry for the not so great title.

    To make it as clear there is a tool called FRST that is used to scan the computer system and creates a diagnostic report. Depending what is found you...
  12. LINQ Intersect: Select class object from object property

    I have a class that has Three members. One of them members is an ID. I have Two lists that both generate this class but with different information. I can select and compare both lists to get the IDS...
  13. Replies
    5
    Views
    798

    Re: Wiki: msgbox and messagebox

    Not really answered anything i asked?
  14. Replies
    5
    Views
    798

    Wiki: msgbox and messagebox

    it says there is much debate which is the preferred. But there is not is there? It also states message box.show is from the Microsoft.VisualBasic but again its not.

    I know people who have tried to...
  15. Replies
    23
    Views
    2,332

    Re: Exclude Microsoft.Office.Interop if Microsoft Office is not installed

    You are good at posting screenshots and other links. Why not post your own code. That will help these people help you with whatsgoing on.
  16. Replies
    3
    Views
    8,610

    Re: 3D Histogram Example

    Thanks paul
  17. Is it possible to mark a Visual studi directory complete/fully documented

    As projects get more in-depth and harder to maintain i find myself going over and over the folder and file structures to make sure each class has been fully documented. Some folders I have no need to...
  18. Replies
    1
    Views
    1,813

    Different in Debugger options.

    For some reason, things like #if DEBUG and DebuggerStepThrough seem like just interfere with the debugger. I even see there is an API from the kernel32 dll CheckRemoteDebuggerPresent but I am not...
  19. custom scripts logic: Alternatives over if/case etc

    There is a diagnostic tool called FRST.

    https://www.bleepingcomputer.com/download/farbar-recovery-scan-tool/

    I was trying to rack my brains for learning reasons how tools would parse such...
  20. Replies
    3
    Views
    958

    Code condensing: Unknown enum type

    Hi, I have around 10 different functions that all work. But i was thinking surely there is a way to only use One function. An example.



    Private Function Groups(message As String,...
  21. Replies
    8
    Views
    880

    Dialog (X) clicked. Continue logic.

    Sorry for the vague title. Did the best i could. Say an event happens and the program displays a dialog notifying the user. The user clicks ok(a single button dialog there is no ok cancel) and the...
  22. Replies
    9
    Views
    1,089

    Re: Migration report headache....

    Can anyone suggest another site other than vworker to hire someone to have a look?

    Or does anyone have any other ideas?
  23. Replies
    9
    Views
    1,089

    Re: Migration report headache....

    Sorry. I am sorry if i was not clear. Yes the project has worked perfectly(only on my machine as uses a c coded driver in windoiws test mode) for ages now.When i installed 2017 i tried to open the...
  24. Replies
    9
    Views
    1,089

    Re: Migration report headache....

    Sorry i dont think i was clear. When i tried to open with 2017 it would not compile. So i uninstalled it, and tried again with 2015. Same thing. I reinstalled 2015 with all the packages that i did...
  25. Replies
    9
    Views
    1,089

    Re: Migration report headache....

    I will, try reinstalling but the application worked fine. So why would the c++ coms vanish?
  26. Replies
    9
    Views
    1,089

    Migration report headache....

    Firstly i was a little confused what section to post this under.The project is c(which I did not write) and vb.net. However, also it revoles around visual studio debugging. Please finally forgive me...
  27. Replies
    3
    Views
    3,243

    Any batch programmers here?

    Every time i try to append to the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SvcHost and value netsvcs i loose all it's existing data. The type is Reg_Multi_Sz. When...
  28. Dual progress bars: Current file, total files

    The theory behind this seems straight forward but i am obviously missing the point. For example if we had 5 online files that need to be downloaded. We loop each link to obtain the total of files...
  29. Replies
    7
    Views
    2,586

    Re: Usng 4.5 task factory async await

    Thats my point, is One preferred over the other? If i use tasks i must also then include events to pass the information back right?
  30. Replies
    7
    Views
    2,586

    Re: Usng 4.5 task factory async await

    Thanks reading that now. So what would be your advice waiting for a function to finish with out blocking the calling thread using 4.5 above?
  31. Replies
    7
    Views
    2,586

    Usng 4.5 task factory async await

    Hi, i am wanting to update my knowledge now i have move up from windows xp. Previously i would simply use a BGW to return some information. Using a new task i would have to raise an event passing the...
  32. Re: Passing a shared instance to Form1 sub new.

    Ok maybe i am going about this all wrong. Let me explain. My application takes a text file that is listed with arguments. I assign this to a class during application.events. I assumed using...
  33. Re: Passing a shared instance to Form1 sub new.

    Ok that makes sense. But now which is also obvious where can i pass the applicationevents instance to the startup form? Normally we would do this when a new form is created but in this case it is...
  34. Re: Passing a shared instance to Form1 sub new.

    The type makes no difference ..


    Public Class Form1

    Public Sub New(ex As String)

    ' This call is required by the designer.
    InitializeComponent()
  35. [RESOLVED] Passing a shared instance to Form1 sub new.

    Error



    Error 1 'Form1' is a type in 'WindowsApplication1' and cannot be used as an expression.


    I am doing some work in applicationevents that passes a class to form1 sub new. I am sure it...
  36. Checking framework is installed - deployment applications?

    What if the current framework is not up to date? What is, if any the best way to install and run a vb.net application making sure it meets the requirements. Would it be worth learning a small amount...
  37. Re: Form not being displayed as drawn - No themes used

    Hmm doing it again. Any new advice.
  38. Re: Form not being displayed as drawn - No themes used

    Uninstalled 2013, reinstalled seems to of resolved the issue. Well it didnt then after a restart did. Worrying s i guess its a setting.
  39. Re: Form not being displayed as drawn - No themes used

    If w8 displayed the dialog in VS as it did when compiling it wouldnt be to bad. How ever then it would not work with everything pre w8 :(
  40. Re: Form not being displayed as drawn - No themes used

    I had looked at auto scale, i changed it and the form went mental. These are all default settings only just installed 2013 :/

    It looks to me like you are using large fonts windows settings in your...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width