Search results for query: *

  • Users: bfsog
  • Order by date
  1. B

    Using FtpWebRequest to download a file from ftp server

    While I appreciate that this is primarily a VB.NET website, ASP.NET is not tied to one language. But thanks, if it helps people provide a solution then its all good.
  2. B

    Using FtpWebRequest to download a file from ftp server

    Hello. I am trying to download a file which is on an FTP Server. Lets say I own Website A and Website B. In Site A in a folder named foobar I have a file named download.aspx and in that file I want to have code that downloads a file in Website B called lorem.txt I want the file to be saved...
  3. B

    Datagrid not updating with the correct data returned

    I have a form with a datagrid and on form load a datagrid is populated with data, this works. Then I have some code in an event handler which changes the data in the datagrid, this data is also retrieved from the database, this works. But then I have another event handler with some database...
  4. B

    Listview: starting process and populating correct value

    [resolved] Listview: starting process and populating correct value This really is not a listview issue, although both stem from using a ListView. First problem: I am creating a file search tool and I want the files returned to be double clickable. When a ListViewItem is double clicked I want...
  5. B

    creating line graphs

    Hey, Are there any controls that make produce line graphs? I have done some digging, and found it's common to use a PictureBox. Next question, are there any well known chart creating classes, the examples that I have found online are very code heavy, My requirement is to give the...
  6. B

    send message to msn client

    send message to msn contact Hey. First off I do not know if this is the right place to post as I do not know what it is called. What I am stuck on is having an application, which sends a message (of my choice) to a contact on my msn messenger list, when they sign in. The application does not...
  7. B

    Printing a datagrid

    Hi. A friend is struggling to get this to work. I am using this: http://www.codeproject.com/vb/net/DataGrid_Printing_Class.asp He has checked and the correct information gets passed through the function but a blank page is printed. Also the print preview shows nothing.. Its in the form...
  8. B

    Creating module for others

    Thanks kulrom.
  9. B

    Creating module for others

    Hey. Lets say I create a sample project, which has 2 modules in it. One defines global variables, and the other includes 5 functions. Lets say I want to put these 2 modules in a .zip/.rar file for others to use. 1: Do I just include the module files, or are there other files that the module...
  10. B

    upload images through FTP

    1: get ftp client, like cuteftp, file zilla, i think windows has one? 2: get your ftp info. you will need your host, normally ftp.yourdomain.ext (extension) 3: you should have a username and a password You would enter them into your ftp program and then depending on your ftp program what...
  11. B

    Printing a word file

    Thanks for your help guys. Interesting point jmcilhinney.
  12. B

    beginners guide to creating components

    Hi. Am I right in assuming that if I developed a component, other developers could use it? And how do I go about creating a component? And how do I link/call this component from a project? Thanks in advance for any info on these subjects.
  13. B

    Help with a link problem

    I am unsure if that will work as I think ss7thirty is talking about a visual basic.net app Process.start("http://yourhelppage.com")
  14. B

    Printing a word file

    Hi guys. Is it possible to print a word file (.doc) using VB.NET? The file does not have to be opened on the form. Preferably the file will print on a button_click event. Thanks in advance
  15. B

    Get a max value from a column

    Hey. I am trying to return a value from a column if it is the highest value in all rows. However, if there is 2 or more rows with the same max value, I use a for loop to extract that rows Name (Name is a column) But.. iMaxBreaks is always 0. So it only returns rows that the column...
  16. B

    tooltip in vb.net

    No, your right, the property is not added to the property list once you add the ToolTip component. How to: 1: Drag a ToollTip onto your form 2: Double click the form (so that your in the form_load event) 3: Paste in this code and change it to suit your needs ToolTip1.SetToolTip(txtFullName...
  17. B

    query in searching a word or a phrase in access

    Use the SQL command LIKE in a WHERE clause. This code will search a column called product_desc for any values that contain the word "electronic" Me.OleDbSelectCommand.CommandText = "SELECT * FROM table_name WHERE firstname LIKE '%electronic%'" However, lets say you wanted to return words that...
  18. B

    Filtering Form

    If you use radio buttons (such as search by id and search by customer, this easy. What I do is set a Public variable, such as sSearchBy Then, you check which radio button is checked... If rbtnSearchById.checked = true Then sSearchBy = "id" Else sSearchBy = "cust" End If ' open frmInfo here...
  19. B

    Create Queries

    A little vague, but I guess you mean how to string together a query while a progrm is running? One way, would be to have some textboxes, such as one for table name, one for which rows to select, and maybe an optional where clause? For select at least. Then you would have a click event on a...
  20. B

    complex select statement help...

    Ah, I message boxed out that, and the messagebox includes the time, however in my column, it is only the date, such as 01/06/2005 How do i get that format in vb.net? Right now I do 'Get the first day of the current month. startDate = Date.Today.AddDays(1 - Date.Today.Day) 'Get the last...
Back
Top