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 bkrike 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. 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

    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...
  6. 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...
  7. 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 =...
  8. 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...
  9. awesomebeats

    runtime error with dhtml js

    i'm using dreamweaver and i have a extension that makes the following code for a dhtml layer scroll thing, however, i get an error with line 26, a runtime error. it asks if i want to debug, if i hit refesh everything works. here's the code. the code in red it line 26 that's causing the error...
  10. awesomebeats

    closing pop-up windows

    i'm using this code to try to redirect a window named 'active'. i get an error saying 'active' is undefined. my resources say i should be able to refer to the window by its name. if (active.closed) { top.location=&quot;../index.cfm&quot;; } else { active.location=&quot;close.cfm&quot;; }...
  11. awesomebeats

    help really advanced application level variable structure stuff (you g

    Alright, ya'll are going to love this one. I want to have an array that tells what users are logged in and out of my application at any given moment, so that I can eventually prevent multiple logins (yes I’m still on this same problem). I think from what I’ve been told I need to use an...

Part and Inventory Search

Back
Top