Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. SrikanthMc

    Sending HTML Formatted EMAILS from VB

    Ay, Change the bodytype or contenttype property to "text/html" for the mail object before u call the send method
  2. SrikanthMc

    minimizing application (like window system clock)

    If it is going to be a VB application set the windowstate property as minimized and refer to the window API call FlashWindow in ur code on the day when the birthday comes so that the user will know that its something special with the application on that day :)
  3. SrikanthMc

    Loading List box

    If Not objRec.EOF Then objRec.MoveFirst Do While Not objRec.EOF lstTitles.AddItem objRec!Job_Title lstTitles.ItemData(lstTitles.NewIndex) = objRec!titleid objRec.MoveNext Loop Here lsttitles is a listbox which has 2 list of values 1.Visible list with job_title column values...
  4. SrikanthMc

    help with loops

    Read from the random access file till the end of the file.See the pseudocode below // i is record number to be incremented i=1 Loop till end of file get #1, i , mytype //type should have name and number like // TYPE mytype // mynumb as int // myname as string * 25 // END...
  5. SrikanthMc

    intanciate a component with ASP.

    u dont need any special feature to instantiate a component in MTS which is different from IIS server. If if u want to instantiate a remote component with ASP see to that 1. while creating the component u check remote server files in project properties ,run dcomcnfg and click on default tab...
  6. SrikanthMc

    Browser timing out

    Actually to my knowledge any page should not take that much time to get loaded into the browser and i think there is a serious problem with the page.Please look through the codes in the page. 1. If u have any server.createobject("") please replace it with createobject 2. Dont use...
  7. SrikanthMc

    Mail was not delivered??

    Check whether ur server is under firewall and are u using CDONTS.newmail to send mail ?
  8. SrikanthMc

    data with quotes wrecks html/ap table

    use response.write ( server.htmlencode(rs("myfield")) ) and give a try
  9. SrikanthMc

    Is this even possible ????

    create an active-x control which does this sorting of data using vb events ,functions and scripting and then insert it as an object in the html page using <OBJECT> tag by specifying its class id.
  10. SrikanthMc

    communication between VB6 and SQLserver2000 with XML

    When u communicate with the sql 2000 from vb, select stmts in sql 2000 can end with FOR XML raw mode , exclusive mode and so on ...so that the output of the sql 2000 will be a well formed xml and this later can be loaded into a msxml document in vb to traverse the nodes. Srikanth

Part and Inventory Search

Back
Top