Computers & Internet Logo

Related Topics:

A
Anonymous Posted on Jun 22, 2010

I have rec'd a message saying there is a picture message with a code number. What do i do to get the picture?

1 Answer

Anonymous

Level 3:

An expert who has achieved level 3 by getting 1000 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

Vice President:

An expert whose answer got voted for 100 times.

  • Master 466 Answers
  • Posted on Jun 22, 2010
Anonymous
Master
Level 3:

An expert who has achieved level 3 by getting 1000 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

Vice President:

An expert whose answer got voted for 100 times.

Joined: Jun 05, 2009
Answers
466
Questions
0
Helped
183032
Points
1494

If you received this by email, it's best if you do nothing.

In all likelihood it is a trick, designed to have you download and activate a Trojan Horse program which, in turn, could use your PC to spam others, or attempt to discover your logins or bank accounts for identity theft purposes.

If you navigated to a web site and "nothing appeared to happen", or - worse yet - if something got downloaded, you'll be well advised to immediately run a comprehensive virus check on the whole computer. If you use the PC for online shopping, also check with your bank to verify there are no strange movements on your bank account.

Do not delete the email -- you might need it as evidence.

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

0helpful
1answer

As soon as i turn my camera on a message appears saying "naming error" and it wont let me take pictures or view already taken pictures.How do you fix this?

The file could not be created because there is a file with the same name as the directory that the camera is attempting to create, or the highest possible file number has already been reached. In the Rec. menu, please set [File No.] Reset to [On]. After you save all the images you wish to retain onto a computer, format the SD card. Please note that formatting will erase all the existing images and other data. This information is based on Canon support for your digital camera.
1helpful
1answer

Cant send or rec test messages.what do i do

for sending text messages :
1.go to your message settings and check the message center number to see if it is correct
2. call to your network operator customer care
3. request the message center number...
4.note it down
5. go to message settings>message center number
6. insert the number which is noted by you and save it
this solves your messaging problem ...
Good luck
Dec 01, 2010 • Cell Phones
0helpful
1answer

I need Tmobile MMS configurations for my unlocked ATT Samsung SGH-A797 for a novice. I have no T-Zones and cannot send/rec picture mail. Had I known this was an issue I probably would not have purchased an...

the reason why you cant send or receive picture mail is because its an unlocked phone, i had that same problem you have to go to your service provider and they have to give you a code to enter otherwise you wont be able to get picture messages nor get online.

www.usedcellphoneshop.com
5helpful
1answer

Cannot set up voicemail on a Binatone 1210 DECT

Please follow the below mentioned process:

1)press menu
2)press up/down to tam
3)press ok
4)It will say play(press ok to play messages), or press up/down till delete all
5)press ok it will say confirm
6)press ok this will delete all messages. If you want to record your own message follow steps 1 to 3 then 4)up/down till ANS MODE press ok,
7)scroll up/down it will say, ANS ONLY or ANS + REC,
8)select ANS + REC, press ok,
9)it will now say PERSONALIS(your own personal message) or PREDIFINED(standard answerphone message), select PERSONALIS press ok 8)now it will say PLAY MSG scroll up/down it will also say RECORD MSG, press ok hold phone to your ear till you hear a beep, record your personal message then press ok, if you go back to step
10) you can hear your message.


In normal mode, Press and hold 0 key to turn on/off answerphone and your personal message will be on.

To delete messages press 2 key for 2 seconds as messages are played press 6 to delete, you can delete messages before or as they are playing without listening to whole message.

Please let me know if the provided information has been helpful.

Please rate me if the information provided was able to help you.
4helpful
1answer

How to connect vb with ms access

se Adodc OR Even better.. ADODB. for this you need to get MDAC fromMicrosoft free download.(check under project_References- Microsoft DataActiveX objects.. the current no is 2.8. if it is not there download invb directory.

next, you can learn about creating a DSN from control panel, ODBC. onceyou learn this, connection becomes a piece of cake. get some free vbtutoriasl from WWW.

then

you need to use DAO or ADO to connect to the database. better study both but since ADO is current, i am showing that code.
under Menu Project_References, put a check mark on Microsoft ActiveXData Objects latest version (though it works for all, currently 2.8with sp pack 1 ).

at the general declarations:
dim conn as adodb.connection, rec as adodb.recordset, esql as string,esql1 as string
Private Function connect()
Set rec = New ADODB.Recordset
Set conn = New ADODB.Connection
esql = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & "D:VBDesigndhana2.mdb" & ";Persist Security Info=False"
'here you put the correct path of your mdb file. and check if you have jet 4.0

conn.Open (esql), , , 0
End Function

private sub form_Load()
connect
end sub
and for adding records:
say let us say you have 3 fields. then have 3 textboxes and 1 command button on the form.

private command1_click()
esql1="select * from Yourtablename"
rec.open(esql1),conn,, adOpenDynamic, adLockOptimistic
rec.AddNew
rec.Fields(0) = text1.Text
rec.Fields(1) = Text2.text
rec.Fields(2) = text3.text
' you need to check if in your access table design you have Allowed Zero length .. set it to Yes for all text fields.
rec.update
if not rec.eof then rec.movenext
rec.close
conn.close
set conn to nothing
end sub

this will add new records to access table from VB.
' for picture store the full path of the path and the picture file nameint the text field. and in the picturebox of VB form for viewingrecords again you need ADO or ADODC and here you code:picture1.picture=Loadpicture(rec.fields(3) ' depending on where thepicture field is located. you need to make a few trials.
under Menu Project_References, put a check mark on Microsoft ActiveXData Objects latest version (though it works for all, currently 2.8with sp pack 1 ).

at the general declarations:
dim conn as adodb.connection, rec as adodb.recordset, esql as string,esql1 as string

Private Function connect()
Set rec = New ADODB.Recordset
Set conn = New ADODB.Connection
esql = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & "D:VBDesigndhana2.mdb" & ";Persist Security Info=False"
'here you put the correct path of your mdb file. and check if you have jet 4.0

conn.Open (esql), , , 0
End Function

private sub form_Load()
connect
end sub

and for accessing records:

private command1_click()
esql1="select * from Yourtablename where id =" & val(text1) ' for integers

esql1="select * from Yourtablename where name=" & "'" & text1 & "'" ' for string

rec.open(esql1),conn, adOpenstatic, adLockreadonly

label1.caption =rec.Fields(0)
label2.caption= rec.Fields(1)
label3.caption= rec.Fields(2)
' you need to check if in your access table design you have Allowed Zero length .. set it to Yes for all text fields.

rec.close
conn.close
set conn to nothing
end sub


' similarly there are routines to ADD, Delete, Edit, View etc.
0helpful
1answer

Unable to send/rec pictures SE W850i

Hi,

I think the problem here is with your connection. I understand that you have the right settings from your operator...however you should check with them to see if your line is data enabled for MMS (this is how your pictures are sent....in an MMS message).
0helpful
1answer

Need code number

I tried a Panasonic 4-unit universal remote (about $8 at Wal-Mart), and the code that works for it (sort of) is 0998. I say "sort of," because on the DVD side, you can only advance forward and backward from one chapter to the next (you can't "scan") and on the VCR side, you can't fast forward or rewind at all. So I'm returning the remote and looking for a "real" Toshiba D-VR610 remote. But I suppose this universal remote could be better than nothing, at least for the DVD functions.
2helpful
1answer

One tel magma 300 - can't change message on answerphone

1) Press the 'tape' symbol to access the answering machine mode.
2) Press 9 then 1 for 'answer and record'.
3) Whe you hear a 'beep' speak your message. Whilst recording the display shows REC OGM1 or REC OGM2
4) Press 5 to stop recording. Your message is played back to you
5) Press 'tape' symbol to exit.

To check your Out Going Message (OGM)

1) Press 'tape' symbol
2) Press 6 then 2 and the message is played back.
0helpful
2answers

Retrieve Messages when away from home

Normal 0 false false false MicrosoftInternetExplorer4 /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;}table.MsoTableGrid {mso-style-name:"Table Grid"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-border-insideh:.5pt solid windowtext; mso-border-insidev:.5pt solid windowtext; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;} Normal 0 false false false MicrosoftInternetExplorer4 /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;}Instructions for Retrieving Messages While Away from Home
Sony TAM-100 Answering Machine

Step I: Set the Remote ID (security code) on themachine itself:

1 Press (SET/REC).
2 Press (ANSWER ON/OFF).

A voice guide will say: “Pleaseset the security code. To select, pressthe SKIP or REPEAT button. To enter,press the SET button”.

3 Set a two-digit number between 00 and 99 bypressing (SKIP/QUICK) or (REPEAT/SLOW). Press (SKIP/QUICK) to increase a number, or (REPEAT/SLOW) to decrease.

Each time you press (SKIP/QUICK)or (REPEAT/SLOW), the answering machine announces a number.

4 Press (SET/REC). The remote ID code (security code) is set,and you hear a long confirmation beep.

To change the remote ID code(security code), Enter a new remote ID code (security code). The new code will replace the old one.

Note: If a powerinterruption occurs, the remote ID code will not be erased.

Please See Next Post to Continue (my response exceedsallowable text restriction ;-) ).

Not finding what you are looking for?

96 views

Ask a Question

Usually answered in minutes!

Top Computers & Internet Experts

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

Brad Brown

Level 3 Expert

19187 Answers

Cindy Wells

Level 3 Expert

6688 Answers

Are you a Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...