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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
Z

zapap

@zapap
About
Posts
10
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Web Menu Control
    Z zapap

    I have the same problem On my page i have a menu named muNavigation My problem is exactly the same as yours, this is my code (sample) but the child items does not pop out on hover muNavigation.Items.Clear(); muNavigation.MaximumDynamicDisplayLevels = 1; muNavigation.StaticDisplayLevels = 1; MenuItem miItem = new MenuItem(); miItem.Text = "Hello"; miItem.Selectable = false; MenuItem miChildItem = new MenuItem(); miChildItem.Text = "world"; miItem.ChildItems.Add(miChildItem); muNavigation.Items.Add(miItem); I cant figure this out. Anybody any ideas? Fanx There is someone in my head but it's not me - Pink Floyd

    ASP.NET csharp asp-net database com

  • style sheet
    Z zapap

    Oh, I see. I'm very new to ASP.NET (2 months to be precise), so I bought ASP.NET Unleashed. Very good book. But what would be the best way to place controls dynamically at a specific position then? Thanks for the help. I appreciate it very much. There is someone in my head but it's not me - Pink Floyd

    C# csharp html css help question

  • style sheet
    Z zapap

    // Hi // I see that my question is not very clear... // I set the left in the css file. #lblLabel { Left:100px; ... } // Now in the code behind. ... Label lblLabel = new Label(); string sLeft = lblLabel.Style["left"]; ... // now why is sLeft != "100px" ?? // Thank you. There is someone in my head but it's not me - Pink Floyd There is someone in my head but it's not me - Pink Floyd

    C# csharp html css help question

  • style sheet
    Z zapap

    Hi // I see that my question is not very clear... // I set the left in the css file. #lblLabel { Left:100px; ... } // Now in the code behind. ... Label lblLabel = new Label(); string sLeft = lblLabel.Style["left"]; ... // now why is sLeft != "100px" ?? // Thank you. There is someone in my head but it's not me - Pink Floyd

    C# csharp html css help question

  • style sheet
    Z zapap

    I'd like to get and set the left property in a css in my code behind file. Style sheet: #lblLabel { top:100px; width:100px; } Code behind file (c#) protected override CreateChildControls() { // Add the opening html ... // Add the Label string sLeft = 0; Label lblLabel = new Label(); lblLabel.ID = "lblLabel"; lblLabel.Text = "Hello"; lblLabel.Style["left"] = "100px"; <=========== works fine sLeft = lblLabel.Style["left"]; <=========== doesn't work ??? Form.cantrols.Add(lblLabel); } If anyone can help me, I'd me very grateful. Thx There is someone in my head but it's not me - Pink Floyd

    C# csharp html css help question

  • Inheritance instances
    Z zapap

    Thank you very much, however I think I'm going to use static variables. I'm quite new to programming and didn't know exactly how to work with static variables, so it didn't occurr to me. Regards There is someone in my head but it's not me - Pink Floyd

    C# question oop

  • Inheritance
    Z zapap

    Thank you very much, I never thought of static variables... There is someone in my head but it's not me - Pink Floyd

    C# question oop help

  • Inheritance
    Z zapap

    I have a parent class, Base with 2 child classes, Child1, and Child2. Base has a public int iNo. I init Child1 from another class. So Child1 inits Base. Now, in Child1, I set Base.iNo = 10. Then i create the second child class, Child2 from Child1. Now, in Child2, when I call Base.iNo, i don't get 10. I know the problem is that the child classes works with 2 seperate instances of the Base class, but how can i resolve this. i want both child classes to inherit from the same Base instance. How do i do this.? Thank you There's someone in my head but it's not me - Pink Floyd gunigugu

    C# question oop help

  • Inheritance instances
    Z zapap

    Base ------------------------- | public int iNo; | | | ------------------------- Class1 : Base Class2 : Base ---------------------------- -------------------------- | Class2 c2; | | private int iMyNo; | | void Class1() | | public void SetMyNo()| | { iNo = 10; | | { iMyNo = iNo; | | c2 = new Class2(); | | } | | c2.SetMyNo(); | -------------------------- | } | ---------------------------- This is my srtucture, I begin with Class1, which then init Base, and then sets iNo = 10. Next I create a new instance of Class2, which in turn again init Base. Now when I call c2.SetMyNo, it sets is to nothing, since there are two instances of Base. So how do I inherit Class2 from the same instance of Base, the super class of Class1? There's someone in my head but it's not me - Pink Floyd gunigugu

    C# question oop

  • visualising audio
    Z zapap

    I would like to find out how to extract the visual wave of an audio file(mp3, wave, wma, etc). I have absolutely no idea how to do this or even where to begin. Ahead Nero can do this, also WMP do this as a visualization. I use Borland C++, and would like to develop for multiple platforms. thank you butt to seat ppl gunigugu

    C / C++ / MFC c++ delphi tutorial
  • Login

  • Don't have an account? Register

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