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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by awesomebeats

  1. awesomebeats

    keypress

    hello, i was wondering how I can command something to happen if a key is pressed. is there some way to do it without creating a whole new private sub for it? im scared that it will either be too early in the code or too far down and will miss the animation i want to skip. any ideas?
  2. awesomebeats

    Splash Page

    Hello, i have a splash page in my program. that has some simple animation. pictures move and explode to the toolbar. but I was wondering how to make it so that if someone presses Enter, then it will skip to the end of the animation? This is what is going on with it right now....should i just...
  3. awesomebeats

    Multiple Attachments

    how do I program VB so i can have more than one attachment in my email? as of now here is what i have, this works for only one attachment. Private Sub btnAttach_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAttach.Click...
  4. awesomebeats

    CC field

    is there a way to get an email to send with a CC field? instead of just sending what is in the To field will it also send to a CC field?
  5. awesomebeats

    Send an email using the DEFAULT MAIL CLIENT

    where can I find the winsock control?
  6. awesomebeats

    Send an email using the DEFAULT MAIL CLIENT

    Dim myEmail As Object Dim myEmailNS As Object Dim myEmailMessage As Object myEmail = CreateObject("Outlook.Application") myEmailNS = myEmail.GetNamespace("MAPI") thats the top of the code... if you notice on the 4th line it says "Outlook.application" is there...
  7. awesomebeats

    Send an email using the DEFAULT MAIL CLIENT

    yes what your saying is right. but assuming they dont have outlook installed, thats what i need to assume. how do i use something universal or bring up their default mail client? how do i use winsock and what is it? or is it easier to program it to use their default mail client?
  8. awesomebeats

    Send an email using the DEFAULT MAIL CLIENT

    no i mean what if they dont have outlook set as their default mail client, as of now it automatically pops up outlook but if thats not the default how do i call that? or will it automatically do it?
  9. awesomebeats

    Send an email using the DEFAULT MAIL CLIENT

    i'm wondering the best way to send an email using Visual Basic, but not where it automatically pops up Outlook. I want it to bring up their default mail client instead of automatically using Outlook, right now I have it so it brings up outlook, whats the best way to make it for the Default Mail...
  10. awesomebeats

    When I try to execute this simple p

    wow thanx a lot guys that really worked i used that last piece of code suggested and it ran fine. i had to give some permissions to the db for the internet user account and give it write persmisssions but it worked. thanx a lot guys! awesomebeats
  11. awesomebeats

    When I try to execute this simple p

    Ok wait, so I can't do any sql or basically any db stuff without installing SQl server? And why can't I just use the DNS name, I'll try with this file path thingy, thanx? Gosh no wonder I've never done asp, so confusing. Lol, thanx for the help. awesomebeats
  12. awesomebeats

    When I try to execute this simple p

    When I try to execute this simple piece of code in asp I get an access error. I know no other user is using the db so why can't asp access the db. I tried it without the username and password and it still didn't work. <% set conn = Server.CreateObject(&quot;ADODB.Connection&quot;) conn.open...
  13. awesomebeats

    I really need help with this CFSchedule (really really)

    I checked the log and this is what I get: &quot;Error&quot;,&quot;968&quot;,&quot;08/27/02&quot;,&quot;09:29:22&quot;,,&quot;Status code for task: 'golive' is '401 Unauthorized'&quot; I guess Win2000 is doing somehting I don't know, do you? I'll try with the file and publish attributes but I...
  14. awesomebeats

    I really need help with this CFSchedule (really really)

    Alright here's want I want to do. I simply want to have a scheduled event where the admin's can update the time at which it runs. So I have this code, eventually the start time and date will be taken from a db: <cfschedule action = &quot;update&quot; task = &quot;golive&quot; operation =...
  15. awesomebeats

    Displaying XML ENTITY's in Flash (or at least grabing it)

    Hey, I use the following actionscript to grab some xml from a file and display is contents. The problem is that this node contains and entity call &text; and flash displays &quot;&text;&quot; not the value of the entity. How can I make flash display the value of the entity? Here's my script in...

Part and Inventory Search

Back
Top