473,414 Members | 1,737 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,414 software developers and data experts.

NEED HELP IN C++

Hello

I need some small help in the Borland C++ Builder.
I need to do something with string in format like "var1|var2|var3|var4|" and
add it to some ComboBox (Items -> Add("var1"), Items -> Add("var2") etc.).

Help me, please. How can i do it in the "while" function or something?

Best regards
Martin


Jul 19 '05 #1
17 5382
Marcin Borkowski wrote:
I need to do something with string in format like "var1|var2|var3|var4|"
and add it to some ComboBox (Items -> Add("var1"), Items -> Add("var2")
etc.).


use the AnsiString.

there are 2 methods. substr and pos ( or strpos ).

AnsiString tmp = "var1|var2|var3";
int charPos = tmp.pos("|");

so you have the position of the |
and with the substr you can copy the part you want

syntax: substr(index, count);

example:
Items->Add(tmp.substr(0, charPos));

delete the elemnt you added and repeat that until pos returns an error.
--
Greetings

Wolfgang
Jul 19 '05 #2
don't work :(
i don't know c++ very well but i need to do some changes in source code that
i have got :(

PLEASE, could you write me some whilte instruction 4 this problem?
I only need to add informations from string in format "var1|var2|var3" to
the ComboBox:

It should create something like this:

ComboBox -> Items->Add("var1");
ComboBox -> Items->Add("var2");
ComboBox -> Items->Add("var3");

Adn i don't know how can i do it in while instruction :(

PLEASE, PLEASE and one more time ------> PLEASE :(

Best regards,
Martin
Użytkownik "Wolfgang Senfter" <ws@wwww.at> napisał w wiadomości
news:3f******@e-post.inode.at...
Marcin Borkowski wrote:
I need to do something with string in format like "var1|var2|var3|var4|"
and add it to some ComboBox (Items -> Add("var1"), Items -> Add("var2")
etc.).


use the AnsiString.

there are 2 methods. substr and pos ( or strpos ).

AnsiString tmp = "var1|var2|var3";
int charPos = tmp.pos("|");

so you have the position of the |
and with the substr you can copy the part you want

syntax: substr(index, count);

example:
Items->Add(tmp.substr(0, charPos));

delete the elemnt you added and repeat that until pos returns an error.
--
Greetings

Wolfgang

Jul 19 '05 #3


Marcin Borkowski wrote:

don't work :(
i don't know c++ very well but i need to do some changes in source code that
i have got :(


Hire a programmer to do it.
That's what we are paid for.
--
Karl Heinz Buchegger
kb******@gascad.at
Jul 19 '05 #4
If you don't know answer 4 my question, don't post, please.
This is not the shop with help.
Użytkownik "Karl Heinz Buchegger" <kb******@gascad.at> napisał w wiadomości
news:3F***************@gascad.at...


Marcin Borkowski wrote:

don't work :(
i don't know c++ very well but i need to do some changes in source code that i have got :(


Hire a programmer to do it.
That's what we are paid for.
--
Karl Heinz Buchegger
kb******@gascad.at

Jul 19 '05 #5
Marcin Borkowski wrote:
If you don't know answer 4 my question, don't post, please.
This is not the shop with help.


Don't top post.

http://www.parashift.com/c++-faq-lit...t.html#faq-5.4

And don't demand help. Ask. So far you have got all what you have payed
for.

--
Attila aka WW
Jul 19 '05 #6


Marcin Borkowski wrote:

If you don't know answer 4 my question, don't post, please.
This is not the shop with help.


1) Don't top post
2) It would be good idea to actually *show* us what
doesn't work.
What have you tried?
What results did you get?

Don't write: "don't work :("
But instead write: I used this code

<insert your code here>

but it does not do <insert what you expect your code to do>

and somebody will show you how it's done. You actually might
learn something by doing so.
But be warned: no Borland extensions. We discuss standard C++
only in this NG. The std::string class can do perfectly what
you want to do.

--
Karl Heinz Buchegger
kb******@gascad.at
Jul 19 '05 #7
Wolfgang Senfter <ws@wwww.at> writes:
Marcin Borkowski wrote:
I need to do something with string in format like "var1|var2|var3|var4|"
and add it to some ComboBox (Items -> Add("var1"), Items -> Add("var2")
etc.).


use the AnsiString.


Please don't post OT answers - AnsiString is not a part of standard C++.
Use std::string instead.

kind regards
frank

--
Frank Schmitt
4SC AG phone: +49 89 700763-0
e-mail: frankNO DOT SPAMschmitt AT 4sc DOT com
Jul 19 '05 #8
Marcin Borkowski wrote:
If you don't know answer 4 my question, don't post, please.
This is not the shop with help.


You should ask this question on Borland's newsgroups.
You can sign up at (hold on while I google for
"Borland newsgroups", just a second ... )
http://info.borland.com/newsgroups/ng_cbuilder.html

I don't have Builder installed so I can't look this stuff
up in the help files or test my code. You'll gave to check
the details yourself.

// Put these declarations in the 'TForm1' class
// in the 'Unit1.h' file.
TComboBox * ComboBoxes [4];
void __fastcall FillComboBoxes (AnsiString s);
struct EFillComboError { };

// Put this in the 'TForm1' constructor in 'Unit1.cpp'.
ComboBoxes [0] = ComboBox1;
ComboBoxes [1] = ComboBox2;
ComboBoxes [2] = ComboBox3;
ComboBoxes [3] = ComboBox4;

// Put this definition in 'Unit1.cpp'.
void __fastcall TForm1::FillComboBoxes (AnsiString AString)
{
std::auto_ptr <TStringList> StringList (new TStringList);

StringList->Delimiter = "|"; // ?? Check in help.
StringList->DelimitedText = AString;

if (StringList->Count != 4) throw EFillComboError ();

for (int i = 0; i != 4; ++ i)
ComboBoxes [i]->Text = StringList->Strings [i];
}

Jul 19 '05 #9
Buster Copley <bu****@none.com> spoke thus:
You should ask this question on Borland's newsgroups.


A noble thought, but from what I can see very few people post there. OP would
probably do better on comp.os.ms-windows.programmer.win32.

--
Christopher Benson-Manica | Jumonji giri, for honour.
ataru(at)cyberspace.org |
Jul 19 '05 #10
Christopher Benson-Manica wrote:
Buster Copley <bu****@none.com> spoke thus:
You should ask this question on Borland's newsgroups.


A noble thought, but from what I can see very few people post there. OP would
probably do better on comp.os.ms-windows.programmer.win32.


I used to hang around on borland.public.cppbuilder.language.cpp quite
a lot. The traffic was high and the TeamB volunteers were helpful and
would answer pretty much any and all queries. The off-topic police
didn't seem to be too much in force and the atmosphere was friendly.

Since there is a fairly large number of borland.public.cppbuilder.*
groups, some of them don't get many posts, but language.cpp, nativeapi,
vcl.components.[using|writing] and a few others are certainly worth
checking out.

For this particular question, borland.public.cppbuilder.language.cpp is
the place to go. General Win32 programmers won't know their AnsiStrings
from their elbows.

Regards,
Buster.

Jul 19 '05 #11
Buster Copley <bu****@none.com> spoke thus:
For this particular question, borland.public.cppbuilder.language.cpp is
the place to go. General Win32 programmers won't know their AnsiStrings
from their elbows.


My apologies - my news server apparently doesn't carry b.p.c.language.cpp, only
b.p.c.language (and some other zero-traffic Borland groups). Now I'm left to
wonder why my news server hates me ;)

--
Christopher Benson-Manica | Jumonji giri, for honour.
ataru(at)cyberspace.org |
Jul 19 '05 #12
Christopher Benson-Manica wrote:
Buster Copley <bu****@none.com> spoke thus:
For this particular question, borland.public.cppbuilder.language.cpp is
the place to go. General Win32 programmers won't know their AnsiStrings
from their elbows.


My apologies - my news server apparently doesn't carry b.p.c.language.cpp, only
b.p.c.language (and some other zero-traffic Borland groups). Now I'm left to
wonder why my news server hates me ;)


Borland reorganised the hierarchy a while back and some servers haven't
yet caught up. (Even) Google had it wrong last time I looked.

Regards,
Buster.

Jul 19 '05 #13
Buster Copley wrote:
Marcin Borkowski wrote:

I don't have Builder installed so I can't look this stuff
up in the help files or test my code. You'll gave to check
the details yourself. // Put these declarations in the 'TForm1' class
// in the 'Unit1.h' file.
TComboBox * ComboBoxes [4];
void __fastcall FillComboBoxes (AnsiString s);
struct EFillComboError { };

// Put this in the 'TForm1' constructor in 'Unit1.cpp'.
ComboBoxes [0] = ComboBox1;
ComboBoxes [1] = ComboBox2;
ComboBoxes [2] = ComboBox3;
ComboBoxes [3] = ComboBox4;

// Put this definition in 'Unit1.cpp'.
void __fastcall TForm1::FillComboBoxes (AnsiString AString)
{
std::auto_ptr <TStringList> StringList (new TStringList);

StringList->Delimiter = "|"; // ?? Check in help.
StringList->DelimitedText = AString;

if (StringList->Count != 4) throw EFillComboError ();

for (int i = 0; i != 4; ++ i)
ComboBoxes [i]->Text = StringList->Strings [i];
}


Sorry, that doesn't do what you asked at all.
This is possibly closer:

void __fastcall
TForm1::FillComboBox (TComboBox * ComboBox, AnsiString AString)
{
auto_ptr <TStringList> StringList (new TStringList);

StringList->Delimiter = "|"; // ?? Check in help.
StringList->DelimitedText = AString;

ComboBox->Items->Clear (); // ?? No idea if that's the right idiom

for (int i = 0, n = StringList.Count; i != n; ++ i)
{
ComboBox->Add (StringList->Strings [i]);
}
}

Jul 19 '05 #14
Checked and tested.

void __fastcall TForm1::FillComboBox(TComboBox * ComboBox, AnsiString AString)
{
std::auto_ptr <TStringList> StringList (new TStringList);
StringList->Delimiter = '|';
StringList->DelimitedText = AString;
ComboBox->Items->Assign (StringList.get ());
ComboBox->ItemIndex = 0;
}
Jul 19 '05 #15
Dammit. This is a one-liner.
In the form constructor, put

ComboBox1->Items->Delimiter='|';

Then just use

ComboBox1->Items->DelimitedText = "var1|var2|var3|var4";
ComboBox1->Text = "Choose one ...";

I bet you would have got this straight away on
"borland.public.cppbuilder.vcl.components.usin g".

Regards,
Buster.
Jul 19 '05 #16
Buster Copley wrote:
Christopher Benson-Manica wrote:
Buster Copley <bu****@none.com> spoke thus:
For this particular question, borland.public.cppbuilder.language.cpp is
the place to go. General Win32 programmers won't know their AnsiStrings
from their elbows.

My apologies - my news server apparently doesn't carry
b.p.c.language.cpp, only
b.p.c.language (and some other zero-traffic Borland groups). Now I'm
left to
wonder why my news server hates me ;)

Borland reorganised the hierarchy a while back and some servers haven't
yet caught up. (Even) Google had it wrong last time I looked.

Regards,
Buster.


Also, don't worry about your newsserver. Use "newsgroups.borland.com" as a newsserver
for borland groups. Similarly, for VC specific stuff, use "msnews.microsoft.com", but they're
currently getting hammered by the worms.

Jul 19 '05 #17
> > Borland reorganised the hierarchy a while back and some servers haven't
yet caught up. (Even) Google had it wrong last time I looked.

Regards,
Buster.

Also, don't worry about your newsserver. Use "newsgroups.borland.com" as

a newsserver for borland groups. Similarly, for VC specific stuff, use "msnews.microsoft.com", but they're currently getting hammered by the worms.


Borland seems to be having problems with their server this week though...
Jul 19 '05 #18

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Sofia | last post by:
My name is Sofia and I have for many years been running a personals site, together with my partner, on a non-profit basis. The site is currently not running due to us emigrating, but during its...
6
by: Robert Maas, see http://tinyurl.com/uh3t | last post by:
System login message says PHP is available, so I tried this: http://www.rawbw.com/~rem/HelloPlus/h.php It doesn't work at all. Browser just shows the source. What am I doing wrong?
0
by: Gregory Nans | last post by:
hello, i need some help to 'tree-ify' a string... for example i have strings such as : s = """A(here 's , B(A ) silly test) C(to show D(what kind) of stuff i need))""" and i need to...
7
by: Mike Kamermans | last post by:
I hope someone can help me, because what I'm going through at the moment trying to edit XML documents is enough to make me want to never edit XML again. I'm looking for an XML editor that has a...
8
by: JustSomeGuy | last post by:
I need to write an new class derived from the list class. This class stores data in the list to the disk if an object that is added to the list is over 1K in size. What methods of the std stl...
3
by: Bob.Henkel | last post by:
I write this to tell you why we won't use postgresql even though we wish we could at a large company. Don't get me wrong I love postgresql in many ways and for many reasons , but fact is fact. If...
2
by: Michael R. Pierotti | last post by:
Dim reg As New Regex("^\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}$") Dim m As Match = reg.Match(txtIPAddress.Text) If m.Success Then 'No need to do anything here Else MessageBox.Show("You need to enter a...
8
by: skumar434 | last post by:
i need to store the data from a data base in to structure .............the problem is like this ....suppose there is a data base which stores the sequence no and item type etc ...but i need only...
11
by: Alan Mailer | last post by:
A project I'm working on is going to use VB6 as a front end. The back end is going to be pre-existing MS Access 2002 database tables which already have records in them *but do not have any...
0
by: U S Contractors Offering Service A Non-profit | last post by:
Brilliant technology helping those most in need Inbox Reply U S Contractors Offering Service A Non-profit show details 10:37 pm (1 hour ago) Brilliant technology helping those most in need ...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.