Search results for query: *

  1. suddenelfilio

    line feeds in email using vb.net and iframes

    why not replace the vbcrlf with the <br/> tags?
  2. suddenelfilio

    SQL 2000 File Uploads

    I'm not really sure what you mean but if you want to store files in a sql server db you should the binary or image datatype
  3. suddenelfilio

    No net connection

    Just put a try catch around it for example create a seperate function: public function IsInternetConnected() as boolean try 'do the request using webrequest, if it passes no exception will be thrown return true catch ex as exception return false end try end function
  4. suddenelfilio

    Loading assembly

    well actually the name you need is: -.net 2.0: System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - .net 1.1: System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 So you can use the public key token to load an assembly, I've created a small...
  5. suddenelfilio

    Error in SELECT clause: expression near '['

    It would be helpful if you could post the select statement
  6. suddenelfilio

    No net connection

    use the System.Net.HttpWebRequest class to make a request to a known site like google or yahoo. If the request can't be made use errorhandling to trap the exceptions
  7. suddenelfilio

    does VB.Net support hash?

    Yes the System.Security.Cryptography namespacecontains various classes to create hashes
  8. suddenelfilio

    substring from a string

    Sub Main() Dim str As String = "#1XYZXYZ#1#2UVWUVW#2#1AAABBBED#1#1SSSSWDWD#1" Dim spl As String() = str.Split("#") Dim sb As New Text.StringBuilder For Each s As String In spl If Not s.StartsWith("2") Then sb.Append(s.Trim("1"))...
  9. suddenelfilio

    Object Reference is not set to an instance of an object

    there's always the possibility that send me a copy your code so I can step through it... but due to my work I'm not sure of how fast I can do this
  10. suddenelfilio

    Object Reference is not set to an instance of an object

    Euhm I'm guessing that the last iteration is to high let's say you've got a string called "teststring" which is 10 characters long so if you want to iterate you will have the indexes from 0 to 9 Let's say that should I try index 10 I will get an IndexOutOfRangeException.
  11. suddenelfilio

    automatically insert in the database

    you can use the filesystemwatcher class to monitor for new files and then use ADO.NET to insert the file into the database
  12. suddenelfilio

    DTS SQL to Excel(overwriting existing file)

    no you can't say overwrite, but you can add an execute process task that you give the dos command to delete the file. This way the new file will be created at the transformation
  13. suddenelfilio

    Iis 5.1 capacity

    Ofcourse it's okay. It can handle even more than that
  14. suddenelfilio

    setting up a mailbox

    you'll probably want some mail hosting for this...
  15. suddenelfilio

    Programmatically getting values from IIS

    server.mappath(virtualdir) will return the physical path
  16. suddenelfilio

    IIS Problem

    I do think you've got an apache installed and it locking port 80 so IIS can't access it. Do you have any programs running that have a web enabled interface?
  17. suddenelfilio

    Error creating new ASP.NET project

    are sure the iis is serving any pages at all?
  18. suddenelfilio

    Server Error in '/' Application.

    change the web.config file were it says customErrors mode="RemoteOnly" to customErrors mode="Off" this way you'll get a detailed description of your exception, don't forget to turn it back when finished!!
  19. suddenelfilio

    Method to Find out how many times a page has been VIEWED/VISITED

    you could create an application variable to use a counter and implement some counting logic inside the global.asax where there is a method that catches everytime a new session is started. This solution is very primitiva and once the application is restarted/recycled the counter will be zero again.
  20. suddenelfilio

    change the font size of ErrorProvider's quickinfo

    Since this is a tooltip I'm not sure that you can change this without using win32 api's
Back
Top