- This topic has 17 replies, 5 voices, and was last updated 13 years, 10 months ago by deep_blue.
-
AuthorPosts
-
December 7, 2010 at 1:23 pm #34177deep_blueParticipant
1 – TsComboboxEx Onchange event firing itself
2 – giving a value to TsCurrencyEdit at runtime does not show the value.
the code :
try
repeat
sInputQuery('Tutar Giriniz', 'Tutar', tutar);
until tutar <> '';
edtToplam.Value := StrToFloat(tutar);
edtKalanBorc.Value := StrToFloat(tutar);
except
begin
mesaj('UYARI','Yanlış bir tutar girdiniz. Lütfen kontrol ediniz !',1);
end;
end;
3 – TsComboBoxEx shows items like below pictures
[attachment=4392:1.jpg]
[attachment=4393:2.jpg]
December 7, 2010 at 1:40 pm #44133MorphParticipantsPanel vertical alignment doesn't work, the caption is always displayed in the middle.
The standard TPanel alignment is correct.
[attachment=4394:Example.jpg]
December 7, 2010 at 2:28 pm #44134jerome59ParticipantBug : When using a skin, the TPanel and TsPanel are not modified when changing dynamics BevelInner / BevelOuter.
December 20, 2010 at 10:51 am #44235deep_blueParticipantWe are waiting for you dear AC Team developer, What do you thing about these troubles?. So the AlphaControls v7.25 is not Stable.
December 21, 2010 at 1:34 pm #44246SupportKeymaster'Morph' wrote:sPanel vertical alignment doesn't work, the caption is always displayed in the middle.
The standard TPanel alignment is correct.
[attachment=4394:Example.jpg]
Please start new topic.
December 21, 2010 at 1:35 pm #44247SupportKeymaster'jerome59' wrote:Bug : When using a skin, the TPanel and TsPanel are not modified when changing dynamics BevelInner / BevelOuter.
Is implemented in the v7.26, but you must start new topic in the future.
December 21, 2010 at 1:44 pm #44251SupportKeymaster'deep_blue' wrote:1 – TsComboboxEx Onchange event firing itselfYou mean that OnChange is called twice? This behaviour is fully equal to behaviour of standard control. Or I not quite understand you? Please explain more in this case.
Quote:2 – giving a value to TsCurrencyEdit at runtime does not show the value.the code :
try
repeat
sInputQuery('Tutar Giriniz', 'Tutar', tutar);
until tutar <> '';
edtToplam.Value := StrToFloat(tutar);
edtKalanBorc.Value := StrToFloat(tutar);
except
begin
mesaj('UYARI','Yanlış bir tutar girdiniz. Lütfen kontrol ediniz !',1);
end;
end;
I have made a test application, but I haven't a problem there (this demo is attached).
Please look it, where I'm wrong?
Quote:3 – TsComboBoxEx shows items like below pictures[attachment=4392:1.jpg]
[attachment=4393:2.jpg]
What is wrong on these pictures?
You not uses ItemEx.Indent property, but Indent exists?
December 21, 2010 at 3:17 pm #44259deep_blueParticipant1- No is not called twice but when the form is creating the onchange event is called itself. as you say it is behaviour of standart control. sorry about…
2- In your example scurrencyedit shows the value but still in my project not, when I call repaint property it shows me the value (scurrencyedit.repaint). Controls for that Dialog form are : TsGroupBox,TsPanel,TsEdit,TcxGrid,TsBitBtn,TsDateEdit,TsSpinEdit,TsCurrencyEdit.
3- scomboboxex items are appended to the right side of each.
4- “You not uses ItemEx.Indent property, but Indent exists?” What do you mean?
December 22, 2010 at 8:41 am #44266SupportKeymaster'deep_blue' wrote:2- In your example scurrencyedit shows the value but still in my project not, when I call repaint property it shows me the value (scurrencyedit.repaint). Controls for that Dialog form are : TsGroupBox,TsPanel,TsEdit,TcxGrid,TsBitBtn,TsDateEdit,TsSpinEdit,TsCurrencyEdit.Can you show me that?
Quote:3- scomboboxex items are appended to the right side of each.4- “You not uses ItemEx.Indent property, but Indent exists?” What do you mean?
Items are added in run-time? Can you show your code for adding of items?
December 22, 2010 at 11:06 am #44269deep_blueParticipantCan you show me that?
[attachment=4434:video.rar]
Items are added in run-time? Can you show your code for adding of items?
-not only in run-time also in design time.
Note : I use sComboBoxes.pas that you send me before which has “SelectedItem.Indent” property
While not AdoQuery.Eof do
begin
cboxGrupBilgisi.ItemsEx.AddItem(AdoQuery.FieldByName(TextFieldName).AsString,0,0,0,AdoQuery.FieldByName(KeyFieldName).AsInteger,nil)
QryDoldur.Next;
end;
December 22, 2010 at 12:28 pm #44270SupportKeymaster'deep_blue' wrote:[attachment=4434:video.rar]Thank you. You tried the version 7.26?
Quote:cboxGrupBilgisi.ItemsEx.AddItem(AdoQuery.FieldByName(TextFieldName).AsString,0,0,0,AdoQuery.FieldByName(KeyFieldName).AsInteger,nil)Items are added with not null Indent property or AdoQuery.FieldByName(KeyFieldName).AsInteger always is null?
December 22, 2010 at 12:41 pm #44271deep_blueParticipantYou tried the version 7.26?
-Yes I am working with version 7.26 and still same but version 7.26 is more stable according to version 7.25
Items are added with not null Indent property or AdoQuery.FieldByName(KeyFieldName).AsInteger always is null?
– No I looked that, it is never null.
this is your file that you send me
[attachment=4435:sComboBoxes.zip]
December 22, 2010 at 4:21 pm #44272HeDiBoParticipantBecause this forum is to for all AC users, and not just for you, you should make a different topic from each question or issue that you have. In that way other users can benefit from it, because the topics can then be found by the appropriate keyword. Your topic is “bugs” which is not descriptive at all.
Please, adhere to the forum rules of a forum you apparently depend on.
Serge is too polite to make this point strongly. So I do it for him.
December 22, 2010 at 4:49 pm #44273deep_blueParticipantI am not angry with Serge and also I waited some replies for one weak for this topic. I also know that serge is very polite, but this is my way and my english… So look at your own work.
Thanks.
December 23, 2010 at 7:07 am #44280SupportKeymaster'deep_blue' wrote:– No I looked that, it is never null.If Indent property is defined then Items will be shifted to the right, it's correct. Or I not understand something?
Solving of problems is more effective if each problem is described in own topic.
Thank you, Dick 🙂
December 23, 2010 at 11:50 am #44297deep_blueParticipant'Support' wrote:If Indent property is defined then Items will be shifted to the right, it's correct. Or I not understand something?
Solving of problems is more effective if each problem is described in own topic.
Thank you, Dick 🙂
Sorry, So it was a bug on alphacontrol v6.05?, because it was adding items sequencely they were not shifted to the right… 🙁
December 23, 2010 at 3:01 pm #44302HeDiBoParticipant'deep_blue' wrote:I am not angry with Serge and also I waited some replies for one weak for this topic. I also know that serge is very polite, but this is my way and my english…
You misunderstood. The point is, that your post in this forum does not help other users, because they are not able to find it. Therefore, the forum requires that you make a new topic for each of your questions or issues.
You started off with three issues, numbered 1 to 3. Because they could not be described in one sentence, you named your topic “bugs”. In that way you made it impossible for other users with similar issues to find the answers from support.
Hence: start a new topic for each question or issue.
And a merry Christmas to all 🙄
December 23, 2010 at 3:07 pm #44303deep_blueParticipant'HeDiBo' wrote:You misunderstood. The point is, that your post in this forum does not help other users, because they are not able to find it. Therefore, the forum requires that you make a new topic for each of your questions or issues.
You started off with three issues, numbered 1 to 3. Because they could not be described in one sentence, you named your topic “bugs”. In that way you made it impossible for other users with similar issues to find the answers from support.
Hence: start a new topic for each question or issue.
And a merry Christmas to all 🙄
Ok sory Dick I pay attention to…
Thanks and merry christmas too you.
-
AuthorPosts
- You must be logged in to reply to this topic.