[resolved] Replacing this character -
I would like to replace that black character in the picture that is attached. It doesn't matter if the format is messed up.
i've tried:
Text1.Text = Replace(Text1.Text, vbCrLf, "")
Text1.Text = Replace(Text1.Text, CrLf, "")
Text1.Text = Replace(Text1.Text, vbCrLf, "")
Text1.Text = Replace(Text1.Text, vbNewLine, "")
but none of those does anything
Replacing a Certain Character (resolved) -
Hello. I want to replace a very specific character with another
character, going by the number. This meaning, i want to replace
characters by which character they are.
Lets take the string "abcdefghijklmnopqrstuvwxyz". I want to be
able to take, say the fifth charact
Sql " ' " -
What's the best way to deal with using the (' ASCII 39) character as an entry into a database? Is there an easier way that simply replacing it with another character that may be used?
The database is SQL Server 2000, but I don't think that matters.
Any comments will be appreciate
encryption. [resolved] -
I'm quite sure there is an inbuild encryption function in PHP. What is it called and how do you use it? More importantly, will the string returned ever contain the character ";"? I need that character to seperate the items in the list, if the encrypted strings contains this c
changing the Character map -
Basically, what I am doing is breaking down a very simple programming language into a Mnemonic file. I have about 60 control characters that I am replacing and then breaking the file down into an englishized listing so that users can edit the results, and then recompile. Right now I
Help finding a string character. -
I want to be able to place a certain character as a caption in a label. However, i can not find this character in the Windows Character Character Map.
The common name for this character is the 'X Bar'. Which consists of an uppercase X with a horizontal line above it.
Any help in
Replacing a "Return Character" with a Space in a String -
Hi all,
I am selecting a comment field from my database and some of the comments contain a "return character" ("||"). When I print these out, the return character forces a new line on the printout, which I do not want. How can I replace a return character in a
[resolved] Replacing this character -
I would like to replace that black character in the picture that is attached. It doesn't matter if the format is messed up.
i've tried:
Text1.Text = Replace(Text1.Text, vbCrLf, "")
Text1.Text = Replace(Text1.Text, CrLf, "")
Text1.Text = Replace(Text1.Text, v
Prevent input in textbox after a character (resolved) -
Is there a way to prevent user from viewing and input from a textbox AFTER a character like "{" ? In another words, txts after { is not viewable and user is not able to input after this character and shift the arrow key to view...
Regards
Goh
Added gr
need help with my project -
ok i need help with making my project read a text file but i want it to put the code into different text boxes
like it puts the [ACCOUNT] for it self and the text under it and [CHARACTER] for it self and its text for another text box and so on and i want to be able to edit it in the pr
Read 1 character from file -
Hi,
I have a script which reads some or all lines from an text (log) file
but I only need 1 character,
I am using a textstream object to skip the first 15 characters, and the next character is the one I need,
but as result I get the 16 th character and everything what comes af
Serialization Frustration -
Hello all, I'd like to start by wishing everyone a happy new year and I hope you all have a safe and prosperous one.
Now, onto the show...
So as some of you are probably aware I am working on a client/server based application and I have run into quite a few snags.... stumbling my
Character to value *Resolved* -
Hi,
Is there a method to convert a character, (say the letter 'a'), into its corresponding Unicode value? It has to be Unicode, as I am working within Windows CE.
Cheers
Character Replacing -
I have been trying to make a program where you type text in a text box and the text appears in a label below but it is encoded. The encoding is shown below. I really have no idea how to make the program but what I did make didn't really work because when you delete a character in the t
How to find what the first character in a textbox is(resolved) -
How would i find the first character in a textbox?
So say the text was..
"/whoami"
how would I tell that the first character was a "/"?
What i want to do is, if the first character of the textbox is "/" then a certain thing will happen.
Thanks.
Overwrite character -
Hi,
Visual Basic
I have a text box of 1 character . I have entered a character.
Now I want to overwrite the charracter. How do I do it.
I dont want to use backspace ..... delete the character and then
agaian enter the character .
I want to overwrite it. ......... Is
Make input box ***ed -
How do you set it so that the values being entered into an input box are able to have a certain character replacing them such as "*********"?
displaying chinese character on flexgrid -
hihi..
how can i display chianese character on a flexigrid? i have set the font to arial unicode MS. but it display "???" How can i resolved that?
???
ocw
problem with fstream's eof -
Hi everyone.
I am using code like this:
while(!ifs.eof())
cout << hex << ifs.get() << '\n';
The file that I am using has exactly 283,858 bytes (i.e. it is fairly large); however, the thing thinks the last character is character #21,018
What is the escape character for " in a string***Resolved*** -
I need to put number of double quotes and forward slashes inside string argument...Though this is trivial I dont know what is the escape character. Can some'ne tell me that.
Thanks
[VB6] ZapCtrlZ - Copy text file replacing EOF char -
Every so often we stumble over a Ctrl-Z "EOF" character embedded within a text file.
These Ctrl-Z (decimal 26, hex &H1A, also known as ^Z) characters are treated as an EOF symbol by VB's traditional text I/O operations: Input#, Line Input#, etc. This is a carryover fr
VBF Swear Filter -
Instead of replacing **** with **** or any other profanity with asterisks, how bout replacing them with "polite" terms?
**** = frumple
**** = shazzam
(any other words?)
This Sucks (RESOLVED) -
Why does a project in .net not refresh when deleting items like VB6 does?
If you change your mind and decide to go with something else, like replacing a tab strip with a Microsoft Tabbed Dialog Control.
Is it just me?
Am I not doing something??
Newbie replacing the .x file *resolved* -
Well I'm a bit new to Direct X. Last year I tried DirectX ... but at the end I was only doing Direct Draw ....
I just (some minutes ago) did a 2nd attempt to learn DirectX (8).
I download an example. In the example a .x file is loaded and is turing around. A friend of mine made s
(RESOLVED)Deleting the last character from a string. -
Just a quick question, how can I delete the last character from a string, or from the text in a text box?
Thanks
[resolved] getting rid of the box character -
I'm trying to get rid of the boxed character which i think is just a new line, but i've tried text1.text = replace(text1.text, vbcrlf, "") but it won't remove it.
I've attached the project so you can see what i'm doing. In list1, it contains the item + the boxed character.
<RESOLVED> Finding first character in string -
I have a serverless LAN chat program and I am trying to add an active user list.
Long story short, I need code to find the first character of the incoming string (to see if it is a message or command) then remove it and either display it or run the command accordingly.
Any help i
replacing character -
Hi,
I have a string "WHJAOSAJLDSL000OO00"
What I would like is to replace each "O" with a zero "0"
any ideas?
Adnan,
Please help me see my code what is the problem...It end out diffrent output.. -
Code:
Dim j As Long
Dim f As String
Dim r As String
Dim d As Long
Dim v As String
d = 50
For j = 1 To Len(Label9.Caption) Step 1 'calculate the label character length
If j < d Then ' if the character length less then
replace char -
I have a simple little piece of code that is supposed to replace any -'s in a string and it doesn't seem to be working. Anyone have a reason why?
It is finding the character because it's executing the replace, it's just not replacing it. The confir number before i run this is 84
Replacing the " character within a string -
Here's an interesting problem :
I have a text box in which the user can write a text . However in that text , the user may contain the " caracter . This may cause problems within the VB code when trying to retrive the text from the text box :
MyString = MyTextBox.Text
Therefore
[resolved] VB Applications -
hello.. hw can i make vb appkication, which asks the user for first name, middle name, and title and address. it displays first character of the first name, first character of the middle name and the title on one lable and address on another label..
thnx for rplyin..
replacing characters in a string -
I want to do some checking on a string before I write it into a database. Here is the steps I want to do:
I want to check the length of the string up until a seperating '|'. If it is a certain length I want to change a character in the string, can anyone give me any ideas
cheer
Replacing a character -
Hey; sorry this is a double post but i cant find my original post.. Is there a simple way to replace a charactor between textboxes? Like say "****" Came through it could change it to like "****" or if i wanted to convert A to 47 when i encoded something?
Thanks
String Replace -
Is there a function in the Java API to replace strings ? There are methods in the String and StringBuffer objects to replace a single character, but is there any such method for replacing an entire string?
.
How to tell if string contains specific character -
Is there a function to tell if a string has a certain character in it.
I can use a loop to check character by character but is there an easier way??
I tried using instr but could not get it to work.
Thanks.
*Resolved* How can you remove the character the user has just entered -
I'm writing some data validation to restrict users from entering the apostophe ' character into a textbox. As soon as they press on ' it will display a message and remove that apostophe from the textbox. How can you remove the character the user has just entered?
this is what I'm tr
computer being extremely noisy{resolved} -
The fan in my computer sometimes works and sometimes doesn't. Lately it has been making very loud anoying sounds. I was thinking of either replacing the fans or getting a can of air and blowing it out. Anyone have any suggestions?
Richtextbox inserting extra carriage returns -
I've been noticing that the Richtextbox inserts an extra carriage return when working with a block of text over a page long. What brought this to my attention is that I have a small text editor that has to edit files that occasionally are two or three pages long and I'm finding that i
How to escape the semi-colon character in mysql -
How do you escape the semi-colon character mysql?
I am inserting data into a database using:
Code:
INSERT INTO tbl_name (col1,col2) VALUES('hello','on error;');
the problem lies in having an ';' char in the second string. I have tried replacing it with '\;' and & # 0
Replacing ATX Motherboards -
Replacing Mother Boards
Are ATX style motherboards interchangeable? Assuming that you install the proper CPU and RAM. If not how can I find out which boards are compatible with my computer.
What is the best board and CPU on the market today?
Thanks
Art