Sunday, 05 February 2012

The products listed above, and their associated names, icons and logos, are the intellectual property of Microsoft Corporation.
General Live Forums
This Forum Has Moved! Visit the New Forums Platform Today!
MSDN Forums: Live General - Microsoft has created a new forums platform (MSDN, TechNet, Expression, and Microsoft) with increased performance, stability, and an improved user experience. The forum you previously accessed has been moved to this new platform. To help you with this move, we have created a Sandbox forum, where you can create threads and try out functionality, and a suggestions forum where you can give us your feedback. Please take some time to go to these new forums today and let us know what you think:

Thank you for your continued support!

View article..

Forum Lockdown Notice
MSDN Forums: Live General - We are currently migrating this forum. Therefore we have disabled posting new threads and messages. Please be patient with us during this process. When migration is complete, this url will redirect to its new location.
View article..

Windows Live Hotmail not displaying embedded images correctly
MSDN Forums: Live General -

 

Good day all,

 

I am composing HTML emails manually (i.e. have an HTML email template that I plug variables into programmatically) and sending them out to their receipients. These HTML emails have embedded jpegs and gifs (

 

Gmail, Yahoo!, Windows Live Mail, and Outlook Express are ALL showing the emails correctly. Windows Live Hotmail, however, is not; if there is more than one embedded image in the email, all subsequent images display the first image and not what they are supposed to display.

 

I am at a loss and any suggestions would be greatly appreciated.

 

Cheers,

 

N. Farr


View article..

can't bring up Live Search Club
MSDN Forums: Live General -

 

Help!!

I was playing the games just fine yesterday and then last night when I tried to go on, I got an error message.  Today I'm getting the same error message.  See Below:

 

Server Error in '/' Application.

Runtime Error

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a tag within a "web.config" configuration file located in the root directory of the current web application. This tag should then have its "mode" attribute set to "Off".




    
        
    

Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's configuration tag to point to a custom error page URL.




    
        
    


View article..

How to disable or remove warning message in windows live messenger?
MSDN Forums: Live General -

 

How to disable or remove warning message "

Never give out your password or credit card number in an instant message conversation.

"

View article..

how to add a communication link
MSDN Forums: Live General -

Is it possible to add a microsoft communication forum to the following links

http://www.bestplanetsneakers.com

  • Nike Air Affliction High Top
  • Nike Air Affliction Low Top
  • Nike Alessandro Dell
  • A&F Rubber Flip Flops
  • Ato Matsumoto Cow Hide
  • Lacoste Carnaby Rs 2
  • Lacoste Zepher Micro R
  • Lacoste Protect Strap SC
  • Lacoste Observe Strap Mix
  • Nike Air Yeezy
  • Nike Court Force Low
  • Raf Simons Astronaut Pocket Trainer
  • Supra Muska Skytop
  • Bathing Ape Bape Sta
  • Corwn Christian Audigier
  • Stack Christian Audigier
  • Coogi Classic High Top 
  • Coogi Classic Low Top
  • Evisu Shoes
  • Nike Air Force 1 2007 With Light 
  • Nike Air Force 1 Low Top
  • Nike Air Force 1 2007
  • Puma Dacuti Panigale 
  • Puma Ferrari Future Cat 
  • Puma Kart Cat II 
  • Puma ouninpohja
  • Puma Satori
  • Puma SF Trionfo Lo II Ferrari
  • True Religion Brand Jeans Dallas low top
  • Adidas Shoes
  • Adidas 35th Anniversary City Series
  • Adidas Superstar 35th Anniversary Expression
  • Adidas NBA Superstar
  • Adidas 35th Anniversary Music Series
  • Adidas Superstar 35th Anniversary Consortium
  • Adidas Adicolor Black Series
  • Adidas Adicolor Century LoW Blue Series
  • Adidas Adicolor Century Low Green Series
  • Adidas Adicolor Century Low Red Series
  • Adidas Adicolor Century Low White Series
  • Adidas Adicolor Century Low Yellow Series
  • Adidas Campus 2007/2008 Season 
  • Adidas Country Shoes
  • Adidas Gazelle II
  • Adidas MMVII Pro Model Mid-Top
  • Adidas Superstar Shell Toe Trainers
  • Adidas Originals Superstar I 
  • Adidas Superstar I
  • Adidas Superstar II 2008
  • Adidas Superstar II Beijing Olympics 2008
  • Adidas Superstar Weave
  • Adidas/A Bape Ape Shell Toe Adidas Superstar 35th Anniversary Expressions

  • View article..

    help plz; error,"the message could not be sent to the SMTP server
    MSDN Forums: Live General -

    Im working on this application with ability to send E-mail with attachments in VB 6.0 enterprise edition,CDO is object i found best to use but i keep having this message error either 'the transport failed to connect to the server'.will anyone out there help me coz im running out of time before i submit it.the code im using is here  below

     

     

    Private Sub Command1_Click()
    Const cdoSendUsingMethod = "http://schemas.microsoft.com/cdo/configuration/sendusing"
    Const cdoSendUsingPort = 2
    Const cdoSMTPServer = "http://schemas.microsoft.com/cdo/configuration/smtpserver"
    Const cdoSMTPServerPort = "http://schemas.microsoft.com/cdo/configuration/smtpserverport"
    Const cdoSMTPConnectionTimeout = "http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout"
    Const cdoSMTPAuthenticate = "http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"
    Const cdoBasic = 1
    Const cdoSendUserName = "http://schemas.microsoft.com/cdo/configuration/sendusername"
    Const cdoSendPassword = "http://schemas.microsoft.com/cdo/configuration/sendpassword"

    Dim iConf As New CDO.Configuration
    Dim flds As ADODB.Fields
    Set flds = iConf.Fields
    With flds
        .Item(cdoSendUsingMethod) = 2
        .Item(cdoSMTPAuthenticate) = 1
        .Item(cdoSMTPServer) = "mail.myserver.com"
        .Item(cdoSMTPServerPort) = 25
        .Item(cdoSendUserName) = "testuser1@myserver.com"
        .Item(cdoSendPassword) = "testuser1"
        .Update
    End With
     
     'send an email
     Dim iMsg As New CDO.Message
     Set iMsg.Configuration = iConf
     iMsg.To = "email1@myserver.com"
     iMsg.Sender = "testuser1@myserver.com"
     iMsg.From = "testuser1@myserver.com"
     iMsg.Subject = "testing"
     iMsg.TextBody = "ndio testing"
     'imsg.AddAttachment ()
     iMsg.Send
     MsgBox "e-mail sent successfully!", vbInformation
     
    End Sub


    View article..

    Printing Emails
    MSDN Forums: Live General -

     

    When printing Emails from my desktop either from Outlook, Windows Live Mail or directly from Hotmail a message of only a couple of lines is spread over 5 or 6 pages with only  a line of text in the middle of each A4 sheet.

     

    Printing emails from my laptop is normal on same printer

     

    Anyone know what setting has become changed to do this?

     

    Running XP

     

    Thanks


    View article..

    please help me!!
    MSDN Forums: Live General -

    i love playing the game word duel. but i have a lot of trouble getting on the site sometimes. it says login but it never pulls it up all it does is blinks over and over . it is very fustrating because i am really addicted to the games. it happens a lot after you cash in tickets.


    View article..

    What is the difference between VB script and Java script?
    MSDN Forums: Live General - Which one is the better tool for client side validation? I am using java script .Can any one suggests which one is the better?

    NJ website development


    View article..

    PreviousNext
    Copyright 2009. Sponsored by nsquared.   |  Terms Of Use  |  Privacy Statement
    Content on this site is generated from the developer community and shared freely for your enjoyment and benefit. This site is run independently of Microsoft and does not express Microsoft's views in any way.