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
R

Ron S

@Ron S
About
Posts
80
Topics
52
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • instantiating winform by getting the formname through string??
    R Ron S

    Hello aLL, I am trying to create windows form on the fly by looking at the value coming in form of a string. for example:- i have form by name frmMain i will be getting this name from a string during runtime. I am not getting how to create an instance of an object of type frmMain Thanks in Advance Regards Bharath

    Ron

    C# tutorial question

  • Regarding WPF Controls.
    R Ron S

    Hello All, I am very new to wpf, as we are about to decide on some third party controls that give us features like : - Options to switch over between standard MDI and tabbed display. Saving the Layout information including the document window layout. I have tried Actipro: it does give option to switch between diff views. but does not give option to save the document layout window details. Can anyone let me know about some tools which does provide these functionalities. Thanks in advance Bharath Ron

    Ron

    WPF csharp wpf tools

  • Tool bar Tray query?
    R Ron S

    Hello All, I have two toolbar within a toolbar tray. I am trying to drag and drop the toolbars this is possible. My query is if i want to drag toolbar to right hand corner within a band then it is not allowing me to do so. Am i missing some property setting. ///The code which i am trying out drag and drop is pasted below. Open Save Paste ere //// Thanks in advance . Bharath

    Ron

    WCF and WF database question

  • how to by pass login page???
    R Ron S

    Hello All, I am working on an application through which i need to open a webpage which has to bypass the login page. The website is hosted on linux PC and apache server, i will be provided with the username and the password. i would like to know how to by pass login page from winform application to login to that page . Thanks in advance

    Ron

    C# apache sysadmin linux tutorial question

  • Can we lock just a single table in xml file??
    R Ron S

    Hello All. I have xml file which has several tables, there are several users who will be accessing this file, before i was locking the whole file so that others can just read it cannot edit. Now i want to lock only the particular table which a particular client is accessing and the rest of the tables are free to be edited .. Is this possible using C#.net ?? Thanks in advance

    Ron

    XML / XSL csharp xml json question

  • Regarding multi coulmned output from xsl....
    R Ron S

    Hello All, I am transfroming xml file into word documnet from the xslt that i have generated . I am creating tables on the word document with some data, the problem is i have to create tables adajacent to each other, but xsl is creating table one below the other .. Any hint what setting i would have missed ?? Thanks and Regards

    Ron

    XML / XSL xml help question

  • Regarding parameterizedthreadstart???
    R Ron S

    Hello All, I have a situation here, where in, i have to pass a ref object to a method that has to be called within a thread. how to pass that ref object within the parameterized thread. Public void methodname(ref string Strname) { .. .. .. } parameterizedthreadstart prmThst = new ParameterizedthreadStart(mehthodname(ref StrName) thread thnew = new thread(prmthSt); this is throwing error.. Help is required.. Thanks and Regards

    Bharath.S Ron

    C# help tutorial question

  • unknown Error...???
    R Ron S

    Hello All, I am getting an unknown error when trying to create a huge word document. It will create somwhere arround 37 pages of word document thene it will pop up error message stating.. error HRESULT E_FAIL has been returned from a call to a COM component. Thanks in advance.

    Bharath.S Ron

    C# com help question

  • Regarding creation of table structure in word from C#.net.
    R Ron S

    i am creating tables on word document. the data is comming from xml file.

    Bharath.S Ron

    C# csharp performance help code-review

  • Regarding creation of table structure in word from C#.net.
    R Ron S

    Hello All, I have created an application which will create the word document with table structure wihtin it. but my problem is, it is taking 3 minutes for creating 60 tables on the documnet.I will have to create somewhere arroung 7000 tables to be created on the fly. I wanted to know whethere there are any methods from which i can improve the performance

    Bharath.S Ron

    C# csharp performance help code-review

  • Regarding, creating the table in MSWord Document from C#.Net.
    R Ron S

    Hello ALL, I am creating the word document and filling it up with the tables needed. I need to add two tables adjacently , i tried giving a column break but it is not happening . If any one has some clues it will be helpfull. Thanks in advance

    Bharath.S Ron

    C# csharp

  • Regarding creating a table in word document from C# windows application.
    R Ron S

    Hello All, I want to create a word document which will have a recursice occuring table within it. I will be providing the data to the table from a xml file. This task has to be done using VS2005. I would like to have some idea of accomplishing this task. Thanks in advance

    Bharath.S Ron

    C# csharp xml

  • Regarding Javascript...
    R Ron S

    the below is my javascript. function getCheckedRadio() { if(document.getElementById("SOISummitRegistrationCntrl1_RdbtnRegAdvPck").checked==true) { return true; } else if(document.getElementById("SOISummitRegistrationCntrl1_RdbtnRegOnly").checked==true) { return true; } else { alert("Please check the option"); return false; } }

    Bharath.S Ron

    ASP.NET javascript help question

  • Regarding Javascript...
    R Ron S

    OnClientClick="return getCheckedRadio();" This is how i am calling the function is this correct???

    Bharath.S Ron

    ASP.NET javascript help question

  • Regarding Javascript...
    R Ron S

    Hello All, I have a aspx page withing which i have two radio buttons. The user has to check any one option to move further. I have written a javascript which will check whether he has checked one option or not. my problem is it is showing the alert to check one option but it is not stopping in the same page it is redirected to the next page even though the alert messaged poped up. Have i left something ??? Thanks and Regards

    Bharath.S Ron

    ASP.NET javascript help question

  • Exception handling..????
    R Ron S

    hello ALL, I have a doubt. if i want to continue normally after catching the expecteed exception is it possible?? Ex:- try { int intDivVal; for (int i =o ;i<5;i++) { int Divval=10/i; } } catch(dividebyzeroexception ex) { messagebox.show(ex.message.tostring()); } i want to continue after showing the message. Thanks in advance

    Bharath.S Ron

    C# question

  • Populate gridview in asp.net ajax
    R Ron S

    go to the properties int the update panel and create trigger for loading the grid. for example if your loading the grid on click of the button then create trgger for that button click even . it will populate the grid

    Bharath.S Ron

    ASP.NET help csharp asp-net database sales

  • Regarding Sessions..
    R Ron S

    can you please brief me on this concept.??

    Bharath.S Ron

    ASP.NET help

  • Populate gridview in asp.net ajax
    R Ron S

    use update panel from the ajaxextensions. then create a trigger control for the grid to load.

    Bharath.S Ron

    ASP.NET help csharp asp-net database sales

  • Regarding Sessions..
    R Ron S

    When i click the browser back button the page load event is not triggered ,the page will be directly loaded over the browser.

    Bharath.S Ron

    ASP.NET 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