Search results for query: *

  1. S

    text file security

    Ace stuff guys, thanx a ton! :)
  2. S

    about Emailing

    I'm developing a Mass Mailing tool for the office using VB.NET. I'm using the SMTP protocol to send mails using System.Web.Mail & the MailMessage class. The text emails are going fine. But I am facing a problem when I try mailing flyers. The flyers are developed in MS Word. Since it's got...
  3. S

    ip question

    like Manic above said, for writing/reading data on the network, to or from a database or files in specific folders on specific machines, you DO NOT need any kind of network configuration at application level. The Network configurations are normally done at the OS level on almost all machines...
  4. S

    Remoting to a database

    perhaps u should paste the server/client & application code. only then some guesses can be made. Becoz above it says "internal error". Why don't u turn on the CustomErrors in the server config file. also u could put all ur code in try-catch blocks & trap the errors thown & display them in a...
  5. S

    file copying on LAN

    thanx a lot, have gotten started. Have worked my way through all directories & all files within those directories. Have also found way to check DateModified. But I now need to actually work out the file copying part, any ideas? Thanx a ton sevenhalo. & yes the directory structure will be...
  6. S

    file copying on LAN

    I need to develop an application that will run on a client machine & copy files from a specific folder on the server. But there are 2 small things: 1. All files within the folder & sub-folders need to be copied. 2. A check needs to be done to see the DateModified property of the files already on...
  7. S

    multi-line MsgBox with some lines centred?

    Yeah sevenhalo is right, u'll have to build ur own custom control (a messagebox in this case) & expose the align property of the label item u'll use to center the text to be displayed.
  8. S

    How to call a form from another from's button click event?

    basically it depends on the usage of the variable, like Juggalo said. Ideally u should declare those variables at the top (global for project) only if u really need to access their values in various sections of the project. But if the variable is local to a specific sub or event then its better...
  9. S

    how to get a textbox.text from another form?

    if both forms are in same project then the easy way out is to declaring a variable at global level (above & out of both form classes) & save value of 1st form textfield to variable. When u load the 2nd form from the 1st, then retrive the value from the same variable in second form.
  10. S

    Retrieving a single value from a dataset

    u can use something like: dataAdapter.Fill(dataSet) valueHolder = dataSet.Tables(0).Rows(rownum)(col) where rownum will be the Row Number where the value is located & col is either the column number or column name. Also you can replace Tables(0) with Tables(tableName).
Back
Top