In obj2.show you can move form everywhere but in another case it can move in the parent form area. I guess.. :|
freshonlineMax
Posts
-
show form -
Print Settings for ReportViewer pogrammaticallyThank you. I created my Report and i can see it at run time, But for printing, everytime user should open printer settings and change the paper size. i want to set paper size at design time and print the report programmatically. I wrote below code (doesnt work):
this.reportViewer1.PrinterSettings.DefaultPageSettings.PaperSize.Height = 1169; this.reportViewer1.PrinterSettings.DefaultPageSettings.PaperSize.Kind = PaperKind.A4Extra; //Error, Kind is Read-Only this.reportViewer1.RefreshReport();
Also i couldn't find PrintReport option for ReportViewer.
-
Print Settings for ReportViewer pogrammaticallyHello I'm developing a project with C# 2010. I want to set paper size and layout programmatically. But it doesnt work properly. There is no usefull document at the web. Regards
-
List products sold to buyersHi It's good point, I want to show data in Crystal Report. Do you know any tutorial ?
-
List products sold to buyersDear Friend Thank you for reply But i want to list products with none repeatitve buyers, all queries list data and repeat buyer's name at each row, I want result like below :
Buyer Product
Jack BMW
Benz
Volvo
Tom Benz
Toyota
Ed BMW
Volvo
CitruenPlease help...
-
List products sold to buyersHi, I want to list cares sold to buyers from two tables : BuyersTable & ProductsTable I want to get below result : Buyer Product
Tom Benz
Bmw
Volvo
Jim Bmw
BenzTanks for help.
-
Thousand Seperator in TextBoxHi again I solved it by below code:
TextBox1.Select(TextBox1.Text.Length, 0);
Bye -
Thousand Seperator in TextBoxHello Tanks for your help. I used your code like below :
Int64 val; bool ok; ok = Int64.TryParse(TextBox1.Text, NumberStyles.AllowThousands, null, out val); TextBox1.Text = Convert.ToInt64(val.ToString()).ToString("#,###");
The problem accures after typing more than 4 numbers. Because cursor qoes to the left side of numbers, For example i want to type 12345, after typing 4 in typing 5 it TextBox shows : 51,234 Can you help me on this? Regards -
Thousand Seperator in TextBoxHello Please help me to show thousand seperator in textbox like: 25000000>25,000,000 I found a formul like below at textchanged event:
string myStr = textBox1.Text; TextBox1.Text = myStr.FormatString("#,###");
But it causes error at :Int a = Convert.ToInt16(TextBox1.Text);
I want to seperate numbers in textbox anyway. I couldn't use "MaskedTextBox" Please help me. Regards -
Comples Parameters in URLHello I'm using parameters and values (return from function) in url like below, But it doesn't work. Parameters are : imagepath (return from function), width, height ImageUrl='MakeThumbnail.aspx?file=<%# getImagePath(Convert.ToString(DataBinder.Eval(Container, "DataItem.date")), "news") %>&width=<%# DataBinder.EvalContainer, "DataItem.imagewidth")%>&height=100' Please help
-
Image Resizing in ASP.netHello Dio22 Sorry about my late answernig I had problems like you have. You can solve it using below website: http://west-wind.com/weblog/posts/283.aspx[^] Also below link is very usefull: http://www.stardeveloper.com/articles/display.html?article=2003040501&page=1[^] If you had problem i can send you one sample code i worked on it by migrating results of above links. Regards Saeid
-
Email in Asp.Net 2.0Hello Dear Michael I'm a professional desktop developer (C# base), but in sending mail, i really confused. I developed a website for somebody and i'm in final step. As you said and in this way anybody can send email from anybody to anybody..! I want to say that: Do i need username, password and real host name or not? I tested this code and i saw no mail in my inbox. Please notice that i made no change on your code. So please help me again if you have time. Tanx
-
Email in Asp.Net 2.0Ok, But my host couldn't help me well. Can you send some code using my sample options to help me? Tanks
-
Email in Asp.Net 2.0Hello I can't send email. What is smtp server? What is host name? I know my mail server ip, my email's user and pass. Now how can i send mail to users and get their feedback. I test many states but i failed... Example:: My Email : info@mysite.com Target User : user@yahoo.com My Server : www.mellihost.com Server Ip : 70.84.176.94 Now please help me. Regards
-
Browser ResizingTanx It worked, however Asp.Net 2.0 said : A new construct is recommended. regards
-
Browser ResizingTanx, But Always i worked with % and it doesn't the answer.
-
Browser ResizingHi I dont want to see wrapping text on browser resizing. Like this window yo see now (Codeproject.com) I want that, when user resizing the browser window, horizontal scrollbar activate instead of text wrapping. What should i do? Tanx
-
Image Resizing in ASP.netYou can set images with and height to your custum size. Like this : <asp:Image ID="Image1" runat="server" Height="100px" Width="100px" />
-
Ajax HoverMenu like Microsoft HomePageHello I can create ajax enabled hovermenu control like you see in microsoft.com home page (Highlights-Latest releases-Using your computer-...). But User only can see their contents if move mouse over them. 1)I want to show contetns of one of them by default at the start of website like microsoft. 2)As you see mouse over causes to changing back theme of menues. How can i do this. Tanx
-
change GridViews ColumnStyles Programmatically in CodebehindHello Friends How can i know which row user clicked on it? I saw in forums they use CommandClick with e.command argument, but i can't see this event for GridView in Properties box! I don't want to use Select Column of GridView. Tanx