SMS Message that i sent is displayed at top of the message

Since morning i'm getting this problem,
when i reply to any sms, my sms is displayed at top
of the sms that is received, how can I fix this?
I have bb os 7.0 torch 9810

I have fixed actually  i tried updating my phone and unplugged in between 
so my phones date changed.

Similar Messages

  • I have heard iphones can tell when someone has read a txt that was sent to another phone. Is the iphone able to do this when the phone sent to is not a smartphone, it is a verizon samsung infinity slide phone??

    I have heard iphones can tell when someone has read a txt that was sent to another phone. Is the iphone able to do this when the phone the txt is sent to is not a smartphone, but rather it is a verizon samsung infinity slide phone??

    No. It is only on imessage which has to be an apple product. ipod, iphone, ipad, or mac. Will not work on other phones.

  • Help!!! How to make quicktime plugin do not display on top of the web page?

    Any one knows how to make quicktime plugin do not display on top of the web page??? I've tried to change the zIndex property using javascript, but it doesn't work.
    Because we have some widgets which are required to be moved to anywhere on the page, we use iframe to implement that, so it can display on top of quicktime plugin, but the plugin flickers sometimes when we do some operation on the widget which is on top of it.
    Anyone can helps me? Thanks in advance!!!
      Windows XP Pro  

    > Can you tell me how to set the script so that the
    lightbox image is
    > displayed
    > on mouseover instead of mouse click.
    Check the docs. Trent is usually very thorough in his
    instructions.
    Hint: I haven't studied it but it probably involves modifying
    one of DW's
    built-in Behaviors.
    Walt
    "ducati1" <[email protected]> wrote in
    message
    news:gkb906$qrd$[email protected]..
    > Wow that DW extension is just what I needed.
    > Thanks..
    > Can you tell me how to set the script so that the
    lightbox image is
    > displayed
    > on mouseover instead of mouse click.
    > I currently have the thumbnails set to insert the ALT
    text into a text box
    > on
    > mouse click.
    >

  • Sub form display from top of the page

    Hi Experts
    I have some page display issue with my form. I have 2 main forms and 5  sub forms. The form structure is I have called the subforms from the main form  using button option, while I click the button to view the sub form I am veiwing it perfectly, but while loading the subforms the previous navigation scroll bar is not changing the newpage is not going to top of the page. This takes me the sub form half of the view I have to manually scroll to top of the page.
    I have tried with zoom options but only fit height option works and it looks too small is there any other way to show subforms from top of the page?
    Thanks in advance
    Regards
    arul

    Hi Arul,
    Maybe this helps you. It is kinda clumsy but might work for you.
    Sounds like you are ending up on the right page but in the wrong spot on that page. Yah?
    So at the end of your button code (which already works) just put in:
    xfa.host.pageDown();
    xfa.host.pageUp();
    So, in effect, you are going off page and then immediately coming back. It happens very quickly, so the user won't notice it.
    It has the result of bringing you to the TOP of the page.
    Good Luck,
    Joe

  • Is there any possible that pivot table can display date values in the data area like this?

    I use Power Query to load data(including all the of data showed in the following table without accumulating) from database to the Excel Worksheet, and I want to build a pivot table like this.
    But the data area of the pivot table can only accecpt and display numeric data. Is there any possible that such a display can be achieved?
    Thanks.

    Hi,
    Would you like to upload a sample file through OneDrive? I'd like to see the data source structure and test it.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How to Bind a Combo Box so that it retrieves and display content corresponding to the Id in a link table and populates itself with the data in the main table?

    I am developing a desktop application in Wpf using MVVM and Entity Frameworks. I have the following tables:
    1. Party (PartyId, Name)
    2. Case (CaseId, CaseNo)
    3. Petitioner (CaseId, PartyId) ............. Link Table
    I am completely new to .Net and to begin with I download Microsoft's sample application and
    following the pattern I have been successful in creating several tabs. The problem started only when I wanted to implement many-to-many relationship. The sample application has not covered the scenario where there can be a any-to-many relationship. However
    with the help of MSDN forum I came to know about a link table and managed to solve entity framework issues pertaining to many-to-many relationship. Here is the screenshot of my application to show you what I have achieved so far.
    And now the problem I want the forum to address is how to bind a combo box so that it retrieves Party.Name for the corresponding PartyId in the Link Table and also I want to populate it with Party.Name so that
    users can choose one from the dropdown list to add or edit the petitioner.

    Hello Barry,
    Thanks a lot for responding to my query. As I am completely new to .Net and following the pattern of Microsoft's Employee Tracker sample it seems difficult to clearly understand the concept and implement it in a scenario which is different than what is in
    the sample available at the link you supplied.
    To get the idea of the thing here is my code behind of a view vBoxPetitioner:
    <UserControl x:Class="CCIS.View.Case.vBoxPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:v="clr-namespace:CCIS.View.Case"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    d:DesignWidth="300"
    d:DesignHeight="200">
    <UserControl.Resources>
    <DataTemplate DataType="{x:Type vm:vmPetitioner}">
    <v:vPetitioner Margin="0,2,0,0" />
    </DataTemplate>
    </UserControl.Resources>
    <Grid>
    <HeaderedContentControl>
    <HeaderedContentControl.Header>
    <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
    <TextBlock Margin="2">
    <Hyperlink Command="{Binding Path=AddPetitionerCommand}">Add Petitioner</Hyperlink>
    | <Hyperlink Command="{Binding Path=DeletePetitionerCommand}">Delete</Hyperlink>
    </TextBlock>
    </StackPanel>
    </HeaderedContentControl.Header>
    <ListBox BorderThickness="0" SelectedItem="{Binding Path=CurrentPetitioner, Mode=TwoWay}" ItemsSource="{Binding Path=tblParties}" />
    </HeaderedContentControl>
    </Grid>
    </UserControl>
    This part is working fine as it loads another view that is vPetioner perfectly in the manner I want it to be.
    Here is the code of vmPetitioner, a ViewModel:
    Imports Microsoft.VisualBasic
    Imports System.Collections.ObjectModel
    Imports System
    Imports CCIS.Model.Party
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' ViewModel of an individual Email
    ''' </summary>
    Public Class vmPetitioner
    Inherits vmParty
    ''' <summary>
    ''' The Email object backing this ViewModel
    ''' </summary>
    Private petitioner As tblParty
    ''' <summary>
    ''' Initializes a new instance of the EmailViewModel class.
    ''' </summary>
    ''' <param name="detail">The underlying Email this ViewModel is to be based on</param>
    Public Sub New(ByVal detail As tblParty)
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Me.petitioner = detail
    End Sub
    ''' <summary>
    ''' Gets the underlying Email this ViewModel is based on
    ''' </summary>
    Public Overrides ReadOnly Property Model() As tblParty
    Get
    Return Me.petitioner
    End Get
    End Property
    ''' <summary>
    ''' Gets or sets the actual email address
    ''' </summary>
    Public Property fldPartyId() As String
    Get
    Return Me.petitioner.fldPartyId
    End Get
    Set(ByVal value As String)
    Me.petitioner.fldPartyId = value
    Me.OnPropertyChanged("fldPartyId")
    End Set
    End Property
    End Class
    End Namespace
    And below is the ViewMode vmParty which vmPetitioner Inherits:
    Imports Microsoft.VisualBasic
    Imports System
    Imports System.Collections.Generic
    Imports CCIS.Model.Case
    Imports CCIS.Model.Party
    Imports CCIS.ViewModel.Helpers
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' Common functionality for ViewModels of an individual ContactDetail
    ''' </summary>
    Public MustInherit Class vmParty
    Inherits ViewModelBase
    ''' <summary>
    ''' Gets the underlying ContactDetail this ViewModel is based on
    ''' </summary>
    Public MustOverride ReadOnly Property Model() As tblParty
    '''' <summary>
    '''' Gets the underlying ContactDetail this ViewModel is based on
    '''' </summary>
    'Public MustOverride ReadOnly Property Model() As tblAdvocate
    ''' <summary>
    ''' Gets or sets the name of this department
    ''' </summary>
    Public Property fldName() As String
    Get
    Return Me.Model.fldName
    End Get
    Set(ByVal value As String)
    Me.Model.fldName = value
    Me.OnPropertyChanged("fldName")
    End Set
    End Property
    ''' <summary>
    ''' Constructs a view model to represent the supplied ContactDetail
    ''' </summary>
    ''' <param name="detail">The detail to build a ViewModel for</param>
    ''' <returns>The constructed ViewModel, null if one can't be built</returns>
    Public Shared Function BuildViewModel(ByVal detail As tblParty) As vmParty
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Dim e As tblParty = TryCast(detail, tblParty)
    If e IsNot Nothing Then
    Return New vmPetitioner(e)
    End If
    Return Nothing
    End Function
    End Class
    End Namespace
    And final the code behind of the view vPetitioner:
    <UserControl x:Class="CCIS.View.Case.vPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    Width="300">
    <UserControl.Resources>
    <ResourceDictionary Source=".\CompactFormStyles.xaml" />
    </UserControl.Resources>
    <Grid>
    <Border Style="{StaticResource DetailBorder}">
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto" />
    <ColumnDefinition Width="*" />
    </Grid.ColumnDefinitions>
    <TextBlock Grid.Column="0" Text="Petitioner:" />
    <ComboBox Grid.Column="1" Width="240" SelectedValuePath="." SelectedItem="{Binding Path=tblParty}" ItemsSource="{Binding Path=PetitionerLookup}" DisplayMemberPath="fldName" />
    </Grid>
    </Border>
    </Grid>
    </UserControl>
    The problem, presumably, seems to be is that the binding path "PetitionerLookup" of the ItemSource of the Combo box in the view vPetitioner exists in a different ViewModel vmCase which serves as an ObservableCollection for MainViewModel. Therefore,
    what I need to Know is how to route the binding path if it exists in a different ViewModel?
    Sir, I look forward to your early reply bringing a workable solution to the problem I face. 
    Warm Regards,
    Arun

  • How do I change the Latest Headlines bookmark from BBC to RTE so that similar options are displayed when I click the icon?

    I want to change the Latest Headlines bookmark to RTE and have similar options re. articles pop up when I click the icon. I've tried right clicking and changing the site location but nothing changes.

    You can visit the RSS Feed site of RTE and subscribe to that feed to create a bookmark:
    http://www.rte.ie/rss/news.xml

  • Top of the line MacBook Pro 15" Retina with 2 27" thunderbolt displays or top of the line 27" iMac with another 27" display?

    I don't know which combination to get... The key is two have dual monitors. I'm a photographer and need the extra workspace. Would there be a noticeable difference in performance? Please help.

    I agree with shldr - do you need the portability? A lot - and I mean a lot - of photographers are taking their MBPs with them on location shoots. If you're in a studio all the time, then the iMac should suit you fine. If you shoot on location and need portability then the MBP with two 27" ATDs would be my choice. If, like most photogs, your shooting is both, go with the MBP.
    In the end, portability is your only concern. As an ex-pro, if I were buying a computer today, I would not get the Retina display MacBook Pro - I would get the fastest non-Retina and upgrade myself to 16GB of RAM and at least a 512GB SSD (although OWC has a 960GB SSD that looks awfully nice and the price keeps dropping).
    So location or studio or both? If location or mixed, MBP. If studio only, iMac.
    Pretty simple decision...
    Clinton

  • SMS messages in other but English languages

    Is there any problem to send/receive non-English messages? I have installed the second language that I wanted, it shows correctly, I can even type in it using two different layouts, the media files can be either in English or in this language, MP3 tags are recognized correctly. But when I receive SMS message that I sent from my own computer via the Internet gate @tmomail.net it shows up with '?' signs. It looks like the required font is missing, but why if the rest of the device works perfectly with the same language? I have already tried different coding systems including unicode, no luck.

    Hi,
    Try using SET LANGUAGE or SET LOCALE LANGUAGE commands.
    Make sure that the messages are translated and exist in ITALY before you do this.
    Also this will effect only TEXT ELEMENTS not the Message in the message class that is T100 messages are not effected.
    Regards,
    Sesh

  • How do i save a picture on my,iPad from an email that was sent to me

    How do I save a picture on my iPad  from an email that was sent to me

    Dsrock wrote:
    I Opened the pic in chrome. It then gave me the option to save but It just saved it.  Did not ask me where I wanted to  save  it
    If it could save it then it went to the Camera Roll in Photos.

  • Change display language according to the user programmatically

    How to change the site displaying language according to the user ? Let say I've drop-down to select language in a web page according to that whole site display language change and also user's language in user profile need to change. How to do that in using
    server object model programmatically.

    Hi,
    According to your post, my understanding is that you wanted to display language according to the user.
    First, we can find out the current culture of the logged in user based on
    LCID.
    System.Threading.Thread.CurrentThread.CurrentUICulture.LCID
    Then you can set the language based on the LCID.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/0e5d36e1-ec06-404a-ab2c-0e0ff475abec/how-to-change-the-language-based-on-log-in-user-programmatically-in-sharepoint-2013-how-to-change?forum=sharepointdevelopment
    http://sharepoint.stackexchange.com/questions/104140/change-site-display-language-according-to-the-user
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to display clob/blob in the web layout using Reports9i

    Hi,
    I've created a report that selects both a clob and blob datatype in the query. However, when I run the report using the 'Run Web Layout' tool no data is displayed for these columns. Does the <rw:field> tag support such datatypes ?.
    Regards,
    Chris

    Hi Chris,
    Reports9i supports both BLOB and CLOB in both paper as well as web layout. Pl make sure that in the column properties that you want to display, you have selected the "File Format" correctly (to do this, go to data model > column > property inspector > file format). Eg, you can select "text", "image" etc depending on what you have stored in the column. Also, when you want to display an image in the web layout, you will have to write containsHtml="yes" inside your <re:field> tag.
    Navneet.

  • Display Approval Status on the page

    I have a pages library, where i have content approval turned on. I want to display the OOTB Approval Status( Internal name: ModeratorStatus) column in the pagelayout in read only mode. Any ideas??

    Hi,
    According to your post, my understanding is that you want to display Approval Status on the page in read only mode.
    You can insert the JQury code to a Content Editor Web Part:
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
    <script type="text/javascript">
    $(function(){
    setTimeout(Test,500);
    function Test(){
    var obj1=$("div[name='_ModerationStatus']");
    obj1.removeAttr("SortFields");
    </script>
    Then you cannot click Approval Status to sort items and the HTML of the Approval Status becomes as below:
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Is there any way that a normal SMS message (i.e. A green message) can be sent through to an iPad? I have linked my iPad to my phone but I don't want certain messages getting through. If I turn my imessenger off, does this mean these won't go to my ipad?

    Is there any way that a normal SMS message (i.e. A green message) can be sent through to an iPad? I have linked my iPad to my phone but I don't want certain messages getting through. If I turn my imessenger off, does this mean these won't go to my ipad?

    SMS is a voice cell service and since the iPad does not have voice cell circuitry, it does not natively support SMS or MMS. There are third-party apps in the iTunes Store that purport to send SMS, but I have no personal experience with any of them.
    If I turn my imessenger off, does this mean these won't go to my ipad?
    If you disable Messages in the Restrictions on the iPad, then it will not be able to send nor receive messages. Or you can change the email address used for Messages on either the iPad or the iPhone. The iPad will then only receive messages sent via that address.
    For more information, see:
    http://support.apple.com/kb/HT3529
    Regards.

  • Moto X says that I sms messages couldn't be sent

    and to click the notification to see which ones but I don't have any sms messages. I don't know how to fix it and it's become irritating. I've looked in all menu settings and can't seem to be able to fix it.

    I realize the need to stay connected with your son. I just have a few questions so that I can further assess the situation.
    Are you able to send him a text message from an email address?
    Do you get the error message right away or does it take some time to send first?
    Do you have usage controls or any other restrictions on his line.
    Lastly, can you send a message to another number? 

Maybe you are looking for