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
T

tronix01

@tronix01
About
Posts
23
Topics
11
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • WPF Toolkit DatePicker/Calender issue
    T tronix01

    hi bonkers, i thank you very much!!!!. your snippet helps me to solve my DatePicker SelectedDate - Binding problem! here is my solution. just override the ControlTemplate of the DatePicker-Control and bind the SelectedDate of the PopupCalendar.

    <Popup Name="Part_CalendarPopup"
    Margin="0,22,-22,-12"
    HorizontalAlignment="Right"
    PlacementTarget="{Binding ElementName=Part_CalendarButton}" StaysOpen="False">
    <Grid Name="Part_CalendarGrid" Background="White">
    <cal:Calendar
    SelectedDate="{Binding SelectedDate, Mode=TwoWay}"
    Height="160" Width="160"
    FooterVisibility="Collapsed" WeekColumnVisibility="Collapsed"
    FontSize="9"/>
    </Grid>
    </Popup>

    WPF wpf help csharp css wcf

  • Accordion won't access theme
    T tronix01

    i checked my code and found the problem

    accordionItem.SetResourceReference

    was set and does override my ResourceDictonary Source

    WPF wpf help csharp css dotnet

  • Accordion won't access theme
    T tronix01

    hello, i have trouble with the wpf toolkit accordion control. i have a UserControl which creates a dynamic nested accordion control (3 levels). when the 3rd level accordionItem is clicked a new usercontrol, also a accordion but in XAML, will be added to the content of the 3rd level accordionItem. both usercontrols have a link to a ResourceDictionray (Theme) like this:

    xmlns:toolkit="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Layout.Toolkit">
    <Grid Name="MainGrid">
    <Grid.Resources>
    <ResourceDictionary Source="../View/Themes/CustomAccordion.xaml"></ResourceDictionary>
    </Grid.Resources>
    </Grid>

    the problem is, that the XAML accordion display my theme configuration but the dynamic created accordion won't display the same theme. does anybody know why? thanks for any help

    WPF wpf help csharp css dotnet

  • Animation of Expander expand / collapse programmatically
    T tronix01

    you are right. thanks for your reply.

    WPF question wpf com help

  • Animation of Expander expand / collapse programmatically
    T tronix01

    hello once more a post about the expander animation. i found a lot of xaml examples for a animated expander during expand/collapse. like this => http://mattserbinski.com/blog/animating-expander but how can i do that programmatically in codebehind? i have a usercontrol which gets added a dynamic created nested expander control (min. 3 level). i would like to have a "global" animation ( for expand /collapse) for all expander controls inside the usercontrol. how can i solve that ? with a RessourceDictionary ? thanks for your help

    WPF question wpf com help

  • To set image for the condition in crystal report
    T tronix01

    just right-click to the "picture-field" and click format object, then click general and check suspend. after that, press the x-2 button and write the a formel like that in it: if ({myBoolField} = true) then false else true; that means: if myBoolField = true don't suspend the "picture-field", else suspend the "picture-field" see also: http://msdn.microsoft.com/en-us/library/ms225356%28VS.80%29.aspx[^] hope this helps

    ASP.NET help tutorial question

  • UrlRewriting depends on the Browser-Language
    T tronix01

    hello i'm looking for some help for the following problem. i developed a asp.net 2.0 multilanguage webpage using localization with resource-files (FR and EN content). all of my aspx - pages are in the same folder but i want that the search engines detect the text of both languages. to solve that problem i atteched the Intelligencia.UrlRewriter.dll from www.urlrewritingnet.com to my project. later i've implement the following rule in my web.config file to make the french-content visible for the search engines <rewrite name="rule1" url="^/(.*)/(.*)/fr/(.*).aspx" to="/$1/$2/$3.aspx"></rewrite> that means, if someone enters directly: www.mypage.com/folder1/folder2/fr/default.aspx it will be rewritten to: www.mypage.com/folder1/folder2/default.aspx is that enough to make the french-content visible for the search engines ? and... how can i redirect or rewrite from www.mypage.com to www.mypage.com/folder1/folder2/fr/default.aspx , if anybody enters the website and uses fr-FR as the default browser-language ? How can i solve that ? thanks for any help

    ASP.NET help question csharp asp-net com

  • crystal report is not working in server
    T tronix01

    you need to install CrystalReport on the Server-Machine look at this: http://forums.asp.net/p/1507761/3583708.aspx[^]

    ASP.NET help csharp asp-net com sysadmin

  • partial postback and IFrame
    T tronix01

    this can be help you: http://www.articlesbase.com/information-technology-articles/partial-page-rendering-using-hidden-iframe-150976.html[^] whats wrong with asp.net ajax updatepanel ? http://www.asp.net/Ajax/Documentation/Live/overview/UpdatePanelOverview.aspx[^] hopes this helps

    ASP.NET help

  • Search Engines and Multilanguage Websites
    T tronix01

    hello actually i've developed a asp.net 2.0 multilanguage website by using localization incl. resource files. now i've got a problem with the following question: how can search engines detect my multilanguage website-content ? can they detect the resource-files ? thanks for any help cheers lutz

    ASP.NET help question csharp asp-net learning

  • Web - User Control and Serach Engines
    T tronix01

    thanks for your reply. i know localization but in this case i was constrained to find a other way to the developed a multilingual website. i will see what can i do, thanks for your help

    ASP.NET csharp asp-net help tutorial question

  • Web - User Control and Serach Engines
    T tronix01

    hello @ all i've created a small website for our company with asp.net 2.0. now i've started to make the website multilingual. i know there a lot of good and easy solutions to get a website multilingual by using localization. but... my boss wants to write the website content by itselfs, so i needed to found a other solution and i found one. for example, i use a usally aspx website and two ascx usercontrols (they are contains the english and french content). i added to the aspx-website a contentplaceholder and two buttons (EN and FR). if one of these buttons becomes clicked, the click-event loads the related ascx-usercontrol to the contentplaceholder at the aspx website. the website loads by default the english-content. now the poblem, if someone search some content from our website by google or bing etc., they only matches the english content. the french content will be never matched by the search engines. does anyone now why ? what can i do to solve this problem ? thanks a lot tronix

    ASP.NET csharp asp-net help tutorial question

  • Images are shrunken =&gt; i want to get them shrink-proof
    T tronix01

    Hello @ all I have a problem with my generated PNG - Images. It's a bit strange for me but may be someone now what i can do to solve this problem. My windows service create on the fly PNG - Images and store them as binary in a database. The stored images are displayed later with a crystal report in a windows app. That works very fine since years and also with different pc's (most XP-OS), but there is a problem with a new PC (XP-OS) since a few days. All images are displayed shrunken in the reports and it's not the whole report.... only the images. Text- and Report still proportional. Could it be that something is missing at the new machine ? Any ideas how this could be ? Thanks a lot!

    Bitmap couponImg = null;
    Font font = null;
    Graphics graphic = null;

    try
    {
    couponImg = new Bitmap(coupon.Width, coupon.Height, PixelFormat.Format24bppRgb);

     using (graphic = Graphics.FromImage(couponImg)) //V1.01.03.01
          {
            graphic.Clear(coupon.BackgroundColor);
     
            graphic.InterpolationMode  = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
            graphic.PixelOffsetMode    = System.Drawing.Drawing2D.PixelOffsetMode.HighQuality;
            graphic.TextRenderingHint  = System.Drawing.Text.TextRenderingHint.AntiAlias;
            graphic.TextContrast       = 0;
            graphic.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
            graphic.SmoothingMode      = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
    
            if (coupon.couponCellCollection != null && coupon.couponCellCollection.Count > 0)
            {
              for (int idx = 0; idx < coupon.couponCellCollection.Count; idx++)
              {
                font = new Font(coupon.font, (float)coupon.couponCellCollection\[idx\].fFontSize, FontStyle.Bold, GraphicsUnit.Millimeter);
    
                graphic.DrawString(coupon.couponCellCollection\[idx\].sCellValue, font, Brushes.Black, new PointF(coupon.couponCellCollection\[idx\].iPosX, coupon.couponCellCollection\[idx\].iPosY));
    
                font = null;
              }
            }
            graphic.DrawImage(couponImg, new Rectangle(0, 0, coupon.Width, coupon.height), 0, 0, coupon.Width, coupon.height, GraphicsUnit.Pixel);
        
            graphic.Flush(); //V1.01.03.01
          }
    }
     }
     catch (Exception)
     {
    couponImg = null;
     }
     finally
     {
        if (graphic != null)
        {
    
    C# graphics database help question

  • .NET Remoting - Send Answer to all Clients without Request ?
    T tronix01

    that's true. it should be only clarify why i can't solve my problem with a request-timer in the client app. usually internet is quite cheaper than mobile internet. does anyone have some subject related information ? thx a lot cheers

    .NET (Core and Framework) question csharp sysadmin help

  • .NET Remoting - Send Answer to all Clients without Request ?
    T tronix01

    Hoi all, i have a question about .NET remoting. Is it possible to send Data to all Clients without they (Clients) are requested before ? I need to deploy a Client that comunicate with Server over mobile internet. The Server should be able to Alarm all clients, if it required! A Solution with a Timer in the Client, that polls all the time to the Server, will be much to expensive and build a huge overhead. I guess the HTTP - Channel doens't support this, but what's up with the UDP - Channel ? Does anybody help me ? Thx a lot lutz

    .NET (Core and Framework) question csharp sysadmin help

  • Turning on a program
    T tronix01

    confusing ? try this and/or use the links above System.Diagnostics.Process.Start("IExplore.exe") or System.Diagnostics.Process.Start("IExplore.exe", "www.northwindtraders.com")

    Mobile question help

  • Turning on a program
    T tronix01

    to start an external program, use this

    Process.Start(myFilename);

    http://msdn.microsoft.com/en-us/library/53ezey2s.aspx[^] http://www.thescarms.com/dotnet/Process.aspx[^]

    Mobile question help

  • Data Transfer via GSM connection
    T tronix01

    hello guys i'm new in mobile development but i want to start now with a small application. there are a rough overview below about the main-processes: - open a gsm-connection at the mobile-phone (client) and dail-up to a pcmcia or usb gsm modem (server) - wait for response and send data by the mobile phone to the pcmcia or usb gsm modem (server) - save received data in a database at the (server) my main problem is how to get a connection from the mobile phone to the pcmcia or usb gsm modem and how to access the pcmcia or usb gsm modem with the "serverside" application ? i saw a some good explanations but the work only with a serial-port-communication (for the serverside). does somebody know how can i solve this problem ? thanks lutz

    Mobile question database sysadmin help tutorial

  • problem with gridview onclick event
    T tronix01

    thx for your answer... can you give me more details please ? thanks a lot best regards

    ASP.NET help question csharp

  • problem with gridview onclick event
    T tronix01

    hello i'm looking for a way to call a c#-method by clicking on a row in a gridview. actually i try at first to select something , so i put this code in my gridview onRowCreated-method and it works. e.Row.Attributes["onclick"] = ClientScript.GetPostBackClientHyperlink(this.gvResultview, "Select$" + e.Row.RowIndex); but how can i call a c#-method by a click event ??? thanks a lot for help !

    ASP.NET help question csharp
  • Login

  • Don't have an account? Register

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