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
V

Vinay Varghese

@Vinay Varghese
About
Posts
9
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • What was your first programming job like?
    V Vinay Varghese

    During my high school I learned C & C++, during my bachelors degree I was programming using visual basic 6 before comming to .net. It was all during the year 2003, when we had to do our final project and one of our clients, St Mary Syrian Church(they had schools/shops/church etc), they wanted to have a accounting package to manage there accounts as currently they were using pen & paper(using registers). That was my first programming job, to develop an accounting package developed using Vb6.0 and MS Access. After developing the whole application the client was impressed and they paid us some money and eventually for all the enhancement further on they paid us. It took around one year to fine tune the application. The best thing is still they use the application.

    Vinay

    The Lounge question career

  • sliding or collapsible display
    V Vinay Varghese

    Hi, I have tried using accordian but that`s not what i am trying to achieve here, please guide me If I am doing wrong. If you look at the example given by me what I want is the Show Times 1 to shrink when Show Time 2 is clicked and display all the movies under show time 2. I understand that under each Show Time there has to be panel, but my list is dynamic so I cannot manually set the number of panels. Can that be set from the code ? What I am looking is for a SINGLE sliding panel which floats around every row in the table, So if Row 1 is clicked the panel displays the show times under it, when Row 2 is clicked, the data inside row 1 Is shrinked and the panel floats to down displaying the movies under Row 2. Any Ideas? Thanks Vinay

    ASP.NET wpf wcf tutorial

  • sliding or collapsible display
    V Vinay Varghese

    Hi, I want to display show times and the list of movies under it. The display would be like this - Show Time 6.30 PM Movie 1 Movie 2 Movie 3 Show Time 9.30 PM Movie 1 Movie 2 Movie 3 I want to display it in such a way that when I Click on "Show Time 6.30 PM" it would display the movies under that show and wont display anything under "Show Time 9.30 PM". Now when I click on "Show Time 9.30 PM", all the contents inside "Show Time 6.30 PM" should shrink and the list of movies should be available in "Show Time 9.30 PM". I need some idea on how to do this, will it be achieved using a sliding panel, or is there any other control. Note - For the show times and movie details I have a collection which I am binding it to a repaeter control. Regards Vinay

    ASP.NET wpf wcf tutorial

  • Getting a Generic Collection from a Generic Collection C# Linq
    V Vinay Varghese

    'Select many' , yeah got it. Thanks.

    StudentCollection studentColl = GetAllStudentCollection();
    StudentSubjectCollection subjectColl = studentColl.SelectMany(field=>field.StudentSubjectCollection);

    LINQ csharp question linq

  • Getting a Generic Collection from a Generic Collection C# Linq
    V Vinay Varghese

    I have a Generic collection of Student in StudentCollection Class and each Student Class is having a SubjectCollection Class. I have a method which returns the StudentCollection.How can I get the SubjectCollection directly from the StudentCollection ? I found two ways of doing it--- First Way StudentSubjectCollection studentsubjectCollection = new StudentSubjectCollection(); var studentsColl = GetAllStudentCollection(); foreach (var subject in studentsColl ) { studentsubjectCollection = subject.StudentSubjectCollection; } Second Way StudentSubjectCollection studentsubjectCollection = new StudentSubjectCollection(); StudentCollection studentColl = GetAllStudentCollection(); foreach (MessageModule messageModule in messageModuleCollection) { studentsubjectCollection.AddRange(messageModule.MessageModuleReplyCollection); } Is there any other way of doing this such as one line of code to get the StudentSubjectCollection directly from the StudentCollection. Something like StudentSubjectCollection studentsubjectColl = GetAllStudentCollection().Select(field=>field.....); but this doesnt work. Thanks --Vinay

    LINQ csharp question linq

  • Threading or Services
    V Vinay Varghese

    Hi, We are having a web application which is quite big and used by around 300 super users for managing around 5000 staffs. Now we are implementing SMS functionality into the application which means the users will be able to send and recieve sms. Every two minute the sms server of the third party is pinged to check whether there are any new messages. Also sms are hold in queue and send every time interval of 15 to 30 minutes. I want this checking and sending process to run in the background of the application all the time, even if the user closes the browser window. I need some advice on how do i do this ? Will using thread will achieve this or do I need to create a windows service for it or are there any other options ? Regards Vinay

    C# question sysadmin data-structures

  • Multiple web site hosting in IIS having multiple domain names with static ip
    V Vinay Varghese

    I tried using windows server 2003 and iis 6.0, it worked, I created virtual websites under my website,giving different domain names under the host headers and it worked. Thanks Vinay

    .NET (Core and Framework) wpf wcf com sysadmin windows-admin

  • Multiple web site hosting in IIS having multiple domain names with static ip
    V Vinay Varghese

    The domain names which I have is pointing to my static IP address 65.149.23.34. Then in my router I have pointed to the web server of machine 192.168.1.100 In the IIS of the machine 192.168.1.100, I have created two websites and set the host names for both the websites to my domain name. When I enter the domain names it says page cannot be accessed. But when I remove the host names from the websites of IIS and access by one domain name, I can access my web page. Does WINDOWS 7 IIS support only 1 website hosting is it , Do I need to try in windows server 2003 ?

    .NET (Core and Framework) wpf wcf com sysadmin windows-admin

  • Multiple web site hosting in IIS having multiple domain names with static ip
    V Vinay Varghese

    Hi, I have 2 domain names such as www.abc.com and www.xyz.com. I have a machine which is having a manual ip address of 192.168.1.100 and in this machine I have created two websites in the IIS 7.5 in Windows 7, In the binding properties, I have set the ip address assigned/unassigned and the host name to the domain name www.abc.com to one web site and www.xyz.com to the other website, also both the websites run on port 80. I have a dynalink router, where I have set the Virtual Server => Port Forwarding => Web Server pointing to 192.168.1.100 machine. I am not able to view the web sites when I give by domain names, when i type www.abc.com I wish to see website1 and www.xyz.com I wish to see website2, When i tried removing the host names from the binding, I am able to view my website1 after typing the domain name www.xyz.com. Is there anything I am missing or pointing wrongly ? or doing wrong here ? Please advise. Thanks Vinay

    .NET (Core and Framework) wpf wcf com sysadmin windows-admin
  • Login

  • Don't have an account? Register

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