Search results for query: *

  1. S

    Question Get filenames from web server folder

    Thank you for your response.
  2. S

    Question Get filenames from web server folder

    Is it possible to get all filenames (for example *.zip) from folder on a web server? Thanks, sisquo76
  3. S

    Question Check if file transfer via FTP is finished

    I don't think FileSystemWatcher can determine when file transfer via FTP is finished, but thank you for reply.
  4. S

    Question Check if file transfer via FTP is finished

    Hi, I am not doing it in .NET code, FTP server is stand alone. I'm just trying to find a proper way to check if file transfer is completed so my application can move it to different location since FTP server does not lock the file during file transfer.
  5. S

    Question Check if file transfer via FTP is finished

    Hi all, I am using Filezilla Server to transfer files to a folder from which I need to move transferred file (when completed). The problem is that even if file transfer is in progress it is not locked (I am able to move file to different location). I am thinking to wait some time and check the...
  6. S

    Question Consuming WebService in windows forms application

    thank you. i thought there was an easier way to do this just didn't know how to work with datasets... Sent from my GT-S5570 using Tapatalk 2
  7. S

    Question Consuming WebService in windows forms application

    I added web reference to a project. Web Service has GetCountries web method and returns DataSet. I need those data in listbox. I figured how to do this, but i wonder is this a proper way? Public Class Form1 Private Sub Form1_Load(sender As Object, e As System.EventArgs) Handles Me.Load...
  8. S

    Question HttpWebRequest Question

    Sorry about late response. I did it like you said and it works. Thanks. I am logged in and redirected to /home.htm how to load /thsens.htm since I am logged in, because I want to extract data from that page? Regards
  9. S

    Question HttpWebRequest Question

    Dear all, I am connecting to web interface of a device which has username and password to authenticate. I managed to authenticate and load source of HTML page which i need. I need it to extract some data out of it. My code is as follows: Imports System.Net Imports System.Text Imports...
  10. S

    Question XML Parsing Error - Escaping Characters

    At the end I did it the way you said (string manipulation), because I realized that this wasn't proper XML document. Thanks anyway.
  11. S

    Question XML Parsing Error - Escaping Characters

    Hi all, How can I replace illegal characters inside XML tags with legal ones eg. & with & etc. My code is like this: Imports System.Security Imports System.Xml Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click...
  12. S

    Question Create ms report, passing 2 parameters to a stored procedure

    Hi everyone, How can I achieve this, anyone, please? I have stored procedure on SQL Server 2008 Express and I need to pass 2 parameters @date1 and @date2 so I can build my report. Thanks!
  13. S

    Question Form BackgroundImage position

    Hi all, is there a way to put image in lower right corner of form by using BackgroundImage? sisquo76
  14. S

    Question Moon Lander

    Well, thank you very much, solution was so simple and I was studying physics again to do that :P
  15. S

    Question Moon Lander

    Hello, I am working on a small game, Moon Lander and I figured how to make rocket falling from the top of the panel which is on the form. I want to have fuel burning feature so I can land rocket properly on the bottom of the panel. Here is the code so far: Public Class Form1 Dim G As...
  16. S

    Question Multiple forms open and close

    Wow, that was fast. Thank you very much John! sisquo76
  17. S

    Question Multiple forms open and close

    Hello, I have two forms frmMain and frmNew, and one module modMain. In modMain I hold public variables which are needed for application. My question is how to open and close those two forms when needed? I ask this because if i set frmMain as startup form, then when closed, application will end...
  18. S

    Question use two monitors

    Hello all, is there a way to make application in VB.NET which will be able to work in two monitor (dual-head graphic cards) environments. For example, on first monitor windows form is displayed which is used to control what is happening on second (full screen graphics or video). Is it possible...
  19. S

    Question Multiple selection ListBox click order

    Thanks John, that's it.
  20. S

    Question Another Stopwatch Class (framework 3.5) question

    Ok, this is the problem. I have this code Public Function GameTime() As String Try Dim iMinutes As Integer = Int(Stopwatch.Elapsed.TotalMinutes) iMinutes += iAdditionalTime Dim sMinutes As String = iMinutes.ToString("##0") Dim sSeconds As...
Back
Top