Admin abuse on this news group...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have been trying to post help regarding getting text lines. It was not
answered correctly by pvdg42. So I repost it with more detail. And either
pvdg42 or pvdg42 friend who is a admin keeps deleting by repost for some
reason and will not tell state the reason.
 
Eric,

There is obviously something with this newsgroup.
- I see on Google for this newsgroup at the moment no messages
- I see on a single reader newsgroup server more messages (especially
yours) than on the Microsof server for this newsgroup.

I find it bolt from you to tell direct that Peter did that, however.

You see that this last message of you is not deleted, what obvious would be
right for that.

What are your proofs for that Peter did that?

Peter Jack of all trades, master of none is by me known as a more than very
correct person from which I cannot imagen the action you told.

Cor
 
Then why is my post regarding the same question he answered is being deleted
every time I post it? I just posted it again this morning and it was deleted
again?
 
And he is not a MVP! What kind of answer is this?
VC++ 2005 Express Edition:

I have a textBox with the properties:

this->m_TextBox_Desc->Multiline = true;
this->m_TextBox_Desc->WordWrap = true;
this->m_TextBox_Desc->ScrollBars = ScrollBars::Vertical;

I read my database with a description for the user. I want to load each
line into a listView. With wordWrap and the Width of the textBox gives me
4 lines, but when I use:

m_TextBox_Desc->Text = database[L"Description"]->ToString();
array<System::String^>^ tempArray = gcnew array<System::String^>(
m_TextBox_Desc->Lines->Length );
tempArray = this->m_TextBox_Scripture->Lines;

I only get 1 line, How come? In MFC VC++ you can use functions
GetLineCount() and GetLine(n, (LPTSTR)pszText, sizeof(pszText)). Where
are the line breaks in the textBox?

Thanks for your help!..

Your problem stems from the fact that you stored a single string in the text
property of your text box that *appears* to be broken into substrings
because of the WordWrap property setting.
If you entered multiple lines into your text box through your interface
like:
"one" <Enter>
"two" <Enter>, etc.
each line would be stored as a separate element in your array. This is true
because of the escape sequences placed in your entry when the <Enter> key is
struck.
OTOH, if you enter "OneTwoThreeFourFiveSixSevenEight" (etc.) through your
interface (even though the entry will *appear* to be broken up into multiple
lines in your text box, it is a single string and will be treated as such.


this is a amature answer!......... Now I see why he deleting my re-post
because he does not belong on this medium answer professional question that
he can't answer.
 
Eric said:
Then why is my post regarding the same question he answered is being
deleted
every time I post it? I just posted it again this morning and it was
deleted
again?

Frankly, I suspect it is because you've been posting the question multiple
times to multiple newsgroups frequently. I don't think anyone is doing it
intentionally(though I could be wrong), but your posts are disappearing like
spam, you might be triggering the spam filters. I tried responding to one of
your other posts but it disappeared with your post. If it was intentional
I'd assume they'd have erased this post and your previous ones as well.

Now, the first response was pretty much right, as best I can tell. You will
have to handle breaking up the line yourself by using some sort of rules.
The wrapping text box just doesn't do the job(since the wrap is related to
the size and font of the textbox, it would seem strange to do it that way
too.) What are you trying to achieve? Is there a reason you want the line
broken up?
 
Eric said:
Then why is my post regarding the same question he answered is being deleted
every time I post it? I just posted it again this morning and it was deleted
again?

I see your question posted about 50 times in here. Stop flooding the
newsgroup!
 
Eric said:
I have been trying to post help regarding getting text lines. It was not
answered correctly by pvdg42. So I repost it with more detail. And either
pvdg42 or pvdg42 friend who is a admin keeps deleting by repost for some
reason and will not tell state the reason.

Oh and I saw the answer you claimed was deleted. Are you sure you don't
have your newsreader set to only show unread messages?
 
Back
Top