text + textWhat is "text + text" supposed to do right now? It doesn't seem very
useful to me. What about making "text + text" as an equivalent for "text
|| text"? Most strongly-typed programming languages do this. And MS SQL
Server too, I think (CMIIW).
--
dave
---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org
Am Freitag, 8. Oktober 2004 12:57 schrieb David Garamond:
> What is "text + text" supposed to do right now?
Nothing.
> What a...
Adding Combo Box Text To A Text BoxI have a combo box and a text box on a form. When I choose a value
from the combo box, I want it to be added to the textbox. I'm able to
do this by using the following code when I click the combo box:
Me!Textbox = Me!TextBox & Me!ComboBox
I now need the additional combo box items to be added on a new line in
the text box each time I click the combo box. I've tried using
Sendkeys "^{Enter} but I'm not achieving the desired result.
I know this is probably very simple, but I'm just not seeing it. Any
help is appreciated.
This will do it:
Private Sub ComboBox_Aft...
text-textWondering how what I input to my UTF-8 terminal gets passed along
through my patched [1] trn ...
Cyrillic:
А Б В Г Д Е Ж З И Й К Л М Н О П
а б в г д е ж з и й к л м н о п
IPA:
ᴀ ᴁ ᴂ ᴃ ᴄ ᴅ ᴆ ᴇ ᴈ ᴉ ᴊ ᴋ ᴌ ᴍ ᴎ ᴏ
ɀ Ɂ ɂ Ƀ Ʉ Ʌ Ɇ ɇ Ɉ ɉ Ɋ ɋ Ɍ ɍ Ɏ ɏ
[1] https://groups.google.com/d/msg/comp.sys.raspberry-pi/7Z37Hdrm0DM/6aqD-reXFzAJ
...
text box dependent on other text box entryI want to have a form with 40 PartNumber text boxes, 40 PartDescription text
boxes, and 40 PartPrice text boxes. The name of each would vary of course,
but I want to be able to enter the part number in the PartNumber in the
PartNumber text box for each replaced part. After the number has been
entered the PartDescription and the PartPrice should show up in the other
respective text boxes. I will be linking to a table that includes 3 columns
labeled PartNumber, PartDescription, and PartPrice. For instance, if I enter
"12345" in the PartNumber text box then the description of the pa...
Show Text box on Top of another Text BoxHi,
I have a text box with conditional formating so if certain conditions are m=
et it display either Green or Red. I want to put another text box on top of=
it (this text box is smaller than the "conditional formating" text box) an=
d have the the text in this text box displayed. Basically I want the condit=
ional text box to form a colour border around the displayed text.
How do I do that?
Thanks,
Barry
On Apr 1, 11:18=A0am, Barry Edmund Wright
<barry.edmund.wri...@witstoronto.ca> wrote:
> Hi,
>
> I have a text box with conditional formating so if certain condi...
Highlighy text in Text BoxUsing an InputBox, there is the option to *suggest* text (Default). It appears highlighted and can
be accepted or replaced by the user. I am attempting to create my own input form which has one Text
Box, one command button (cmdAccept ) and a simple label to tell the user to make an entry. What I
cannot do is to mimic that suggested default input string. Can someone show me how to do it?
The following code is from a test program with two forms.
'#### this is on FrmMain
Private Sub Option1_Click()
' Other Event selected - 14 character maximum
With FrmBGOther
...
Highlight text in text boxI want to highlight any existing text, in a text box, when I click on
it, like when I Tab into the text box. I can't find anything in the
help.
Any help is appreciated
ShyGuy
You can use selstart and sellength properties of a textbox in order to
select any existing text. In order to select the whole text of
textbox01, use,
me.textbox01.selstart=0
me.textbox01.sellength=len(nz(me.textbox01))
Regards,
Ramesh
ShyGuy <shyguy@shytown.com> wrote in message news:<44nhi0d9qnsvdru1lu5l0d3ncuvuqsi39p@4ax.com>...
> I want to highlight any existing text, in a text...
Fit text in a Text BoxHello friends,
I have a curious doubt, imagine I have a text box, and inside, a text that I dont know the lenght. Depending on the box's size and letter's size, I can fit the box. But the box's size is fixed, so I just can modify the size's letter. How can I be right with letter's size, if I dont know the lenght of string (text)? Is there any simple function for this case?
Thanks in advance, greetings.
Pedro Moreno
On 10-08-31 04:25 PM, pedro moreno wrote:
> I have a curious doubt, imagine I have a text box, and inside, a text
> that I dont know the lenght. Depe...
Selecting text in a text boxWhen I attempt to select text in a text box, the text from the cursor
position to the end of the text is instantly selected as soon as I
click the mouse down. There seems to be no way to select just a small
portion of the text in a text box.
This seems pretty basic. What am I missing? I'm using Access 97 on an
XP system.
Steve Richfield
First, (I don't remember if this is an option in 97) check
Tools|Options|Keyboard tab, Behavior Entering Field. This setting will
adjust the behavior for all forms and controls.
Next, you would need to click at the start of the area you want to hi...
PDF Converter ProAnyone know how I can change the default font color and style for text
boxes in PDF Converter Professional 3.0? Thanks.
...
populate text box when user enters data in another text boxhi,
I'm very new to Access and have been searching newsgroups for a few
days but can't find exactly what I need.
I want to be able to do the following:
* user enters patient's hospital number
* after pressing enter, a function fires that looks up the patient
name & surname corresponding to the hospital number just entered (in
the "patients" table)
* if the hospital number exists in the patients table then name &
surname are filled in in two read-only text boxes
* if the hospital number does not exist in the patients table then
user is prompted to enter details for...
Displaying text in a text box depending on selection made in list box on same formHi I have an unbound text box on a form from which the user can choose
a product. When the user chooses a product, I want the text box on the
same form to display the description of that product. right now I can
get it to display the row number of the product that corresponds to
what the user clicked but not the value of the Product Description
which is what I want. The fields in the tables are both text.
here is the code:
Private Sub LstContactProducts_AfterUpdate()
txtProductDescription.SetFocus
txtProductDescription.Text =
LstContactProducts.Column(2,txtProductDescription)
End Sub
Thanks...
Formatting text in edit text boxI would like to be able to format certain words of a paragraph i.e.
change color and make bold etc. The edit text box appears to only
allow plain text. Is it possible to do this, perhaps with another
type of object using ActiveX. Is it possible to embed HTML within
GUIDE?
Any guidance would be appreciated
Many thanks
Nathan Jefferson
Nathan Jefferson wrote:
>
>
> I would like to be able to format certain words of a paragraph i.e.
> change color and make bold etc. The edit text box appears to only
> allow plain text. Is it possible to do this, perhaps with another
> type of...
Deselecting text in input text boxI have a text input box and I don't want the text to be selected either
when the user tabs to the item or if the user clicks on it.
Now the function below which I found from 2002 in the archive works
fine for IE 6 but it works in neither Netscape 7 nor Firefox 1.0.
I'm hoping some of you might have an alternative suggestion or insight
for Netscape and Firefox.
Code that works in IE6:
function clearSelection () {
if (document.selection)
document.selection.empty();
else if (window.getSelection)
window.getSelection().removeAllRanges();
}
<input type="text" name=...