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

Shoaib Hussain

@Shoaib Hussain
About
Posts
16
Topics
8
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • three tier architecture in linq to entities
    S Shoaib Hussain

    yea.. you don't need of any separate layer for DB while you have .EDMX file. You can call the .EDMX directly from BL

    LINQ csharp linq architecture

  • Static member variable in class?
    S Shoaib Hussain

    yes static member variables are same for all objects of the class. As the scope of static member variable is class level not of object level. Each object of the class can access and share static member of class. Static member is accessed via class name and not by object name, like //static member accessment className.staticmember = someValue //object level variable. objName.objMember

    -shoaib-

    Managed C++/CLI question

  • thumb.db file is not updating itself
    S Shoaib Hussain

    i am building a image gallery in ASP.NET. All images are placed in a specific folder and i want to show the thumb nails of all those image on the web page. Its all working well. Means that my page is displaying the thumb nails of all images that exists in the folder. The problem arise when i copy the new files in the folder, then the new copied files are not being displayed by thumbs.db file. Thumbs.db file donot update itself when new files are copied in the folder. how i can solve this problem that when ever i delete or copy images in the folder, the thumbs.db file updates itself???????????????

    -<>-shoaib-<>-

    IT & Infrastructure csharp asp-net database help question

  • thumb.db file is not updating itself
    S Shoaib Hussain

    i am building a image gallery in ASP.NET. All images are placed in a specific folder and i want to show the thumb nails of all those image on the web page. Its all working well. Means that my page is displaying the thumb nails of all images that exists in the folder. The problem arise when i copy the new files in the folder, then the new copied files are not being displayed by thumbs.db file. Thumbs.db file donot update itself when new files are copied in the folder. how i can solve this problem that when ever i delete or copy images in the folder, the thumbs.db file updates itself???????????????

    -<>-shoaib-<>-

    Web Development csharp asp-net database help question

  • thumb.db file is not updating itself
    S Shoaib Hussain

    i am building a image gallery in ASP.NET. All images are placed in a specific folder and i want to show the thumb nails of all those image on the web page. Its all working well. Means that my page is displaying the thumb nails of all images that exists in the folder. The problem arise when i copy the new files in the folder, then the new copied files are not being displayed by thumbs.db file. Thumbs.db file donot update itself when new files are copied in the folder. how i can solve this problem that when ever i delete or copy images in the folder, the thumbs.db file updates itself???????????????

    -<>-shoaib-<>-

    C# csharp asp-net database help question

  • thumb.db file is not updating itself
    S Shoaib Hussain

    i am building a image gallery in ASP.NET. All images are placed in a specific folder and i want to show the thumb nails of all those image on the web page. Its all working well. Means that my page is displaying the thumb nails of all images that exists in the folder. The problem arise when i copy the new files in the folder, then the new copied files are not being displayed by thumbs.db file. Thumbs.db file donot update itself when new files are copied in the folder. how i can solve this problem that when ever i delete or copy images in the folder, the thumbs.db file updates itself???????????????

    -<>-shoaib-<>-

    ASP.NET csharp asp-net database help question

  • help in Crystal reports to pass multilple ID's for selection
    S Shoaib Hussain

    im using this formula in my current working report {Project.ProjectID} = 1 or {Project.ProjectID} = 2 or {Project.ProjectID} = 3 TRY IT.................

    -<>-shoaib-<>-

    Visual Basic help database

  • TreeView
    S Shoaib Hussain

    your question is not much clear. If u explain it in more detailed, may i or some one other person will be in poition of solving this problem

    -<>-shoaib-<>-

    ASP.NET help csharp asp-net

  • image onclick event is not working
    S Shoaib Hussain

    the problem is that after "window.location.href", browser discardes all the "\" characters. For example the resulting url after following statement is.. thumbImage.Attributes.Add("onclick", "window.location.href='" + @"..\images\" + filePath + "';"); http://localhost:4258/thumbdb/..imagesWaterlilies.jpg You can view that after images there is no any "\" character.

    -<>-shoaib-<>-

    ASP.NET design help learning

  • image onclick event is not working
    S Shoaib Hussain

    using System.Web.UI.WebControls; Image thumbImage = new Image(); thumbImage.Attributes.Add("onclick", "window.location.href='" + @"\images\" + filePath + "';"); but the resulting page is giving following error: Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly. Requested URL: /thumbdb/imagesWaterlilies.jpg -- modified at 4:58 Thursday 21st June, 2007

    -<>-shoaib-<>-

    Web Development design help learning

  • image onclick event is not working
    S Shoaib Hussain

    using System.Web.UI.WebControls; Image thumbImage = new Image(); thumbImage.Attributes.Add("onclick", "window.location.href='" + @"\images\" + filePath + "';"); but the resulting page is giving following error: Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly. Requested URL: /thumbdb/imagesWaterlilies.jpg

    -<>-shoaib-<>-

    ASP.NET design help learning

  • Calling a windows form
    S Shoaib Hussain

    do you know the names of all form in advance?

    C#

  • Calling a windows form
    S Shoaib Hussain

    simply ask thanks if it works

    C#

  • Calling a windows form
    S Shoaib Hussain

    public Form CreateFormThroughName(string formClassName) { switch(formClassName) { case "FormA": return new FormA(); case "FormB": return new FormB(); } } try it!!!!!

    C#

  • form designer view is not opening
    S Shoaib Hussain

    I have created a Serializable class named "Student". [Serializable] public class Student { } Also created a custom user control. then i used the list in the custom user control. public class myControl : UserControl { List students; public List Students { set { students = value; } get { return students; } } } the controls is performing exact and there is no any compilation error. but if i use this control on any form then designer view of that form vanished out and display this error. Object of type 'System.Collections.Generic.List`1[WindowsControlLibrary1.Student]' cannot be converted to type 'System.Collections.Generic.List`1[WindowsControlLibrary1.Student]'. Kindly help that why the designer view of this form vanished out.

    Windows Forms help

  • using list object as a public property in custom control
    S Shoaib Hussain

    I have created a Serializable class named "Student". [Serializable] public class Student { } Also created a custom user control. then i used the list in the custom user control. public class myControl : UserControl { List students; public List Students { set { students = value; } get { return students; } } } the controls is performing exact and there is no any compilation error. but if i use this control on any form then designer view of that form vanished out and display this error. Object of type 'System.Collections.Generic.List`1[WindowsControlLibrary1.Student]' cannot be converted to type 'System.Collections.Generic.List`1[WindowsControlLibrary1.Student]'. Kindly help that why the designer view of this form vanished out.

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