Classic BlackBerry how to remove attachments

When you compose e-mail or text... There is a blue circle to compose and to the left of it is attachments (with a paper clip above it) and to the right of new message is a search (magnifying glass). If you touch the trombone for attachemnts all kinds of things happen that you do not have there. HOW TO REMOVE THEM?

Thank you for your help. It is greatly appreciated. I am pleased that it takes all the space on the hard disk. I tried an experiment yesterday and moved files from the Inbox to a folder on my main computer and they disappeared on the paperclip on my classic attachments it is good to know if you don't want certain documents on your blackberry because they came (details) under attachments.

.

wfjw

Tags: BlackBerry Smartphones

Similar Questions

  • Classic blackBerry how to remove an application

    How to remove an application

    Hello

    Hold the application icon until they start to vibrate. To touch the little trash can that appears thereon. Be sure to delete only the one you want.

    Good luck!

  • How to remove attachments to email from the server

    Hello
    I created a CF model for sending electronic mail that includes attachments. It has been tested on my dev machine and works fine as long as the download of attachments to a directory on the server. I wish that the spare part to be served once as the e-mail message has been sent to the recipient.

    Macromedia ColdFuision 7MX web application construction book page 913 "interacting with Email" we a CFC that will remove the file when the user ends their session.

    I don't know how to write it to adapt the code that I use.

    Here's the e-mail form

    <! - Mail_Form.cfm - >
    < html >
    < head >
    < title > please enter your message < /title >
    < / head >

    < body >
    < do action = "Send_Email.cfm" method = "post" enctype = "multipart/form-data" > "
    < table width = '500' border = "0" align = "center" >
    < b >
    < td width = "500" colspan = "2" > please enter your e-mail address: < table >
    < /tr >
    < b >
    < td width = "250" > to: < table >
    < td width = "250" > < input type = "text" name = "to_addr" value = "" > < table >
    < /tr >
    < b >
    < td > subject: < table >
    < td > < input type = "text" name = "subject" value = "" > < table >
    < /tr >
    < b >
    < Td > message: < table >
    < td > < input name = "message" rows text box = "5" cols = "35" > < / textarea > < table >
    < /tr >
    < b >
    < td width = "250" > annex #1: < table >
    < td width = "250" > < input type = "file" name = "attachment_1" value = "" > < table >
    < /tr >
    < b >
    < td width = "250" > #2 Attachment: < table >
    < td width = "250" > < input type = "file" name = "attachment_2" value = "" > < table >
    < /tr >
    < b >
    < td width = "250" > #3 Attachment: < table >
    < td width = "250" > < input type = "file" name = "attachment_3" value = "" > < table >
    < /tr >
    < b >
    < td width = "250" > < table >
    < td width = "250" > < input type = "submit" name = 'Send_Email' value = "SendEmail" > < table >
    < /tr >
    < /table >
    < / make >

    Here is the form to send the attachment.

    <! - Send_Email.cfm - >
    <!-first of all, make sure that the attachments downloaded the user->
    < cfif FORM.attachment_1 NEQ "" > "".
    <!-firstly actually-> download file
    < cffile action = "upload".
    destination = "D:\uploadsTEST\".
    FileField = "attachment_1."
    nameconflict = "makeunique" >
    <! - now create a temporary support for the attachment then - >
    < cfset attachment_local_file_1 = "d:\uploadsTEST\#file.serverfile#" >
    < / cfif >

    <!-now repeat the process for the setting of the second and third: - >

    < cfif FORM.attachment_2 NEQ "" > "".
    <!-firstly actually-> download file
    < cffile action = "upload".
    destination = "D:\uploadsTEST\".
    FileField = "attachment_2."
    nameconflict = "makeunique" >
    <! - now create a temporary support for the attachment then - >
    < cfset attachment_local_file_2 = "d\uploadsTEST\#file.serverfile#" >
    < / cfif >

    < cfif FORM.attachment_3 NEQ "" > "".
    <!--forst actually download the file - >
    < cffile action = "upload".
    destination = "D:\uploadsTEST\".
    FileField = "attachment_3."
    nameconflict = "makeunique" >
    <!-now to create a temporary support for late fixing on->
    < cfset attachment_local_file_3 = "d:\uploadsTEST\#file.serverfile#" >
    < / cfif >

    <!-OK, now you have downloaded the file from the server, now we will send
    email with attachments: - >

    "< intrusion via cfmail to =" #form.to_addr # "[email protected]" = "subject =" #subject #
    Server = "an001so - dby1c.pbi.global.pvt" port = "25" >
    #message #.

    < cfsilent >
    <!-< cfsilent > tag used to kill the white space in this area
    If your email is not cluttered with white spaces-->

    < cfif FORM.attachment_1 NEQ "" > "".
    < cfmailparam file = "#attachment_local_file_1 #" >
    < / cfif >
    < cfif FORM.attachment_2 NEQ "" > "".
    < cfmailparam file = "#attachment_local_file_2 #" >
    < / cfif >
    < cfif FORM.attachment_3 NEQ "" > "".
    < cfmailparam file = "#attachment_local_file_3 #" >
    < / cfif >

    < / cfsilent >
    < / intrusion via cfmail >

    Here's the session request to delete the file to download

    <!--
    File name: Application.cfc
    Runs for each page request
    ->

    < cfproperty output = "false" >

    <!-name of the application. ->
    < cfset this.name = "attachmentPurge" >
    <!-enable session management. ->
    < cfset this.sessionManagement = true >
    < cfset this.clientMangment = true >

    < name cffunction output = 'onSessionEnd' = "false" returnType = "Cancel" >
    <!--> look for attachments to remove

    < cfset var attachDir = expandPath ("Attach") >
    < cfset = var getFiles "" > "".
    < cfset var thisFile = "" > "".

    <! - get a list of all files in the directory - >
    < cfdirectory directory = "" #attachDir # "name ="getFiles">"

    <! - for each file in the directory - >
    < cfloop query = "getFiles" >
    <!-if it's a file (rather than a directory)-->
    < cfif getFiles.type NEQ "Dir" >
    <! - get the full name of this file - >
    < cfset thisFile = expandPath("Attach\#getFiles.Name#") >
    < / cfif >
    < / cfloop >

    < / cffunction >

    < / cfproperty >

    The tutorial doesn't explain how to delete the attachment when the recipient audits post
    in the pop server.

    Assuming that the sender is in a session would be writing code to remove the attachment from the directory on
    the server, a message is sent.

    Can someone explain how to remove attachments from a designated directory or provide me the code that would deal with that once an email is sent with an attachment automatically.



    Thank you

    Tony

    That's how I do it.



    ThisDir = "d:\dw\dwweb\work";
    ThisDate = DateAdd ("d",-90, now());




    Select the name of AllFiles
    where datelastmodified<>






  • Classic BlackBerry how to type "o" number in classic Blackberry

    I'm in settings/WiFi.

    I'm trying to enter my passowrd to connect to wifi. the password has a zero in it, but there is no '0' on the keyboard.

    When I press the "Sym" twice I get numbers but not zero.

    I looked at the manual, the internet and tutorials. but I cannot find anywhere how to type "0".

    This is my first smart phone so Im really start at the beginning. I haven't yet done yet a call on a smart phone. And since zero this question, I don't think I can even someone phone area code has a zero in it.

    To type the number zero on your classic BlackBerry. Please press alt and zero which has the microphone on the keyboard icon.

    Hope it will work.

    pretty_krissy

  • Classic blackBerry how to upgrade my OS 10 to version 10.3.1.2072 or later?

    My classic Blackberry has a bug: does not charge whem turned off.

    I read here (http://btsc.webapps.blackberry.com/btsc/viewdocument.do;jsessionid=5699301A8F9218CF840D56B8EF5D858A?... to solve this problem I have to uptload my OS to version 10.3.1.2072 or later version (currently I have the 10.3.1.1154 version).)

    But the Blackberry link uptdate don't operating system (it tells me that there is no germination of updates).

    Then, how can I update the OS 10 to version 10.3.1.2072 or later?

    Your version is indeed very old! The most recent BB (not necessarily from the carriers) is SR 10.3.1.1784 / OS 10.3.1.2582.

    Hmmm... the concept of the 'safe'... hmmm... difficult to answer really. For me, these two methods are sure... I've used both methods several times, and only once had no problems at all (a corrupted file autoloader... easily fixed by getting a replacement from a more reliable source). Indeed, with the most recent series of releases of 10.3.1.xxxx, there are many reports of problems specifically caused by the 'official' installation methods that have actually been cured by these informal methods.

    Thus, 'safe' tends to vary according to the current conditions. But, as always, YMMV - and it is 100% your decision as to what is 'safe' for you.

    Good luck!

  • Classic BlackBerry how settup APN, I'll have to 3G and not 3g or H +.

    Hi guys. I just bought new shiny classic Blackberry but I can't use the mobile internet. When I: setting > networks and connection > Mobile network > and here is the APN setting but I can fill only APN (giffgaff.com), user name and password >

    can someone help what to do?

    Yet once, it is controlled by the carrier...

    You can find many discussions here in the forums on the subject...

  • Smartphones blackBerry how to remove all messages under Messages?

    If you press the MENU button, you get a menu.  the first HELP said... If you click on that... It says MESSAGES

    I see:

    E-mail messages

    PIN messages

    SMS text messages

    MMS messages

    Message shortcuts

    tons of tips under each... but nothing that tells me how to remove them immediately.

    Thank you in advance for your help!

    New owner of Alltel BB Curve

    Highlight the date of your most recent texts in your Inbox (ie. today...) Wed, December 17, 2008) and click on the blackberry button, then click on delete before.

    It should work!

    and if your sent messages are hidden, press alt + o (for outbound messages), and do the same thing for this!

    Let me know if it works

  • Smartphones blackBerry how to remove it?

    I don't know how I managed to get that way, but I want to know what it is and how to remove it? I tried to look in the book for this glossary of icons - nothing. Its the one circled in red. I do not remember how he got there, but I not went. If anyone can help me that will be nice!

    This icon is a feature of "Enhanced call Audio" available during a phone call. To change to call select the Blackberry Menu button, then "Enhanced call Audio ' and select 'Normal '. This will remove the icon.

  • Smartphones blackBerry how to remove all my texts received

    Can someone tell me please how to remove all my texts received rather than make them one by one.

    Welcome to the forums

    It is possible to do. Before do you, backup phone data: http://www.blackberry.com/btsc/KB12487

    1. Access your sms/messages folder
    2. Press menu, and then click on "view file".
    3. Go to 'SMS Inbox.
    4. Scroll to the top most sms and click the date above it and "delete prior".

    Voila!

  • Z10 blackBerry how to remove a bookmark

    Please, someone knows how to remove a bookmark?

    Nice day

    Welcome to the BB forums

    Click on the link to read bookmarks in combat

    Organize your bookmarks

    Delete a bookmark

  • Smartphones blackBerry how to remove apps?

    Hello world

    I know that this is probably the most stupid question, you have already heard, but how to remove the applications on my Tour that I didn't not download? I don't use AIM, Yahoo! Messenger, or something like that, and I can't understand how to remove them. When I select the application and click the menu button, there is no option 'remove '. I have also some NFL app that was installed after the update, I certainly don't need. If anyone can help me, I would really appreciate it! =)

    If they are I think, these are in fact the icons of your carrier and no requests. If it's true the best you can do is hide. Alternatively, you can do the following, if they are indeed applications:

    Go to options > applications > menu > discovers modules > remove all modules that indicate the name of the application.

  • Smartphones blackBerry how to remove the unwanted themes?

    How delete/remove unwanted, downloaded themes?


  • Smartphones blackBerry how to remove uninstalled app of my world

    How to remove games apps uninstalled my world?

    Those who can not be deleted permanenty.

    You can do a reset on the MyWorld, but apps will reappear.

    1. open the App World
    2. go to my world
    3. to focus on the BB keyboard - hold down the ALT key and press "RST."
    4. If your BB locks after issuing clear cache, do a battery pull reboot

    And finally after a restart of the device, they will see the likley again on the rise.

  • Classic BlackBerry how can I re install link on a classic Blackberry blackberry?

    I found nothing on how to do this, or even a hint if it is still possible.

    Blackberry mixture works fine, but no link, I can't find a way to backup everything.

    Help, or even insults, would be appreciated.   : )

    As I say, the link is not on the phone. It is different from the mixture. If you have used the legacy BlackBerry with Desktop Manager legacy, the link is more or less for BB10 Office Manager.

    What you need to do, so usually, connect your Classic to the computer via a USB port, launch the link and follow the prompts to sign in with your ID BlackBerry and configure the link as you want. You will see how to manually backup or set link to make automatic backups on a schedule.

  • Z30 BlackBerry how to remove my Z30 BBM

    I have a Z30 with the latest OS

    BB decided to make money to disturb me with advertising on my BBM. I don't want to, so I would like to know how to delete BBM?

    I guess you also don't use Facebook, Skype, google products or browse all web pages then (to name a few).

    Unfortunately services (those that are especially free) are ad revenue suported these days, just a part of life.

    That said it is possible to remove some parts of the operating system (at your own risk), if you insist really the descendant that route, see Knowyou.

    You could also looked just delete your BBM account (with consequences on other features...

    http://BTSC.webapps.BlackBerry.com/BTSC/ViewDocument.do;JSESSIONID=36BE52A4EEEA2ADA44F8972D3FBF60DF?...

Maybe you are looking for

  • Complete code example Widget push?

    Some body knows if there are some complete code example push Widgets, with subscription, unsubscribe, background, Service Push BlackBerry...? I'm looking and only found parts, not a complete example. Thanks in advance

  • What is originally shimmering shade of rose-green/interference on my LCD screen that comes and goes?

    The monitor is NEC MultiSync LCD 1850th. Graphics card is NVIDIA GeForce GT 530. Shooting power monitor does nothing. Handling/move the monitor cable does nothing. Change resolution/refresh does nothing. Speakers of the monitor does nothing. Editing

  • How to connect to the database without sqlclient soa

    Hi allI have a very simple question.I need to write a shell script to get some stats for bpel instances of database as part of the daily health check.The problem is in our area of unix server, any customer database is not installed.Sql client is pres

  • Hardware requirements for OIM 11 g R2 PS2

    Friends,Is there a documentation associated with the hardware and software configuration for OIM 11 g R2 PS 2 installation "?" We are trying to set up a new environment of OIM 11 g r2 ps 2 and would like to know OS, DB, Details of material etc.Thank

  • e business financial and supply chain

    Hi allI already install E - BS 12.1.1 everything runs smoothlybut no any link to financial chain and supply.Best regards.