Search results for query: *

  • Users: sisquo76
  • Content: Threads
  • Order by date
  1. 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
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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!
  7. S

    Question Form BackgroundImage position

    Hi all, is there a way to put image in lower right corner of form by using BackgroundImage? sisquo76
  8. 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...
  9. 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...
  10. 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...
  11. S

    Question Another Stopwatch Class (framework 3.5) question

    Is it possible to trigger event whenever seconds on stopwatch change (that means every second, but it has to be synchronized with seconds)? Thanks, sisquo76
  12. S

    Question Multiple selection ListBox click order

    Please, I need help. How would I display list items from multiple selection listbox in order they are clicked? Thanks?
  13. S

    Question Stopwatch Class NET Framework 3.5

    I have question regarding Stopwatch Class. Is there an easy way to display more than 59 minutes on stopwatch? Here is my code: Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick Dim strMinutes As String Dim strSeconds As...
Back
Top