Search:

Type: Posts; User: nico@nfbio

Search: Search took 0.02 seconds.

  1. Replies
    10
    Views
    1,830

    VS 2012 Re: Creating a service + show HTML

    Hi...

    Sorry for the late respons. I will try to explain better. Ok, i have a file (doesn't matter if its a exe or html) that contains a message. This message needs to be shown on users desktops...
  2. Replies
    10
    Views
    1,830

    VS 2012 Re: Creating a service + show HTML

    I successfully created a service that can write in the eventlog. First i tried to show a message every 60 seconds, but msgbox is not compatible with services. Then i tried starting a process but...
  3. Replies
    10
    Views
    1,830

    VS 2012 Re: Creating a service + show HTML

    Ok sorry.

    Was posting because I think all help/input makes it easier to understand. Maybe somebody already tried it.
  4. Replies
    10
    Views
    1,830

    VS 2012 Re: Creating a service + show HTML

    Never tried it.

    I'm following this guide http://www.cjvandyk.com/blog/Articles/How-do-I--Create-a-Windows-Service-application-using-Visual-Studio-2010.aspx right now. Hoping to gain some insight.
  5. Replies
    10
    Views
    1,830

    VS 2012 Creating a service + show HTML

    Hi,

    I have seached google on how to create a windows service but found no usefull info on what I want.

    What I need is a service that "listens" when an information is pushed out. This...
  6. Replies
    0
    Views
    769

    Push message/popup

    Hi,

    I seached this forum for a similar thread and found the one with the utility LANegram. This doesn't work though.

    I need a application that can send out messages to clients in a domain as an...
  7. Re: Utility: LANegram - NET SEND Replacement [VB6]

    Hi,

    I could really use this application. I installed the .msi package on a test machine and my machine. Both are in the same domain/ip segment with firewall turned off. My send machine has Windows...
  8. Replies
    6
    Views
    1,369

    VS 2012 Re: ProgressBar form - endless load

    Nobody? :(
  9. Replies
    6
    Views
    1,369

    VS 2012 Re: ProgressBar form - endless load

    I think i need to ask openly somebody here if they have 5-10 minutes to help med code the backgroundworker? After several hours playing with the backgroundworker i still can't figure out how to use...
  10. Replies
    6
    Views
    1,369

    VS 2012 Re: ProgressBar form - endless load

    Thank you so much for taking your time with this. This is my last obsticle with my app :-/

    I added a backgroundworker component to my mainform and created:


    Private Sub...
  11. Replies
    6
    Views
    1,369

    VS 2012 Re: ProgressBar form - endless load

    Thanks for the answer. Yes im not a professional and learning as i go along :blush:

    I was hoping to avoid backgroundworker as im not sure how to implement it in regards to my code.

    I have a...
  12. Replies
    6
    Views
    1,369

    VS 2012 ProgressBar form - endless load

    Hi,

    I have found a way to load a progressbar into my code:


    Do
    progressBar.Show()
    Me.Cursor = Cursors.WaitCursor
    updateListView()
    ...
  13. VS 2012 Re: [RESOLVED] Publishing App - Ressources XML not being published

    The thread is solved but I might as well ask you. The intend was to have the application installed under program files and that the XML file was editable by the end user. That way the user can...
  14. VS 2012 Re: [RESOLVED] Publishing App - Ressources XML not being published

    Works. Thanks!!!
  15. VS 2012 Re: Publishing App - Ressources XML not being published

    Thanks for the tip. With the messagebox it works like you said.


    Dim xmlDoc As New XmlDocument
    xmlDoc.LoadXml(My.Resources.serverlist)
    Dim i As Integer

    For i = 0 To...
  16. VS 2012 Re: Publishing App - Ressources XML not being published

    Thanks, but I already know this from googling all morning.


    my.resources.<resourcename> calls my resource but returns a String. Aaaaand i already googlet xml and string but dont completly...
  17. VS 2012 Re: Publishing App - Ressources XML not being published

    New info:


    XElement.Load(Application.StartupPath + "\Resources\serverlist.xml")

    should be changed to where the ressources path. Anybody know how to call the ressources element path that also...
  18. VS 2012 [RESOLVED] Publishing App - Ressources XML not being published

    Hi,

    My application is finally almost finished.

    Today I tried publishing my application but after installation the needed xml file in ressources is missing.

    ...
  19. Replies
    7
    Views
    1,352

    VS 2012 Re: Iterating through objects

    As you wrote that i realized that the control was in a groupbox. I wasnt aware that controls in a groupbox are not known by "me".

    Thanks for the help! :wave:
  20. Replies
    7
    Views
    1,352

    VS 2012 Re: Iterating through objects

    For i = 1 To serverCount
    Dim lv = DirectCast(Me.Controls("ListView" & i), ListView)
    Dim gb = DirectCast(Me.Controls("GroupBox" & i), GroupBox)
    gb.Text =...
  21. Replies
    7
    Views
    1,352

    VS 2012 Re: Quick question

    Thanks again for your quick response and help.


    Do While i < serverCount
    Dim lv = DirectCast(Me.Controls("ListView" & i), ListView)
    updateListView(lv, ComboBox1.Items(i...
  22. Replies
    7
    Views
    1,352

    VS 2012 [RESOLVED] Iterating through objects

    Hi,

    How do i loop through objects with a counter? In this case the objects are listviews.



    Do While i <= serverCount
    updateListView(ListView + i, ComboBox1.Items(i - 1))
    Loop
  23. Replies
    2
    Views
    1,092

    Re: SOAP request (SYSORB)

    Nobody? Still trying to find a javascript that can request wsdl address and check availability?

    :blush::confused:
  24. Replies
    7
    Views
    1,445

    VS 2012 Re: Basic show msg while

    I hear ya... Can't figure it out though and googled for hours.

    The code for handling the service are in the main form. I created the progress bar form and can call it from the main form. How to...
  25. Replies
    2
    Views
    1,092

    [RESOLVED] SOAP request (SYSORB)

    Hi,

    I searched this forum and google but nothing on sysorb (network monitoring tool) + soap.

    I need a script that does a simple soap request on a specific IP + port and returns either 0 or 1...
  26. Replies
    7
    Views
    1,445

    VS 2012 Re: Basic show msg while

    I have created the form and added the progressbar but how to incorporate that into an event and use backgroundworker is not something i know. I just need some examples to understand the concept.
  27. Replies
    7
    Views
    1,445

    VS 2012 Re: Basic show msg while

    I like what you wrote, but don't know how to :)

    I tried the following:


    If svc.Status = ServiceControllerStatus.Stopped Then
    svc.Start()

    Do While svc.Status...
  28. Replies
    7
    Views
    1,445

    VS 2012 Basic show msg while

    Hi,

    I have finally succesfully created a GUI that can show and manage remote services + end corresponding process. Couldn't have done without any help from this forum.

    I'm stuck at a relative...
  29. VS 2012 Re: Fill comboxbox with data from XML upon startup

    Im sorry for the lesser intelligent question... again :duck::blush:

    buuut, when double clicking the form i get into the
    selectedindexchanged code. There is no where i can select which event to...
  30. VS 2012 Re: Fill comboxbox with data from XML upon startup

    Thank you for the quick responce and explaination. I added the combox via the form designer and don't have the combox form code?

    This is propably a lesser intelligent question, but how do i define...
  31. VS 2012 [RESOLVED] Fill comboxbox with data from XML upon startup

    Hi guys,

    I have a XML with a list of servers that needs to be loaded into a gui window as it loads.


    <?xml version="1.0" encoding="utf-8" ?>
    <Serverlist>
    <Servers>
    CPHBIOD1-TAP1
    ...
  32. Replies
    1
    Views
    704

    VS 2012 Kill task/process

    Does anybody know how to kill a task/process that corresponds to a specific service?

    Getting the service:


    Dim svc As ServiceController = New ServiceController(serviceName, remoteServer)

    I...
  33. Replies
    9
    Views
    2,049

    VS 2012 Re: Listview columns data loop

    Oh man. Thank so much.

    I works but the listview adds more empty columns. Please see attachment. Edit: Its because listview1.columns are named each time selectedindexchanged is called. Gotta name...
  34. Replies
    9
    Views
    2,049

    VS 2012 Re: Listview columns data loop

    I wrote a other answer a little above. Its because item1 is not outside of the loop.
  35. Replies
    9
    Views
    2,049

    VS 2012 Re: Listview columns data loop

    No the service exists. No doubt about it :)
  36. Replies
    9
    Views
    2,049

    VS 2012 Re: Listview columns data loop

    Thank you but then the item1 object is not known out of the loop.

    Calling
    ListView1.Items.AddRange(New ListViewItem() {item1}) after the loop but item1 is not known.
  37. Replies
    9
    Views
    2,049

    VS 2012 [RESOLVED] Listview columns data loop

    Hi,

    Trying to fill a listview with services. I succeded somewhat but can't figure out how to fill the listview with services in multiple columns.

    My code so far:



    Private Sub...
  38. Replies
    0
    Views
    536

    VS 2012 Managing remote services

    Hi,

    So, my scenario is that i need a tool (GUI) that can manage specific services with similar names on multiple remote servers (in the same domain). I am using Visual Studio 2012 for the job. I...
Results 1 to 38 of 38



Click Here to Expand Forum to Full Width