Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
F

freshonlineMax

@freshonlineMax
About
Posts
117
Topics
52
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • show form
    F freshonlineMax

    In obj2.show you can move form everywhere but in another case it can move in the parent form area. I guess.. :|

    C# question

  • Print Settings for ReportViewer pogrammatically
    F freshonlineMax

    Thank 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.

    C# csharp

  • Print Settings for ReportViewer pogrammatically
    F freshonlineMax

    Hello 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

    C# csharp

  • List products sold to buyers
    F freshonlineMax

    Hi It's good point, I want to show data in Crystal Report. Do you know any tutorial ?

    Database help

  • List products sold to buyers
    F freshonlineMax

    Dear 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
    Citruen

    Please help...

    Database help

  • List products sold to buyers
    F freshonlineMax

    Hi, 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
    Benz

    Tanks for help.

    Database help

  • Thousand Seperator in TextBox
    F freshonlineMax

    Hi again I solved it by below code: TextBox1.Select(TextBox1.Text.Length, 0); Bye

    C# help

  • Thousand Seperator in TextBox
    F freshonlineMax

    Hello 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

    C# help

  • Thousand Seperator in TextBox
    F freshonlineMax

    Hello 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

    C# help

  • Comples Parameters in URL
    F freshonlineMax

    Hello 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

    ASP.NET docker help question announcement

  • Image Resizing in ASP.net
    F freshonlineMax

    Hello 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

    ASP.NET csharp asp-net question

  • Email in Asp.Net 2.0
    F freshonlineMax

    Hello 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

    ASP.NET question csharp asp-net com sysadmin

  • Email in Asp.Net 2.0
    F freshonlineMax

    Ok, But my host couldn't help me well. Can you send some code using my sample options to help me? Tanks

    ASP.NET question csharp asp-net com sysadmin

  • Email in Asp.Net 2.0
    F freshonlineMax

    Hello 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

    ASP.NET question csharp asp-net com sysadmin

  • Browser Resizing
    F freshonlineMax

    Tanx It worked, however Asp.Net 2.0 said : A new construct is recommended. regards

    ASP.NET com question

  • Browser Resizing
    F freshonlineMax

    Tanx, But Always i worked with % and it doesn't the answer.

    ASP.NET com question

  • Browser Resizing
    F freshonlineMax

    Hi 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

    ASP.NET com question

  • Image Resizing in ASP.net
    F freshonlineMax

    You can set images with and height to your custum size. Like this : <asp:Image ID="Image1" runat="server" Height="100px" Width="100px" />

    ASP.NET csharp asp-net question

  • Ajax HoverMenu like Microsoft HomePage
    F freshonlineMax

    Hello 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

    ASP.NET com question

  • change GridViews ColumnStyles Programmatically in Codebehind
    F freshonlineMax

    Hello 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

    ASP.NET csharp help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups