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
S

steffw

@steffw
About
Posts
41
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • The modifier 'public' is not valid for this item.
    S steffw

    Thank you that worked out fine :) But now i'm getting a second error :( namespace Reports { [Serializable()] public abstract class ReportServerConnection : IReportServerConnection { // the error comes here bool Microsoft.Reporting.WebForms.IReportServerCredentials.GetFormsCredentials(ref System.Net.Cookie authCookie, ref string userName, ref string password, ref string authority) { authCookie = null; userName = null; password = null; authority = null; // Not using form credentials return false; } } } the error is : 'Microsoft.Reporting.WebForms.IReportServerCredentials.GetFormsCredentials' in explicit interface declaration is not a member of interface and the second is: 'Reports.ReportServerConnection' does not implement interface member 'Microsoft.Reporting.WebForms.IReportServerCredentials.GetFormsCredentials(out System.Net.Cookie, out string, out string, out string)' any ideas? Thanku!!

    Stef

    C# help csharp tools question

  • include file
    S steffw

    First you need to place the panel object on your page. Then go to the code behind and add this where necissary: // first load the control object Control c = Page.LoadControl("VirtualPathToControl.ascx"); // then add the control object to your panel panelid.Controls.Add(c) This should work fine. is this what you wanted? :) :-D

    Stef

    ASP.NET

  • include file
    S steffw

    why don't place a panel and load a web user control into it?

    Stef

    ASP.NET

  • The modifier 'public' is not valid for this item.
    S steffw

    Hello, I'm working on a report loader and I'm facing a little problem. I get this error: The modifier 'public' is not valid for this item. The code is for making the credentials for viewing the report and is originally from a VB script. I've converted it with a lame online converter but I only get one and the same error at every This is one of the methods: namespace Reports { public class ReportServerConnection : IReportServerConnection { public bool Microsoft.Reporting.WebForms.IReportServerCredentials.GetFormsCredentials(ref System.Net.Cookie authCookie, ref string userName, ref string password, ref string authority) { authCookie = null; userName = null; password = null; authority = null; // Not using form credentials return false; } } } Anyone an idea? Thanku!

    Stef

    C# help csharp tools question

  • ClientID's ????
    S steffw

    Hello! I'm quite new to the ASP.NET world and I'm trying to build a menu with sub menu items, I know that their is a pre-build Menu control but I still want to create my own. I'm only facing the last problem. The clientID's? I've this recursive function: private Panel GetMenu(int ParentID) { stefw.Database.Page objPage = new stefw.Database.Page(); Panel pnlBox = new Panel(); DataTable dtItems = objPage.GetChildPages(ParentID); foreach (DataRow drItem in dtItems.Rows) { string url = "Default.aspx?Page=" + drItem["PageID"].ToString(); string name = drItem["Name"].ToString(); string link = "[" + name + "](\"")"; Panel pnlItem = new Panel(); pnlItem.ID = "Item" + drItem["PageID"].ToString(); pnlItem.Controls.Add(new LiteralControl(link)); pnlItem.CssClass = "Item"; if (drItem["HasChildren"].ToString() == "1") { Panel child = GetMenu(int.Parse(drItem["PageID"].ToString())); pnlBox.Attributes.Add("onMouseOver", "document.getElementByID('" + child.ClientID + "').style.overflow='visible'"); pnlItem.Controls.Add(child); } pnlBox.Controls.Add(pnlItem); } if (ParentID == -1) pnlBox.CssClass = "MainItem"; else pnlBox.CssClass = "Box"; pnlBox.ID = "Box" + ParentID.ToString(); return pnlBox; } and it gives this output: [Home](Default.aspx?Page=1) [Informatie](Default.aspx?Page=3) [Beheer](Default.aspx?Page=2) You can see that it goes wrong at this line: [document.getElementByID('Box1').style.overflow='visible'"] and here [pnlBox.Attributes.Add("onMouseOver", "document.getElemen

    ASP.NET csharp asp-net database help question

  • SSIS Package trouble
    S steffw

    Hello everyone, Lately i'm working on a SSIS Package that downloads some data from one database to anohter. Their is one problem, when i run the package their is nothing wrong. When i try to put it in an job it fails. I've checked the logs but they don't give me some usefull information, the only thin that i've got is: Job failed at step 'my package name'. I've also checked the permissions, their good (i think) and when i do a connection test in visual studio their is nothing wrong with both connections. When i execute the package in visual studio, nothing fails and the data is pumped over. Does anyone have an idea about this?

    Stef

    Database csharp database sql-server visual-studio help

  • multiple files uploader using ftp
    S steffw

    (first hit on google) http://www.example-code.com/csharp/ftp.asp it looks usefull

    Stef

    ASP.NET

  • Starting with C++
    S steffw

    hmmm.. looks usefull! Thanks!

    Stef

    C / C++ / MFC question csharp c++ tutorial

  • Starting with C++
    S steffw

    I didn't expect this, the books are high in price :( Why do I have to be a poor student? :^) Well... maybe my parents can pay for it :) ghehe

    Stef

    C / C++ / MFC question csharp c++ tutorial

  • Starting with C++
    S steffw

    Thanks for all the replies! I will do some reseach about the books :) More refferences are always welcome :):cool:

    Stef

    C / C++ / MFC question csharp c++ tutorial

  • Starting with C++
    S steffw

    Thank you for the reply :) i will consider it :)

    Stef

    C / C++ / MFC question csharp c++ tutorial

  • Starting with C++
    S steffw

    ok :) thanks for the advice.. only one question left ;P how did you learn it and when? what is the best way to learn it? you say start from scratch? Did you use a book? maybe you have a good reference for me? Thanks!

    Stef

    C / C++ / MFC question csharp c++ tutorial

  • Starting with C++
    S steffw

    not at my school :( The guy who is trying to teach programming is a disaster...

    Stef

    C / C++ / MFC question csharp c++ tutorial

  • Starting with C++
    S steffw

    no problem, do you know a good book about it? What are your experiences?

    Stef

    C / C++ / MFC question csharp c++ tutorial

  • Starting with C++
    S steffw

    Hello everybody, I'm looking for a good tutorial about starting with c++, I've programming experience with c# (2 years)... All the tutorials that I found were for people who don't have programming experience, i don't want to re-learn if statements and so on :) waiste of time ;P (my opinion) Where can I start with c++? What is the best way to start with c++? What do I need to know about c++ before i start? I hope that you have some good refferences for me :) Thanks in advance!!!

    Stef

    C / C++ / MFC question csharp c++ tutorial

  • UserControl and data from Default.aspx ?
    S steffw

    ooh :) It's just an object with 5 properties so it won't be necesarry to cache it :) Thanks for the usefull advice & links :) I appreciate it :)

    Stef

    ASP.NET csharp question asp-net help

  • UserControl and data from Default.aspx ?
    S steffw

    I've tried the first one, didn't work out... I'm now using sessions but is this good for the performance?

    Stef

    ASP.NET csharp question asp-net help

  • UserControl and data from Default.aspx ?
    S steffw

    It is an UserControl, and i've tried to cast the page class in the user control and tried to at a property... But I noticed that you needed namespaces for that and I don't use those

    Stef

    ASP.NET csharp question asp-net help

  • UserControl and data from Default.aspx ?
    S steffw

    How can i get data from my Default.aspx to my Control? I've tried several things, like creating a property in the classes, but it still wont work I can't figure it out :( I'm using asp.net with c# in 2.0 please help! Thanks in advance :)

    Stef

    ASP.NET csharp question asp-net help

  • Printing PDF Documents
    S steffw

    hmm you could use an pdf printer? just an idea, i'm not sure if it is possible :-O

    Stef

    C# 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