DM 4.6 et BB Bold

Hello
First sorry for my english, I came from France
I’ve just bought a BB Bold (9000). I installed DM 4.6 in order to sync my phone with Lotus notes 8. I tried 4 times to uninstall and install it
DM didn't recognize my BB phone. I read in the forum how to proceed for a clean uninstalls but the issue keeps the same. The soft seems to run correctly but it 'is impossible to change the connections parameters. On the device manager settings i can view  that my USB+PIN is connected, but in Dm’s main menu I see that there is no terminal connected and it is impossible to run any application
I've got WIN XP SP3,
Could you help me how to solve this problem ?
Thanks 
Solved!
Go to Solution.

salut, la première chose à faire est d'installer les drivers USB pour Blackberry.
hello, first thing is to install the USB drivers for Blackberry. you can find them on the CD or directly on the blackberry.com download section. it is a 15MB file.
The search box on top-right of this page is your true friend, and the public Knowledge Base too:

Similar Messages

  • How to make column headers in table in PDF report appear bold while datas in table appear regular from c# windows forms with sql server2008 using iTextSharp

    Hi my name is vishal
    For past 10 days i have been breaking my head on how to make column headers in table appear bold while datas in table appear regular from c# windows forms with sql server2008 using iTextSharp.
    Given below is my code in c# on how i export datas from different tables in sql server to PDF report using iTextSharp:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.Data.SqlClient;
    using iTextSharp.text;
    using iTextSharp.text.pdf;
    using System.Diagnostics;
    using System.IO;
    namespace DRRS_CSharp
    public partial class frmPDF : Form
    public frmPDF()
    InitializeComponent();
    private void button1_Click(object sender, EventArgs e)
    Document doc = new Document(PageSize.A4.Rotate());
    var writer = PdfWriter.GetInstance(doc, new FileStream("AssignedDialyzer.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(6);
    table.TotalWidth =530f;
    table.LockedWidth = true;
    PdfPCell cell = new PdfPCell(new Phrase("Institute/Hospital:AIIMS,NEW DELHI", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK)));
    cell.Colspan = 6;
    cell.HorizontalAlignment = 0;
    table.AddCell(cell);
    Paragraph para=new Paragraph("DCS Clinical Record-Assigned Dialyzer",FontFactory.GetFont("Arial",16,iTextSharp.text.Font.BOLD,BaseColor.BLACK));
    para.Alignment = Element.ALIGN_CENTER;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(105f, 105f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn = new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select d.dialyserID,r.errorCode,r.dialysis_date,pn.patient_first_name,pn.patient_last_name,d.manufacturer,d.dialyzer_size,r.start_date,r.end_date,d.packed_volume,r.bundle_vol,r.disinfectant,t.Technician_first_name,t.Technician_last_name from dialyser d,patient_name pn,reprocessor r,Techniciandetail t where pn.patient_id=d.patient_id and r.dialyzer_id=d.dialyserID and t.technician_id=r.technician_id and d.deleted_status=0 and d.closed_status=0 and pn.status=1 and r.errorCode<106 and r.reprocessor_id in (Select max(reprocessor_id) from reprocessor where dialyzer_id=d.dialyserID) order by pn.patient_first_name,pn.patient_last_name", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("Reprocessing Date");
    table.AddCell("Patient Name");
    table.AddCell("Dialyzer(Manufacturer,Size)");
    table.AddCell("No.of Reuse");
    table.AddCell("Verification");
    table.AddCell("DialyzerID");
    while (dr.Read())
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString() +"_"+ dr[4].ToString());
    table.AddCell(dr[5].ToString() + "-" + dr[6].ToString());
    table.AddCell("@count".ToString());
    table.AddCell(dr[12].ToString() + "-" + dr[13].ToString());
    table.AddCell(dr[0].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(table);
    doc.Close();
    System.Diagnostics.Process.Start("AssignedDialyzer.pdf");
    if (MessageBox.Show("Do you want to save changes to AssignedDialyzer.pdf before closing?", "DRRS", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation) == DialogResult.Yes)
    var writer2 = PdfWriter.GetInstance(doc, new FileStream("AssignedDialyzer.pdf", FileMode.Create));
    else if (MessageBox.Show("Do you want to save changes to AssignedDialyzer.pdf before closing?", "DRRS", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation) == DialogResult.No)
    this.Close();
    The above code executes well with no problem at all!
    As you can see the file to which i create and save and open my pdf report is
    AssignedDialyzer.pdf.
    The column headers of table in pdf report from c# windows forms using iTextSharp are
    "Reprocessing Date","Patient Name","Dialyzer(Manufacturer,Size)","No.of Reuse","Verification" and
    "DialyzerID".
    However the problem i am facing is after execution and opening of document is my
    column headers in table in pdf report from
    c# and datas in it all appear in bold.
    I have browsed through net regarding to solve this problem but with no success.
    What i want is my pdf report from c# should be similar to following format which i was able to accomplish in vb6,adodb with MS access using iTextSharp.:
    Given below is report which i have achieved from vb6,adodb with MS access using iTextSharp
    I know that there has to be another way to solve my problem.I have browsed many articles in net regarding exporting sql datas to above format but with no success!
    Is there is any another way to solve to my problem on exporting sql datas from c# windows forms using iTextSharp to above format given in the picture/image above?!
    If so Then Can anyone tell me what modifications must i do in my c# code given above so that my pdf report from c# windows forms using iTextSharp will look similar to image/picture(pdf report) which i was able to accomplish from
    vb6,adodb with ms access using iTextSharp?
    I have approached Sound Forge.Net for help but with no success.
    I hope anyone/someone truly understands what i am trying to ask!
    I know i have to do lot of modifications in my c# code to achieve this level of perfection but i dont know how to do it.
    Can anyone help me please! Any help/guidance in solving this problem would be greatly appreciated.
    I hope i get a reply in terms of solving this problem.
    vishal

    Hi,
    About iTextSharp component issue , I think this case is off-topic in here.
    I suggest you consulting to compenent provider.
    http://sourceforge.net/projects/itextsharp/
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to Print a text in bold format in a classic report ??

    How to Print a text in bold format in a classic report ??

    hi
    u can use
    <b>FORMAT  INTENSIFIED ON.</b>
    regards
    ravish
    reward if useful

  • Unable to turn column headers bold in Word table using VB Script

    I have created a table in Microsoft Word 2010 using VB Script (this is via the script engine that forms part of HP Quality Centre functionality).  The table itself is OK, 2 columns with centred headers.  However, I am unable to make the column
    headers bold.  I have spent hours searching the net and trying various options to no avail can somebody please help me.
    Set objWord = CreateObject("Word.Application")
    Set objDocument = objword.Documents.Open(Src_Dir & template_file
    Const wdAlignParagraphCenter = 1'var to control justification of the table columns
    Const NUMBER_OF_ROWS = 1 'number of rows in intial table
    Const NUMBER_OF_COLUMNS = 2 'number of colums in the intitial table
    'search for the "TAA_TABLE" bookmark embedded in the document template, this is where the table will be created
    Set objRange=objDocument.Bookmarks("TAA_TABLE").Range
    'create the table
    objDocument.Tables.Add objRange, NUMBER_OF_ROWS, NUMBER_OF_COLUMNS
    Set objTable = objDocument.Tables(2)
    'populate column headers
    objTable.Cell(1, 1).Range.Font.Bold = True
    objTable.Cell(1, 1).Range.Text = "Sub Contractor"
    objTable.Cell(1, 2).Range.text = "TAA Number"
    'centre the column headers
    objDocument.Tables(2).Rows(1).Select
    Set objSelection = objWord.Selection
    objSelection.ParagraphFormat.Alignment = wdAlignParagraphCenter
    'format the table with plain grid lines
    objTable.AutoFormat(16)
    'set the column widths
    objTable.Columns(1).Setwidth 230,0
    objTable.Columns(2).Setwidth 230,0
    Any help is graetfully appreciated, as this is driving me wild.
    Cheers,

    Hi Citronax,
    I haved noticed that you used objTable.AutoFormat to format the table. Based on my understanding, this fuction will applie a predefined look to a table.
    After I move the code which bolder the text behind this line of code, it works well for me.
    'format the table with plain grid lines
    objTable.AutoFormat (16)
    objTable.Cell(1, 1).Range.Font.Bold = True
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Bolding rows in RTF template using tags

    In an rtf template, is there a way to bold an entire row in the table using tags rather than building two rows (one bold, one unbold) and put them in a if condition?
    if
    [BOLD ROW]
    else
    [UNBOLD ROW]
    end if

    This should do it
    <?if@row:number(EMPNUM)=10003?>
    <?attribute@incontext:font-weight;'bold'?>
    <?end if?>
    slot this into a cell on the table row
    Tim

  • Text Layout Framework Bold & Italic don't work on Linux

    Hi,
    The bold and Italic in Text Layout Framework is not working on Linux with Flash Player 10.1.85.3. Please verify at this link http://labs.adobe.com/technologies/textlayout/demos/ on Linux, by trying to do bold & italic to some text.
    is this a problem with Flash Player 10 ?
    Any help is appreciated.
    Thanks,
    Avi

    Thanks Richard,
    The Bold/Italic variant of the font should be present on the client's machine. Now I am finding solution to how to display the fonts which Bold/Italic variant are not present on the client's machine. One way can be embedding the fonts. Anythings else?
    Avi

  • Display data in bold and red in color in side a table control cell

    Hi,
    I need to display data in side a Table Control cell with Bold and Red in color, can any body help me how to do it.
    Regards,
    Srinivas

    The gui does not support the coloring in table controls.  You can set the hightlight attribute, but this will only make the text blue in color. There is no way to make it any other color.
    Regards,
    Rich Heilman

  • I have songs that have been purchased and they show up in my I tunes but the are not showing up bold like all other songs in my library, they will not let me download from the cloud and will not load onto my ipod.

    I have a handfull of songs in my library that are not showing up bold like the other songs. When I click the icon to download from the cloud nothing happens and they will not load onto my ipod. When I look for them in the purchased area they show up as purchased and downloaded.

    Welcome to the Apple Community.
    So far as I am aware, books haven't been available for 6 years, so I'm wondering if you mean audiobooks.
    Audiobooks are not currently part of the content that can be re-downloaded.

  • How do I enable bold/italic text formatting in blog module on website?

    For some reason I can't figure out how to enable more text formatting options on our blog. We used the blog module on a muse template. I customized the module to apply fonts we used on our website. The main text on the blog is Lato.
    Link to blog: Coupar Consulting
    When we go in to write a post you can use the bold/italics options and it shows up in the edit window as shown in the screenshot below:
    The font is not correct, but because I set the font in the module to use Lato it does show as lato when you publish, see preview below (notice no bold or italic text):
    What am I missing??
    Thanks in advance!!

    Use your browsers console and inspect tool. This stuff becomes very easy.
    address,caption,cite,code,dfn,em,strong,th,var,optgroup
      font-style: inherit;
      font-weight: inherit;
    Line 34 ish in - http://www.couparconsulting.com/css/site_global.css?3869595648
    This overides the font bold style on strong.

  • Bullets (numbers) in bold type, text in regular...impossible?

    I've searched high and low and could not find a solution to my problem:
    How can I format a bullet (in my case, numbers) WITHOUT formatting the text next to it. I mean, bullet in bold and text in regular type.
    Am I missing something or is this not possible in Keynote?
    Any help is most welcome.
    Dan

    Option-click will select just the bullet
    Shane

  • Bold a dynamic text box is not working...

    Dear Friends,
    i neeed to create a text box with bold letter. my coding is as follows.
    but it always shows bold, even i gave tf1.bold = false.
        reptitle.text = options[0][0].tit;
        var tf1:TextFormat = new TextFormat();
        tf1.color = options[0][0].col;
        tf1.size = options[0][0].siz;
        tf1.bold = options[0][0].bol;
        reptitle.setTextFormat(tf1);
        trace("bold :"+tf1.bold + " dat :"+options[0][0].bol);
    Note: where options[0][0] is an array has all the properties bold = true/false, color = 0x----.
    Any body can clarify me.. i got struct up..pls..
    Thanks and Regards,
    Syed Abdul Rahim

    you'll need two textformat instances (one with bold enabled and one without) to display text with both bold and non-bold text at the same time with setTextFormat.  if you just want to change the text from bold to non-bold (and vice-versa), you can use one instance.

  • Need Help : Urgent : Making one of the record Bold in a Table

    Hi Frds,
    I am new to OAF.......
    I am  facing the issue that i have to make one of the record bold in a table...........
    By using the query, i m trying to display the payslip
    It contains the list of Earnings ,Deductions and NetPay amount..........
    this is the part of the query........
    select payment_date,element_name,arabic_name,val,balance from
      select '0' flag,assignment_id,null payment_date,'Payslip for the Month'  element_name,to_char(payment_date,'Month-YYYY')arabic_name,
       null val, null balance from xx_payroll_info
    where 1 =1
    and payment_date = last_day(:2) 
    and assignment_id = (select assignment_id from xx_people_reporting_info
        where person_id = :1)
    union all
    select '1'flag,assignment_id,payment_date,element_name,arabic_name,
       value val,null,balance
      from xx_payslip_details_mv
    where 1 = 1
    and payment_date = last_day(:2)
    and earn_deduct = ('E')
    and assignment_id in (select assignment_id from xx_people_reporting_info)
    union all
    select '2' flag,assignment_id,payment_date,'Earnings-Total',null,sum(value) val,null
      from xx_payslip_detail_mv
    where 1 =1
    and payment_date = last_day(:2)
    and earn_deduct = 'E'
    and assignment_id in (select assignment_id from xx_people_reporting_info
           where 1 =1
                and person_id = :1 )
    group by assignment_id,payment_date
    My Requirement is : I have to make the Payslip For the month of , Date, Earnings-Total  into Bold.....  How can i do this.... plz... help me out in this......
    Thanks &Regards,
    Jaya

    Hi Jaya,
    Set CSS Class property as  OraDataText for respectiveb column.
    OR
    /In Controller PR
                    import oracle.cabo.style.CSSStyle;
                    CSSStyle customCss = new CSSStyle();
                     customUnCss.setProperty("text-transform","uppercase");
                     customUnCss.setProperty("font","bold 16px \"Trebuchet MS\", Verdana, sans-serif");//# -red
                     OAMessageStyledTextBean styledTextBean =(OAMessageStyledTextBean)webBean.findIndexedChildRecursive("POCommentsItem");
                     if(styledTextBean!=null)
                      styledTextBean.setInlineStyle(customUnCss);
           Thanks,
            Dilip

  • Problems with Media and my Blackberry Bold, is it time for me to give up on RIM this is really annoying

    Hello RIM,
    Over the past year since owning a Blackberry, I have had on-going issues with syncing my music between my (2) bolds, so I know this is not specific to the hardware, I have also managed 400 BB's on a BES before so I have a fair idea of how to do things and troubleshoot issues.
    1. My music many times has sounded severely distorted through my car speakers, with lots of bad crackle that hurts my ears
    2. Transferring media between my device and my computer is actually really annoying and now I can't even find my playlists on Windows 7
    3. This should be seemless, it should not be buggy and I can't believe, having done so much support with your hardware and software that this continues to be a real problem for me
    I have a playbook, 2 blackberry bolds (I had to buy another 1 because Mobilicity does AWS only and Bell was just plain mean to me so I gave up on them).
    I am ready to go on ebay and get rid of this stuff because whilst I mostly use it as a phone (the reason I went with BB), it is important that I am able to do other things with it, without having to go through a dozen articles and issues just to get things to work, these should have been ironed out in the bug reporting process.
    So I have reinstalled both Itunes and BB Desktop Manager, both manually and via repair and tried even recopying over my playlists, this doesn't work.
    I can't believe the lousy support and buggy software, come on RIM, there is no excuses in this market, PICK UP YOUR GAME and update the BDS or I am done and so will the many other people who won't even take their time to write anything about it on here but vote with their wallet.

    Well you know the playbook is actually pretty cool but didn't seem to be ready to go out on time and being a late entrant to the market I would have expected them to showcase the playbook better, especially like how Nintendo gets out there and gets everyone playing with it hands on, there are some things about the Playbook that actually make it unique but it has been poorly marketed.
    Unfortunately getting BDS and everything to work properly should not be an issue, I have already spent thousands of dollars on hardware and my phone provider, what am I actually paying for here? So I will spell out some things that make the Blackberry Playbook special and what I would have been pushing had I been in charge of marketing. Firstly I would have had a few different campaigns going, one that targeted business corporate customers, regular business customers and the public that use them as their choice of smartphone and open to potentially buying one.
     1. Flash works really great, come on blackberry, why couldn't you team up with Facebook on this one? Facebook looks better on a Playbook than any other tablet I have seen, in fact the web looks better in general.
    2. Stereo speakers(dual), movies sound great, music sounds great and so do games, in this area, Playbook has the upper hand.
    3. USB & HDMI out - Allows much easier portability of presentations and transferring of files and now I believe there is the Wifi Sync as well.
    4. Blackberry Bridge - You know it's like RIM got backed into a corner on this one, but you know, I think this is the most secure way to operate a tablet, I love how when I turn off bluetooth on my bold, my personal and private information is removed and I can pass it to friends and family without my personal communications being looked into, with the other tablets, it's pretty hard to have different people on them, without probably creating different profiles, with the Playbook, you could share it between a team and it would seamlessly operate between them.
     5. True Multitasking - You know, you can play music, whilst playing a game and you can switch between applications, this funtions pretty awesome. I put on some cool music and loaded up a game on the device and someone whom had an Apple device was sincerely impressed he could listen to music whilst reading or playing games etc. This could also enhance Business Presentations that require audio in the background whilst displaying and going through different information / files or charts.
    6. QNX OS - I mean wow Blackberry, this Operating System is fantastic, I love it, this was an EXCELLENT choice and this I will give you 5 stars on, I can't wait to see what QNX can do on the Blackberry and I would not be surprised if the QNX OS became a major OS against the others, it definitely is polished and apps just install and are ready to go in no time.
     RIM has been ahead of the game and because of it's great name with-in business circles they have almost sold themselves and whilst it's nice to see that RIM has sold over 250,000 units with-in the first week this could have been drastically improved by realizing when getting into a NEW market, they need to do the proper marketing and get the devices out there with subject matter experts to educate people whom are checking them out so they can share that information with their friends.
     Google paid a very large price with their Nexus One because they where over-confident and thought they would sell based on their name alone, this could have been a learning curve RIM did not have to deal with. There are actually other nice things about the Playbook, the apps that are in their app store are pretty cool and when Android apps are available it will be cooler.
    I like the size of the tablet I can comfortably reach accross the screen to hit all the keys on the digital keyboard making it any larger and I couldn't hold it in my hands with the same comfort; copping out to apple fan boys thinking they must have a 10.1" tablet is not necessary, this is the perfect size to sit in your hands, some people think they are small but if they actually watch a movie or play a game on it or look at websites by "Playing with it themselves" they will react differently and actually suggest if your going to do a 10.1" tablet, also keep the smaller sized one as well.
    Suggestions :
    - Working on building in more extensions for gaming such as Unity so that games like battlestar galactica online etc could be played online and directions could be replaced by using the gyroscope.
     - Hire more people if you are having problems meeting deadlines, these companies, including Apple are taking risks to win the market, if your going to take a swing at your competitors, please make it a punch and not a jab, the biggest thing you still have on your side is the market you already had and the market share you have been losing and since we all upgrade our devices so often at this time, come out with something special and we will continue to support you. Okay now that I have that off my chest I feel better. DAMMIT !

  • Bold a single row in a Report based on SQL Query

    Should be easy? So, how do I bold a single row in a report based on SQL query without creating a new template or writing Java for the page? What is the Tabular Form Element "Element Attributes" field for? Or what am I supposed to put in there to make it do anything?

    One way to do this is to add a hidden column to your report which contains the formatting value, for example:
    select empno
    , ename
    , sal
    , decode(empno,1,'font-weight:bold','font-weight:normal') style
    from emp
    Hide the STYLE column.
    Then you can use this column for each column in Column Formatting > HTML expression in this way:
    <span style="#STYLE#">#SAL#</span>
    Unfortunately you have to do this for each colum you want to appear bold.
    good luck,
    Dirk Dral

  • Follow Up Feature on Bold not on BB Classic - would be great to have it

    Follow up feature with sync to Outlook is a critical business feature that made BOLD a fantastic choice. I recently moved from Samsung to BB Classic hoping to use the old BOLD keys with the FOLLOW UP feature which is not as good in other mobiles including Samsung. However I am disappointed to see that this feature is missing! I would strongly recommend that this be included. I was also one of the many who expressed disappintment when Z-10 and the rest was launched with the classic BB keys missing. I am glad that BB is back with CLASSIC based on such feedback from many die hard BB fans. However the follow up feature is as critical as the trackball and I urge BB team to fix this urgently !!

    greghcrash wrote:
    It Would be great to have keys on the onscreen keyboard.
    Such as a computer keyboard.
    With BACKSPACE, TAB WITH SETTINGS, DELETE, TYPE OF TYPE, BOLD TYPE, UNDERLINE ETC....
    I HAVE A KEYBOARD COVER AND IF I NEED TO USE CERTAIN KEYS I HAVE TO SWITCH TO MY KEYBOARD CASE AND THAT IS VERY INCONVENIENT.
    IT IS ALSO A TIME WASTER.
    When you installed iOS 8 did you read about the new features? Applications can create custom keyboards…
    http://www.imore.com/custom-keyboards-ios-8-explained
    You need to look for an app that has a custom keyboard with the features you require, I suggest you find one without CAPSLOCK
    greghcrash wrote:
    IT IS ALSO AGGRAVATING WHEN TYPING AND IT AUTOMATICALLY CHANGES THE WORDS THAT YOU WANT TO USE.
    THANK YOU FOR YOUR TIME
    Again you need to look at how to manage the device - these settings can be turned off already & you can edit the 'suggestions' too.
    Settings > General > Keyboards > turn Auto-Correction Off.
    Sadly you cannot disable autocorrect temporarily, so it's all or nothing.

  • I saved a word file onto my imac.  when i go to open file in documents with pages the file is grey and unable to open.  the workable files are highlighted in bold.  is there a way to open this file????

    i saved a word file onto my imac.  when i go to open file in documents with pages the file is grey and unable to open.  the workable files are highlighted in bold.  is there a way to open this file????

    THis is safe for Mac's? Sorry, I have just never heard of this site before.
    And there are literally tens of thousands of sites of which I've not heard, too. Not this one.
    It's legit. There are lots of links in Apple Support Communities to the LibreOffice web site, as well as others that are legitimate open-source developers of options to buying MS Office, such as NeoOffice and OpenOffice. I have Open Office installed on one of my older Macs that can't run Office 2011 and it is rock-solid.
    I've been here too long to start posting bogus urls now.

Maybe you are looking for