Jul 7, 2008

Help Needed

Free Web Hosting, No Ads > CONTRIBUTE > Computers > Programming Languages > VB Programming

free web hosting

Help Needed

John_Cena
Hello guys...I made a program but when i run it i get a debug because i put the wrong timers action i tried to change it but still:

Private Sub Form_Load()
Let lblTime.Caption =
Let Timer1.Enabled = True
Let Timer2.Enabled = False
End Sub

Can anybody tell me how to put the timers auction on the second line?

Reply

Galahad
QUOTE(John_Cena @ Apr 7 2005, 06:27 AM)
Hello guys...I made a program but when i run it i get a debug because i put the wrong timers action i tried to change it but still:

Private Sub Form_Load()
Let lblTime.Caption =
Let Timer1.Enabled = True
Let Timer2.Enabled = False
End Sub
...


OK, first of all, following piece of code
CODE
Let lblTime.Caption =
will produce run-time error... You need to assign some value to Caption, like
CODE
Let lblTime.Caption = "" ' This will set Caption to empty string

I don't know what you are doing in Timer events, but this is the only error in this piece of code... This has nothing to do with Timer actions, it's just a syntax error...

A little tip: You can leave out Let statement, it really has no function anymore. Your code would then look like this:
CODE
Private Sub Form_Load()
lblTime.Caption = ""
Timer1.Enabled = True
Timer2.Enabled = False
End Sub

 

 

 


Reply

OpaQue
Thanks for the reply Galahad.. :-)

John, Please make the topic names more resonable. They should describe the contents of your post. It helps us to rank at search Engines.

Reply

John_Cena
i will biggrin.gif

I still get the debug. I tried everything but nothing

Here is the code:

Private Sub Form_Load()
lblTime.Caption = ""
Timer1.Enabled = True
Timer2.Enabled = False
End Sub

Private Sub txtStatus_Change()
If frmMain.WindowState = 1 Then
Let Timer2.Enabled = True
Else
Let Timer2.Enabled = False
Let frmMain.Caption = "AdCache Remover"
End If
End Sub

Private Sub cmdQuit_Click()
End
End Sub

Private Sub Timer1_Timer()
Let lblTime.Caption = Str((lblTime.Caption) + 1)
Let lblStatusTime.Caption = Str((lblStatusTime.Caption) + 1)
On Error Resume Next
x% = Len(Dir$("c:\Windows\System\AdCache\*.*")) 'If you have a different directory for the AdCache change it.
If Err Or x% = 0 Then fileexists = False Else fileexists = True
If lblTime.Caption = 1 Then
If fileexists = True Then
Kill ("C:\Windows\System\AdCache\*.*") 'If you have a different directory for the AdCache change it.
Let txtStatus.Text = "Deleting AdCache"
Let lblTime.Caption = 0
Else
Let txtStatus.Text = "Removing"
Let lblTime.Caption = 0
End If
End If
If lblStatusTime.Caption = 1 Then
Let txtStatus.Text = txtStatus.Text & "."
ElseIf lblStatusTime.Caption = 2 Then
Let txtStatus.Text = txtStatus.Text & ".."
ElseIf lblStatusTime.Caption = 3 Then
Let txtStatus.Text = txtStatus.Text & "..."
ElseIf lblStatusTime.Caption = 4 Then
Let txtStatus.Text = txtStatus.Text & "...."
ElseIf lblStatusTime.Caption = 5 Then
Let txtStatus.Text = txtStatus.Text & "....."
ElseIf lblStatusTime.Caption = 6 Then
Let txtStatus.Text = txtStatus.Text & "......"
ElseIf lblStatusTime.Caption = 7 Then
Let txtStatus.Text = txtStatus.Text & "......."
ElseIf lblStatusTime.Caption = 8 Then
Let txtStatus.Text = txtStatus.Text & "........"
ElseIf lblStatusTime.Caption = 9 Then
Let txtStatus.Text = txtStatus.Text & "........."
ElseIf lblStatusTime.Caption = 10 Then
Let txtStatus.Text = txtStatus.Text & ".........."
ElseIf lblStatusTime.Caption = 11 Then
Let txtStatus.Text = txtStatus.Text & "..........."
ElseIf lblStatusTime.Caption = 12 Then
Let txtStatus.Text = txtStatus.Text & "............"
ElseIf lblStatusTime.Caption = 13 Then
Let txtStatus.Text = txtStatus.Text & "............."
ElseIf lblStatusTime.Caption = 14 Then
Let txtStatus.Text = txtStatus.Text & ".............."
ElseIf lblStatusTime.Caption = 15 Then
Let txtStatus.Text = txtStatus.Text & "..............."
ElseIf lblStatusTime.Caption = 16 Then
Let txtStatus.Text = txtStatus.Text & "................"
ElseIf lblStatusTime.Caption = 17 Then
Let txtStatus.Text = txtStatus.Text & "................."
ElseIf lblStatusTime.Caption = 18 Then
Let txtStatus.Text = txtStatus.Text & ".................."
ElseIf lblStatusTime.Caption = 19 Then
Let txtStatus.Text = txtStatus.Text & "..................."
ElseIf lblStatusTime.Caption = 20 Then
Let txtStatus.Text = txtStatus.Text & "...................."
ElseIf lblStatusTime.Caption = 21 Then
Let txtStatus.Text = txtStatus.Text & ""
Let lblStatusTime.Caption = 0
End If
End Sub

Private Sub Timer2_Timer()
Let lblCaptionTime.Caption = Str((lblCaptionTime.Caption) + 1)
If lblCaptionTime.Caption = 2 Then
Let lblCaptionTime.Caption = 0
End If
If lblCaptionTime.Caption = 0 Then
Let frmMain.Caption = "AdCache Remover"
ElseIf lblCaptionTime.Caption = 1 Then
Let frmMain.Caption = txtStatus.Text
End If
End Sub

Reply

Argoth
I believe that this should work. Couple things I noticed, first you set the caption of you label to "" thus the functions that depended on that value wouldn't work. Next the LET is not necessary and the LONG if...elseif...endif statement was WAY too long, I replaced it with something I think should do the same trick. I might have messed up a few of the controls names....

CODE

Private Sub Form_Load()
lbltime.Caption = "1"
Timer1.Enabled = True
Timer2.Enabled = False
End Sub

Private Sub txtStatus_Change()
If frmmain.WindowState = 1 Then
   Timer2.Enabled = True
Else
   Timer2.Enabled = False
   frmmain.Caption = "AdCache Remover"
End If
End Sub

Private Sub cmdQuit_Click()
End
End Sub

Private Sub Timer1_Timer()
lbltime.Caption = Str((lbltime.Caption) + 1)
lblstatustime.Caption = Str((lblstatustime.Caption) + 1)
On Error Resume Next
x = Len(Dir$("c:\Windows\System\AdCache\*.*")) 'If you have a different directory for the AdCache change it.
If Err Or x = 0 Then fileexists = False Else fileexists = True
If lbltime.Caption = 1 Then
   If fileexists = True Then
       Kill ("C:\Windows\System\AdCache\*.*") 'If you have a different directory for the AdCache change it.
       txtstatus.Text = "Deleting AdCache"
       lbltime.Caption = 0
   Else
       txtstatus.Text = "Removing"
       lblstatustime.Caption = 0
   End If
End If
If lblstatustime.Caption = 21 Then
   txtstatus.Text = txtstatus.Text & ""
   lbltime.Caption = 0
Else
   txtstatus.Text = String(lblstatustime.Caption, ".")
End If
End Sub

Private Sub Timer2_Timer()
Let lblCaptionTime.Caption = Str((lblCaptionTime.Caption) + 1)
If lblCaptionTime.Caption = 2 Then
   lblCaptionTime.Caption = 0
End If
If lblCaptionTime.Caption = 0 Then
   frmmain.Caption = "AdCache Remover"
ElseIf lblCaptionTime.Caption = 1 Then
   frmmain.Caption = txtstatus.Text
End If
End Sub




If you need help (Or I screwed this up) just ask me, also remember to put you code within the code tags so you aren't docked posting points. The code tags are "[ CODE ]" to start the code section and "[ /CODE ]" to end the code. Without the spaces and quotes of course... biggrin.gif

Reply

John_Cena
I get a debug on this:

CODE
lbltime.Caption = "1"

Reply

Galahad
It would help us if you tell us what specific error you get... If you get an error at that line, I guess you don't have Label object with that name. Maybe you spelled it differently or something... Try to be more descriptive in your posts, we will be able to help you quicker smile.gif

Reply

ARNEL
QUOTE(John_Cena @ Apr 8 2005, 09:52 AM)
i will biggrin.gif

I still get the debug. I tried everything but nothing

Here is the code:

Private Sub Form_Load()
lblTime.Caption = ""
Timer1.Enabled = True
Timer2.Enabled = False
End Sub

Private Sub txtStatus_Change()
If frmMain.WindowState = 1 Then
Let Timer2.Enabled = True
Else
Let Timer2.Enabled = False
Let frmMain.Caption = "AdCache Remover"
End If
End Sub

Private Sub cmdQuit_Click()
End
End Sub

Private Sub Timer1_Timer()
Let lblTime.Caption = Str((lblTime.Caption) + 1)
Let lblStatusTime.Caption = Str((lblStatusTime.Caption) + 1)
On Error Resume Next
x% = Len(Dir$("c:\Windows\System\AdCache\*.*")) 'If you have a different directory for the AdCache change it.
If Err Or x% = 0 Then fileexists = False Else fileexists = True
If lblTime.Caption = 1 Then
If fileexists = True Then
Kill ("C:\Windows\System\AdCache\*.*") 'If you have a different directory for the AdCache change it.
Let txtStatus.Text = "Deleting AdCache"
Let lblTime.Caption = 0
Else
Let txtStatus.Text = "Removing"
Let lblTime.Caption = 0
End If
End If
If lblStatusTime.Caption = 1 Then
Let txtStatus.Text = txtStatus.Text & "."
ElseIf lblStatusTime.Caption = 2 Then
Let txtStatus.Text = txtStatus.Text & ".."
ElseIf lblStatusTime.Caption = 3 Then
Let txtStatus.Text = txtStatus.Text & "..."
ElseIf lblStatusTime.Caption = 4 Then
Let txtStatus.Text = txtStatus.Text & "...."
ElseIf lblStatusTime.Caption = 5 Then
Let txtStatus.Text = txtStatus.Text & "....."
ElseIf lblStatusTime.Caption = 6 Then
Let txtStatus.Text = txtStatus.Text & "......"
ElseIf lblStatusTime.Caption = 7 Then
Let txtStatus.Text = txtStatus.Text & "......."
ElseIf lblStatusTime.Caption = 8 Then
Let txtStatus.Text = txtStatus.Text & "........"
ElseIf lblStatusTime.Caption = 9 Then
Let txtStatus.Text = txtStatus.Text & "........."
ElseIf lblStatusTime.Caption = 10 Then
Let txtStatus.Text = txtStatus.Text & ".........."
ElseIf lblStatusTime.Caption = 11 Then
Let txtStatus.Text = txtStatus.Text & "..........."
ElseIf lblStatusTime.Caption = 12 Then
Let txtStatus.Text = txtStatus.Text & "............"
ElseIf lblStatusTime.Caption = 13 Then
Let txtStatus.Text = txtStatus.Text & "............."
ElseIf lblStatusTime.Caption = 14 Then
Let txtStatus.Text = txtStatus.Text & ".............."
ElseIf lblStatusTime.Caption = 15 Then
Let txtStatus.Text = txtStatus.Text & "..............."
ElseIf lblStatusTime.Caption = 16 Then
Let txtStatus.Text = txtStatus.Text & "................"
ElseIf lblStatusTime.Caption = 17 Then
Let txtStatus.Text = txtStatus.Text & "................."
ElseIf lblStatusTime.Caption = 18 Then
Let txtStatus.Text = txtStatus.Text & ".................."
ElseIf lblStatusTime.Caption = 19 Then
Let txtStatus.Text = txtStatus.Text & "..................."
ElseIf lblStatusTime.Caption = 20 Then
Let txtStatus.Text = txtStatus.Text & "...................."
ElseIf lblStatusTime.Caption = 21 Then
Let txtStatus.Text = txtStatus.Text & ""
Let lblStatusTime.Caption = 0
End If
End Sub

Private Sub Timer2_Timer()
Let lblCaptionTime.Caption = Str((lblCaptionTime.Caption) + 1)
If lblCaptionTime.Caption = 2 Then
Let lblCaptionTime.Caption = 0
End If
If lblCaptionTime.Caption = 0 Then
Let frmMain.Caption = "AdCache Remover"
ElseIf lblCaptionTime.Caption = 1 Then
Let frmMain.Caption = txtStatus.Text
End If
End Sub
*



John_cena just try to check your code under Timer1 function...
and also when you do coding you can indent each block of codes for you to be able to trace easily the code especially those syntax error. your code are almost done it just a miss matched of using "IF" and "END IF" command...


Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Similar Topics

Keywords : needed

  1. Arrays And List Boxes
    VB6 Codes needed (2)
  2. Windows Update
    Is it really needed for me? (7)
    I am now running on Windows XP. I'm confused whether to use and install Windows Updates or not.
    My friends and some local IT support said that I do not need them. But many tech site suggests them
    to be installed. Here is my situation : I only use this PC to browse internet, download files,
    using P2P software, play games and other activity that doesn't require internet. I never use
    wireless internet, my PC is not linked to another PC (workgroup). Do I really need Windows Update at
    all? Untill now, I never experienced any crash or something without those updates. ....
  3. Tutorial Needed?!
    PHP+Ajax (11)
    I need many tutorials based on PHP programming language and AJAX technology. Those tutorials might
    be of any kind. Please post only the links to the trusted and working tutorials!....
  4. Photoshop Help Needed
    (3)
    Hey guys, sorry for bothering you with such a silly doubt but I'm new to photoshop so i dont
    know much about it. I'd like to know how to use renders in photoshop and how to cut and paste
    one pic over another ( one pic is a scene of the sun setting while the other one is a pic of my
    friend.) How do i paste the pic of my friend on the sunset scenery so it looks as though my friend
    was actually there in that place when the sun was setting???? I'd really appreciate it if you
    someone helps me out with this... /smile.gif" style="vertical-align:middle" emoid=":)....
  5. Writers Needed
    (6)
    hello friends i need 2-3 writers to work under me in your free time. please pm me for further
    details. i hope this thing is not banned over here. if it is mod please close this thread. Reply
    fast its urgent thanks....
  6. Help Needed To Activate My Addon Option In My Cpanel
    (0)
    I request the Admin to kindely activate the addon domain options in my hosting cpanel. I read it the
    forum that i need to post the request here to ask help from the admin for activation. Plz activate
    my addon option. my id is "vijeth" ....
  7. Challenge Writer Needed
    (0)
    I do like to save up credits and give them away to different members, but I am terrible at coming up
    with the challenges that members must answer to get the credits. If anyone wants to post different
    difficult, but not impossible challenges for members to answer I will supply the credits for the
    winner. Any member (hosted or non hosted) who can come up with difficult and creative challenges
    can apply here. You don't need to be hosted because I can send the winning credits directly to
    the winner (the winner needs to be hosted of course). And when I accumulate enou....
  8. Graphs, Charts, Diagrams
    Software Needed?! (6)
    I need software that is easy and convenient to use. I'm currently working with my professor
    under one project specialized in IT Department. So, I need some software that can help me to do
    diagrams, charts or graphs easily and quickly. If know some, let me know as soon as possible.....
  9. Admin Page
    Tutorial Needed? (4)
    I need to look at a nice tutorial how do you create an admin access page with many functions as many
    as possible.....
  10. Guy Help Needed
    (9)
    Ok.. so as you may know, two people run this site and well we both need guy advice, here are the
    situations: 1.Daniela has been talking to this guy online and well they both live about 30
    minutes away from eachother.. have seen eachother a couple of times, & obsevely talk to eachother on
    the phone / myspace / text messages.. & ive talked to both.. the guy seems to reallly like
    daniela.. but hes doubting, and so is she.. & well.. they were talking two nights ago.. and
    daniela was like: oh i can read your mind and he was like, oh really what im i thinking about....
  11. Ftp In Vb 2005
    badly needed! (0)
    Hello, i was wondering real badly. Does anybody know how to make an FTP browser or uploader in
    Visual Basic 2005 (also in 2008 - but they are the same) because i am making an add-on for my
    webbrowser. Or atleast can they send me a link. But please do not send me a link and tell me to
    search it - i've given up searching for 2005. Many many thanks if someone's found one for
    me. Rep++++....
  12. Tools Needed!
    PHP & MySQL (9)
    Hello, everyone! I need some tools for those two things to test PHP scripts coming together with
    database on my laptop, instead checking them on a web-server which takes time.....
  13. Php Code Needed Iii
    (10)
    Hello, everyone. I need your help again! Who might create the PHP code, the picture is
    above this text. Basically, I want when the user fill in all the information in this form, it
    automatically was sent to my email. And, then, the dialog box appears or on the same window, it was
    said that your request has been sent. Moreover, if the user did not fill the entire information,
    the dialog box appears stating that you did not fill some field. Thanks, for help. You always do
    that.....
  14. Php Code Needed
    Working Together? (5)
    Hello, everyone. I need your help again. This forum is quite good for it. Well, I need create a
    registration form for my web-site using PHP and SQL. The information it should contain: 1) User
    Name 2) First Name 3) Last Name 4) Password 5) e-mail Address 6) Security Image: that images helps
    to protect a random registration, for instance, 56+2=where user have to type an answer in order to
    finish registration. That's all for today. Anymore things, I will post another post over here.
    ....
  15. Php Code
    Needed?! (15)
    Well, I am a novice in PHP programming, so there is a script which I wanna get: 1. You go the
    web-site 2. On the main screen, there is a some kind of field windows, the one you get used to type
    in, when you go to google, for instance. 3. He or she types her email address and it's going to
    be saved in my SQL database. 4. That's it. Help me if you can.....
  16. Sony Handycam
    Software Needed?! (14)
    I would like to record some video captured by my VCR video camera to my laptop. Camera's name is
    Sony HandyCam, but the model-I do not know. Which is good software for it? Just, list the ways or
    method I can do it. Actaully, I need to record a video or transfer it from the tape to hard drive.....
  17. Dating Advice Needed
    (8)
    haha, im not really clear on weather you ask for advice on this forum or post advice, so im just
    going to ask for advice. anywho. there is this guy ive known for two years now, but we never really
    talked until 5 months ago, before i transfered schools & we got really close. at first i was
    really excited because & it was just great, he seemed to like me to, but as the day came closer
    for me to move, he seemed to be avoiding me & i was so comfused by this... & when i left he didnt
    even say goodbye to me.. idk it made me feel unwanted? heres the dilemma: we started....
  18. Recovery Cds
    Software Needed? (8)
    I bought a new laptop which is ASUS Model: F3S and I came up with the question how I can make
    recovery CDs in the case it will crash. I did not get them when I bought a laptop. Moreover, there
    are not build in software to do it. So, help me, please as soon as possible.....
  19. Help Needed From Experienced Web Developers
    Newbie in Need! (8)
    Hi, If you dont know my names Evolke, or Evo as friends call me, and Im a newbie to Trap17. Ive got
    a website application in and accepted, and I have registered my website, but now Im a little lost. I
    have little actually web making skills as I have now discovered and Im needing someone that can
    point me in the right direction. First up, how do I actually start work making a page, and start
    editing it and developing it into a true webpage? I have looked around, and Im starting to go
    around in circles. Theres stuff I understand, and stuff Im just avioding /tongue.gif"....
  20. Push-ups
    Tips needed (12)
    Hi guys, I have physical education practical exam in a week. The exam will include push-ups. The
    minimum requirement is 20. I never practised it in my life. Anyone has any quick tips on how to
    prepare myself in a week. I will be thankful if you share it. Khan....
  21. We Need More Members At Ipbgaming.com
    members needed! come one, come all! (26)
    IPBgaming.com has been a link on this forum for a while, but I have not seen many new members, or
    even active members, for that matter, in a while. The forum, in total, is only getting around 1
    post every 2 days! It is getting boring. Everyone, please join IPBgaming.com and join the Army
    System. (Army System is a text based war game. It is based on Kings of Chaos.) Come one, come
    all!! (hopefully) Old members: Please come back! EDIT: The forum should be overgoing a
    cleanup soon, MiniK. REEDIT: The forum has been cleaned up, the titlebar changed. P....
  22. I Have A Really Big Problem!
    advice urgently needed - cannot think straight (19)
    hello all. i would greatly appreciate it if you would help mewith a big issue i have. i'm sorry
    if you can't understand something i've said - i can't think straight. i know it may
    sound strange, but i will begin by telling you a bit about the autralian (nsw, at least) education
    system. there are three main breaking points throughout someone's education: the oc, selective
    and hsc. the oc stands for opportunity class. it is a test taken in grade 4. basically, they are
    classes where the kids are smarter, the teachers are more qualified, and the class re....
  23. Creatting A Playlist Through Php
    script help needed (5)
    Hi I am trying to make a script so that i can insert songs into a playlist, but i need a script in
    which it opens the playlist file and removes the closing tag at the end, so before i can add more
    entrys. e.g CODE <atx> <entry>Location 5</entry> <entry>Location
    4</entry> <entry>Location 3</entry> <entry>Location
    2</entry> <entry>Location 1</entry> <atx> But to add more entrys
    i would have to get rid of the atx, then use the fputs to place the new entry into the file. ....
  24. 1 More Administrator Needed For Runescape Forums Website
    (10)
    If you are looking for runescape forums than you're at the right place please join and post on
    my new runescape forums website, to visit my runescape forums website, please visit and go to
    z6.invisionfree.com/Runescapersmartsclan/ 1 New administrators needed so please join and tell me
    if you want to be a admisitrator for my runescape forums. thanks for reading. Register now if you
    play runescape because now on runescape forms you can buy and sell runescape items, join clans, post
    your runescape clan, post your runescpae pictures, and more......... TO VISIT THE ....
  25. How To Convert Primary Partition Into Logical Partition In Win Xp
    Help Needed (8)
    I own a Win XP PC with 160GB Hard Disk. I've 3 Primary Partitions and 3 Logical Partitions. I
    want to combine the 2 Primary partions with the extended drive so that I can increase the size of
    the partition. Please kindly tell me How to convert Primary Partition into Logical Partition in Win
    XP using the windows Storage Manager in the Computer Management utlity present in Administrative
    tools. I also get recurring scandisk check each time i boot my system, help me to get rid of this
    too.....
  26. Dell Tech Support
    I just needed a small bit of info (22)
    Ok, so I got my aunt's old Dell Inspiron 8000 laptop. She also gave me a wireless card with it,
    but I had to promise her that I wouldn't connect to the Net until I reinstalled Windows. I
    needed to open the BIOS Setup program to change the boot order of the DVD-ROM drive, but I just
    couldn't figure out how (even hitting Fn+F1, where F1 is marked setup, didn't work, and I
    tried about half a dozen other key combonations, which also failed to work). So this morning I
    called Dell, with hopes of getting my problem solved. The crazy lady whose accent I couldn....
  27. Visual Basic 6.0 Help Needed
    Adding lines to a textbox without delete (13)
    I need help with Visual Basic 6.0 and adding lines to a textbox without deleting any previous
    lines.. I've gotten as far as finding a way to add the lines, but it deletes the prevous entree.
    Help is appreciated!....
  28. How To Acess Domain Control Panel.help Needed
    (5)
    I am very upset.I need urgent help please. My problem is that i bought a domain from Yahoo.And i put
    DNS adress of 50webs and added that domain to 50 webs and hosted it there.It is working fine
    there.but i wanted to change hosting company of my domain. But i can not access domain control panel
    from yahoo small business.My domain name doesnt appear anywhere in the domain pannel of yahoo.It
    used to be there before i hosted it here. Please anybody tell me how i can change setting of my
    domain name now.how i can bring it back to yahoo and how i can acess it? Thanks alot.....
  29. Auto Webpage Resolution Format
    Viewing Problem Help Needed Please (7)
    Hi, my website was created with Frontpage 2003. At screen resolution 1024 * 768. Now the problem
    that I am finding is people with a screen resol. 800 * 600 see the table and everything in the wrong
    place and its all messed up. Is there a way to make it so the site is compatiable with all screen
    resolutions. Thanx in advance for your help. Edited topic title. ....
  30. Exporting Transparent Images In Photoshop To Flash
    Needed: Photoshop 7 or CS, Flash MX (4)
    First of all, it is important that you make sure the image you wish to export is on a transparent
    layer. The transparent layer is a checkered background in photoshop. You can see this checkered
    background in the image to the left. In this example, I created a quick glass icon which has
    different levels of transparency. This is the image I will be exporting, whilst preserving
    it's transparency. Once your image is on a transparent background, head to file > save for
    web. You can only export complex transparency using the .png filetype. So from the drop down....

    1. Looking for needed

Searching Video's for needed
advertisement



Help Needed



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE