Search:

Type: Posts; User: jjcaughtup

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. VS 2017 SSH problem - trying to convert to SSH.net from Tamir

    I have a problem that I cant seem to find a solution for. I use Tamir SharpSSH to log into my routers across the network to do general CLI type maintenance. I dont need to do any FTP transfers or...
  2. VS 2010 Re: problem with excel versions newer than 2010

    i tried late binding but i keep getting an error that it cant start the activex component. i tried using different target cpus, checking the com box, plus a variety of other things. nothing seems...
  3. VS 2010 Re: problem with excel versions newer than 2010

    i will check that out, thx
  4. VS 2010 Re: problem with excel versions newer than 2010

    I have heard of late binding but I don't know how to make it work with what I am doing. How would I use it in this snippet of code?

    Private Function OpenExcelFile(ByVal Excelfilename As...
  5. VS 2010 problem with excel versions newer than 2010

    This is my problem. I just upgraded to Office 2016. I still had Office 2013 and Office 2010 on my computer and thought to myself, "self, you don't need these old versions anymore.". After...
  6. VS 2010 Re: got a strange one here. items not displaying in the correct place on lenovo compu

    i tried the dpi thing... that sort of worked, but only after i closed the form and reopened it. After reopening the form, all of my rightclick functionality quit. none of my menus would pop up via...
  7. VS 2010 Re: got a strange one here. items not displaying in the correct place on lenovo compu

    i will give that a go... i knew there was some kind of autoscale in there but i didnt know which one to use or where... kinda crazy.. thanks..
  8. VS 2010 got a strange one here. items not displaying in the correct place on lenovo computers

    I have an application that I built on my Panasonic laptop, all of my buttons, labels, textboxes show up so nice... everybody's happy, lovin the application, now some guys who use lenovo computers...
  9. Replies
    11
    Views
    970

    VS 2010 Re: threading question

    ok... i have been playing around with some of these suggestions. The short threading tutorial was quite helpful, something that I will certainly try to implement in the future. About the Snooze...
  10. Replies
    11
    Views
    970

    VS 2010 Re: threading question

    Fortunately I use that application.doEvents only in one function and I call it when i need it. That would be a very easy process to change if I can implement one of these better methods.
  11. Replies
    11
    Views
    970

    VS 2010 Re: threading question

    These are all very good points... i will play with some of these ideas to see if I can get a more efficient piece of code to do what i am trying to do
  12. Replies
    11
    Views
    970

    VS 2010 Re: threading question

    I like the approach you suggest. When I created this project, which is stupid huge by the way... I created it all on one thread. I didn't understand threading or the significance of it and I...
  13. Replies
    11
    Views
    970

    VS 2010 threading question

    Ok... i have heard many things about cross threading errors, invoke methods, etc... I have an application that uses a single thread 99% of the time. In this application I call a function that...
  14. VS 2010 Re: trouble with my users updating their application after i added awesomium

    that worked... it forced my users to download all additional pre-reqs... excellent... thx
  15. VS 2010 Re: trouble with my users updating their application after i added awesomium

    i am using clickonce... i will give that a go and see if it works...
  16. VS 2010 [RESOLVED] trouble with my users updating their application after i added awesomium

    I have run into this before and had to recreate and re-release my application. A few years ago i added a feature that required a 3rd party resource. I was able to get the file out to all of my...
  17. VS 2010 Re: help needed. trying to populate user/pw on web gui

    Got it...

    Dim CurrentWindow As HtmlWindow = WebBrowser1.Document.Window
    For Each Frame As HtmlWindow In CurrentWindow.Frames ' Get all frames
    Dim usercell As...
  18. VS 2010 Re: help needed. trying to populate user/pw on web gui

    I found this piece of code on a forum for vb6 but it doesn't work on vb.net...
    ...
  19. VS 2010 [RESOLVED] help needed. trying to populate user/pw on web gui

    this is my issue... I can populate my user/pw on the if I navigate directly to the source by using this code.

    With Me.WebBrowser1
    .Navigate(ipaddress &...
  20. Replies
    0
    Views
    621

    VS 2010 VB.net webbrowser document problem

    I am adding a tool to one of my applications that uses a split screen with a cli interface via ssh on the bottom and a web gui on the top. everything works just fine but I am trying to populate my...
  21. Replies
    4
    Views
    817

    VS 2010 Re: Import C# app into VB?

    i thought it was possible but i have never written in C# so i wasn't sure. if i do this, will it effect the updates that are automatically checked by my users? I know that there have been times...
  22. Replies
    4
    Views
    817

    VS 2010 Import C# app into VB?

    Is it possible to write a C# app and add it to my vb app without converting it to VB? I want to build a map application to plot alarming sites on but the C# version of GMap seems to work better than...
  23. VS 2010 need connection string to connect to remote router

    when i use my standard TCP connection string i get this response from my router...

    SSH-2.0-OpenSSH_3.5p1

    From here i can do nothing. If i use Putty or Reflections i get a dialog box, enter...
  24. VS 2010 forms and objects changing sizes and locations on certain computers

    I am having a strange problem with one of my applications. I have some more complicated forms that are built into the application and are called when needed while other less complicated forms i...
  25. Replies
    2
    Views
    598

    VS 2010 Re: question about running batch files

    i guess that is an option... i would rather that the window just stay open though... i think I am gonna try to just create my own window so i can control it...
  26. Replies
    2
    Views
    598

    VS 2010 question about running batch files

    does anyone know how to keep the cmd window open after running a batch file? I am using a batch file to connect to a remote site. I can run the file all day long but as soon at it runs the file the...
  27. VS 2010 Re: Question about public functions & variables vs. private functions & variables

    i default to explicit and i turned on stopwatch to get the 10 sec figure. I am filling 3 fairly small string arrays at startup, one with some preset info and 2 with IO.file.readalllines.
  28. VS 2010 Re: Question about public functions & variables vs. private functions & variables

    i see...the connections to my sites are not made until i select the site and hit the connect button... all of that works pretty well... it us just the startup that is kinda slow. it takes about 10...
  29. VS 2010 Re: Question about public functions & variables vs. private functions & variables

    i think i will wrap it in a timer and try to pinpoint the slow code. I appreciate all of the input.
  30. VS 2010 Re: Question about public functions & variables vs. private functions & variables

    what i mean by initial form load is application startup. i start with a single form to connect to my sites.
  31. VS 2010 Re: Question about public functions & variables vs. private functions & variables

    judging from your responses i think my problem may be all of the string variables and string arrays that have to initialize. now i just need to come up with some alternatives...
  32. VS 2010 Re: Question about public functions & variables vs. private functions & variables

    I am using a ton of strings, arrays and variables. should i use something else? objects maybe? and my lack of proper terminology can likely be blamed on being a "self taught" wannabe... anyway, i...
  33. VS 2010 Re: Question about public functions & variables vs. private functions & variables

    i do need to empty them. this app connects via telnet to one of potentially 1000's of sites, all having unique configurations, I use the arrays to store the parameters. I then display them in a GUI...
  34. VS 2010 Re: Question about public functions & variables vs. private functions & variables

    stopwatch class? i dont know about that one. i will look into it. one other question... is there a better way to empty a md array? i am using something like this...

    For x = 0 To 9...
  35. VS 2010 Re: Question about public functions & variables vs. private functions & variables

    i think it may be some of the libraries i am loading. I am going to start eliminating some of the lib stuff that i am no longer using. i have only been coding for a few years so there is a lot i...
  36. VS 2010 Re: Question about public functions & variables vs. private functions & variables

    static being designed prior to compile/load and dynamically building the forms on the fly with code.. "dim siteform as form = new form", etc...
  37. VS 2010 Re: Question about public functions & variables vs. private functions & variables

    sounds good... i was curious. I converted about 8 forms to dynamic to help things along but it still takes a while. Some of what I am importing are the following:

    Imports...
  38. VS 2010 Question about public functions & variables vs. private functions & variables

    My application (VB 2010) takes a quite a bit longer to load that what I would like to see. I use about 8 static forms and the rest I build as I need them. I also have 3 modules wherein resides a...
  39. Replies
    4
    Views
    807

    Re: loading forms at program startup

    I guess that makes sense... I was thinking that all of the forms were having to load and just sit in the background until they are called. It is taking about 15 sec for my main form to show up...
  40. Replies
    4
    Views
    807

    loading forms at program startup

    I have a program that has in excess of 20 forms. Some forms have a lot of objects that have to load. This seems to be taking a lot longer than I like. I know that i can build the forms on demand...
Results 1 to 40 of 56
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width