Tagged Questions

Bold for Delphi is an advanced Object Relational Mapper (ORM) and application framework.

learn more… | top users | synonyms

14
votes
3answers
240 views

How to increase testability?

Background I work in a team of 7 developers and 2 testers that work on a logistics system. We use Delphi 2007 and modeldriven development with Bold for Delphi as framework. The system has been in ...
12
votes
10answers
1k views

Any active Bold for Delphi users?

What are you using as a persistance framework when programming in Delphi? If the application is growing it soon became really complicated to handle the model in SQL ? Bold is a persistance framework ...
7
votes
1answer
1k views

How do I style html5 canvas text to be bold and/or italic?

I'm printing text to a canvas in a pretty straight forward way, as shown: var ctx = canvas.getContext('2d'); ctx.font = "10pt Courier"; ctx.fillText("Hello World", 100, 100); But how can I change ...
7
votes
3answers
2k views

How does one output bold text in BASH?

I'm writing a bash script that prints some text to the screen: echo "Some Text" Can I format the text? I would like to make it bold. Thank you.
4
votes
2answers
248 views

Problem in firefox vs chrome with bold text and double borders

I'm working on a site and I have some problems that I hope you guys can help me with :) If I put bold on my text in the menu it looks too bold in Firefox :S, but it looks fine in Chrome. In Firefox ...
4
votes
3answers
2k views

Same font yet its weight seems different on different browsers

Screenshots of the text in different browsers. The text is correctly displayed in Chrome, that's how I want it in the others too. UPDATE: Fixed in Safari with -webkit-font-smoothing: antialiased; ...
3
votes
2answers
308 views

How do I turn off all font hinting in gvim in Windows 7?

I have a font display problem while using gvim in Windows 7 with the Terminus font. Here's a sample: 1x 3x I'm pretty sure it's trying to display casesensitive in bold, but Terminus.ttf is meant ...
3
votes
2answers
2k views

Need to make selected text as bold/italic/underline using javascript, and also save & retrieve the same using c#

I need to make selected text of textbox bold/italic/underline using javascript. For that i am using the following code. <img src="~/images/Bold" alt="Bold" onclick="changeFont('TextBox1','b');" ...
3
votes
1answer
360 views

Can CSS override the bold style of an existing <b> bold tag?

I have a script that has a breadcrumb styled outside of my reach (core files), and I want to override all its styling using CSS. The text looks like this: <div class="someclass"> <b>Some ...
3
votes
1answer
2k views

How to make a TextView bold?

I want to be able to make a TextView bold. This is how I am setting it's appearance (I need to do this in code): nameText.setTextAppearance(getApplicationContext(), R.style.BlueText); ...
3
votes
1answer
2k views

how to close a popup screen in blackberry bold

hey i have displayed a pop-up screen when i click on a menu item now i want to close that pop-up screen when user presses escape key.but it does not work and remain stuck,till i click on a button on ...
3
votes
2answers
1k views

LaTeX - Making a lighter version of text, like anti-bold?

I'm making a LaTeX document for someone. A certain piece of text looks "bold" for them, even though I'm not using the \textbf command. It's just a normal default LaTeX font. Is there any command to ...
3
votes
3answers
136 views

Why does bold monoface shift vertically on Windows?

In Firefox 3.6, IE7 and Opera 10 on Windows, this HTML has an odd behavior: <html><head></head> <style> span { font-family: monospace; background-color: green; } span.b { ...
3
votes
2answers
2k views

Android Textview Italic and wrap_contents

I am using 3 italic textviews with different colors <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" ...
3
votes
1answer
643 views

How do I bold portions of a bound TextBlock?

I have a TextBlock bound to a property. However, I'd like to bold certain words within the text. What is the easiest way to do this? FYI, I'm new to WPF.
3
votes
2answers
3k views

wpf listbox change individual items to bold

I want some of the items to be bold depending on a property of an object i'm putting into the listbox. I think you can do it with changing templates but can't seem to find an example. Thanks!
3
votes
1answer
572 views

Attribute BOLD doesn't seem to work in my curses

I use something like this: screen.addstr(text, color_pair(1) | A_BOLD), but it doesn't seem to work.. However, A_REVERSE and all others attribute does work! In fact, I'm trying to print something ...
2
votes
0answers
53 views

Blackberry Bold- Unable to recognize URLs and even custom patterns registered

We have a blackberry native app deployed on a BB Bold 9700 (OS Version: 5.0) The app registers a custom pattern of the form string://[0-9]* . Strings matching the pattern get highlighted but the app ...
2
votes
3answers
122 views

php mysql search script, how to make matched results bold

I have a script below which reads on displayed information from my mysql database on my webpage, how can I make matched results bold please? for example, if I searched "john" how to make the displayed ...
2
votes
1answer
102 views

Formatting specifc lines of text in WPF RichTextBox

In a WPF .NET 4.0 RichTextBox with the following text: Apple Cheese Orange Pear Chicken How would I programmatically with C#, (not with XAML markup), bold all lines that start with the ...
2
votes
2answers
278 views

iPhone - Detect whether text is bold/italic?

Given a UIFont or a CTFont, How can I tell whether the font is bold/italic?
2
votes
1answer
126 views

Making the first N letters in a string bold?

I am trying to make an autocomplete form that will bold the letters in the results as you type. The function I have made doesn't work: function setBold () { var text = ...
2
votes
3answers
245 views

Using Bold font for setting a Datagrid forecolor

How do I make the font of a forecolor bold when I use this below code dg.ForeColor = System.Drawing.Color.Black; How do I make it bold? Thanks, pooja
2
votes
3answers
2k views

iPhone UIFont boldFont With name

I have looked at the headers for UIFont but it has all class methods and only one instance method and some useless properties. I would like to know how to set the font to have a font name, and bold ...
2
votes
1answer
751 views

Bold labels in MFC

I want to create labels in MFC (Static text) that have both bold and non-bold text. Something like this: "I would like my label to look like this, for example" Any thoughts of how to do this? I ...
1
vote
2answers
74 views

How to dynamically make bold a single row in JList?

I need to make bold a row in a JList component to show the active row. It should be done dynamically to let user see the change in the active row immediately. How can I do this?
1
vote
3answers
48 views

HTML : Text after empty bold tag also displayed in bold formating

This might be very basic question. but I am trying to understand why browser behaves like this.. I have following text in html document. <html> <body> This is Sample Text. <B/>Text ...
1
vote
2answers
118 views

how to include bold tag in my windowsform .cs file?

I currently have the following code: Label lbltxt = new Label(); lbltxt.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, ...
1
vote
2answers
51 views

How to have a bold header text?

I can't find out how to give my header text some (bold) like on this design. Here is my html/css project. There is something wrong with my footer too, I can't give it margin-top or margin-botton :/ ...
1
vote
5answers
454 views

Making specific Text Bolded in a TextBox

Hi I currently have a texbox that prints prints out info to the user when they press diffrent buttons. I was wondering if there was a way to make only some of my text bolded while the rest isnt. Ive ...
1
vote
0answers
127 views

ajax function broke on Blackberry OS/6

I was using XUI javascript library for Blackberry web application (OS 4.7 and 5.0). I just tried code on Blackberry Bold with OS6. Problem is that http ajax calls to remote server fail. No errors ...
1
vote
1answer
175 views

Make textview's content with both bold and regular text

I'm using a textview to hold a string coming from a web service. String comes with a format like this. "sample text {{b}}bold text{{/b}} and so on". I need to show the bold text bold in my textview. ...
1
vote
1answer
116 views

table element ignoring font-weight in firefox 4?

I'm not sure if this is simply an issue with firefox 4, but I have tried absolutely everything, additionally I have search for hours trying to discover a solution for a problem that it appears no one ...
1
vote
2answers
306 views

How to move bold text to another richtextbox?

Okay, I will just leave my code here. As you can see from that code, there is a button to make text bold, but not the whole text, just next things user is going to write. For instance, when user ...
1
vote
1answer
297 views

XCode 4 - Build settings : default values are still bold

I have a project with 2 targets. On both, there are some build settings I've changed to Yes, then back to No. The iOS default is NO, the project is on NO, each build setting is on NO... but the ...
1
vote
2answers
387 views

Text editor in Java with sample functions for desktop application

I have a project, I'm creating an application in Java and I need text editor with sample functions (Bold, Italic, Size, Align, Undo, Redo) . So is there a class in java for this purpose or a tutorial ...
1
vote
3answers
314 views

A part of Text should be bold in jList

can i set a part of the text in a jList bold? in some component i can set the text with html-marks to bold but not here.. is there any other way to do this?..
1
vote
2answers
1k views

Underline / Bold in UITextView

Is it possible to underline or embolden certain bits of text in a UITextView? For example my Text View has headings in it, and would like those underlined... Random Mode In random mode, you ...
1
vote
2answers
528 views

BoldDays for TDateTimePicker?

I'm using Delphi7 and I'd like to bold some days of a TDateTimePicker control. I've read that originally, it's a descendant of TMonthCalendar, thus it should be possible. I've also found some example ...
1
vote
5answers
105 views

Customizing bold stuff with CSS

I don't think my bold text in a webpage are bold enough, so I was wondering if there were any ways I could tweak bold text with CSS.
1
vote
2answers
524 views

How to print BOLD text in here doc in Perl?

I am using the here doc to print usage messages for the user. Is there a way to print specific words BOLD similar to the man pages on unix. I am using this on Unix. Is there a way to use ...
1
vote
1answer
358 views

bold text (uiwebview) not showing in iphone4

I have html file in resources folder to load in uiwebview. I need to get bold text styling. iphone4 is not showing bold text at all. it's working fine in iphone 3Gs and ipod. I tried... ...
1
vote
4answers
947 views

How to print bold string in C++?

I got an old application which was written in a C++. I have 0 experience with it but I am suppose to make some changes in app. One of them is to change some text. Problem is that part of updated text ...
1
vote
0answers
31 views

How can I find all the supported weights of a Font in Java?

How can I find all the available font weights for a given font in Java? The TextAttribute for font weight lists 11 different weight constants, way more than just Font.PLAIN and Font.BOLD. I'd like ...
1
vote
2answers
181 views

How to bold text With Compact Framework

I have an app written in C# for the compact framework (3.5). I am trying to display some text on the form in bold. The Label class does not give me the option to bold my text (I can make it bigger, ...
1
vote
2answers
550 views

TreeView text clipped if font changed from bold to regular

I have a WinForms TreeView. The TreeView represents a summary of more detailed views and one of the visual cues I am using is to make a node's text bold or regular. The trouble is, if you change a ...
1
vote
2answers
643 views

How to disable bold (font weight) globally in emacs?

I hate bold text while coding. Is it possible to disable bold text (and underline) in every single file and emacs's interface?
1
vote
3answers
5k views

Make ABC Ordered List Items Have Bold Style

I have an html Ordered list with type set to "A" <ol type="A">...</ol> Thus, each list item will start with A, B, C, etc. I would like to style the A, B, C letters to be bold. I have ...
1
vote
4answers
6k views

What is the Constant Value of the Underline font in Java?

What is the Constant Value of the Underline font in Java ? Font.BOLD bold font Font.ITALIC italic font What is the UNDERLINE font Constant ? I try all the available constants but it didn't work . ...
0
votes
0answers
7 views

How to bold several parts of a string in a iframe set to design mode?

I have a list containing start and end boundaries: var boundaries = [[3, 6], [7, 18], [43, 44]] And a string in a iframe with design mode set to on. I want to be able to bold parts of the string, ...

1 2