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
P

praveenkumar palla

@praveenkumar palla
About
Posts
57
Topics
30
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Error 1053: The service didn't respond to start or control request in a timely fashion
    P praveenkumar palla

    Hi, I Have created a windows service which consumes a web service to send data to other server. I am getting Error 1053:The service did not respond to start or control request in a timely fashion I tried increasing ServicePipeTimeout to more than 2 mins... but getting the same error And I also tried that, eliminated invoking the consume web service method in on start event. Thanks, Praveen Palla.

    Article Writing sysadmin help

  • Executing sql stored procedure and storing result set in dataset
    P praveenkumar palla

    Thanks i will go through and try to solve my problem...

    LINQ database csharp linq help

  • Executing sql stored procedure and storing result set in dataset
    P praveenkumar palla

    Hi, My stored procedure will return same columns every time. As of now i am using the following code to bind the data to grid as partent child. Can you suggest me what to do inorder to get the same results without dataset using linq. frmGTGReport_XdgvGTGReport.DataRows.Clear() frmGTGReport_XdgvGTGReport.DetailGridTemplates.Clear() frmGTGReport_XdgvGTGReport.Columns.Clear() frmGTGReport_XdgvGTGReport.GroupTemplates.Clear() frmGTGReport_XdgvGTGReport.BeginInit() frmGTGReport_XdgvGTGReport.SingleClickEdit = True frmGTGReport_XdgvGTGReport.FixedColumnSplitter.Visible = False frmGTGReport_XdgvGTGReport.DataRowTemplate.CanBeSelected = False frmGTGReport_XdgvGTGReport.DataRowTemplate.FitHeightToEditors = True frmGTGReport_XdgvGTGReport.SynchronizeDetailGrids = True ''binding selected protocol and institution to UI as parent frmGTGReport_XdgvGTGReport.SetDataBinding(dsTemp, "Protocol") ''creating data relation for selected protocol and IRB Dim data_relation_ProtocolIRB As New DataRelation("Protocol_IRB", dsTemp.Tables("Protocol").Columns("Protocol"), dsTemp.Tables("IRBRegNo").Columns("Protocol")) dsTemp.Relations.Add(data_relation_ProtocolIRB) Dim detailGridTemplate_ProtocolIRB As New DetailGrid() detailGridTemplate_ProtocolIRB.SetDataBinding(dsTemp, "Protocol.Protocol_IRB") detailGridTemplate_ProtocolIRB.HeaderRows.Add(New ColumnManagerRow()) frmGTGReport_XdgvGTGReport.DetailGridTemplates.Add(detailGridTemplate_ProtocolIRB) Dim data_relation_IRBVersion As New DataRelation("IRB_Version", dsTemp.Tables("IRBRegNo").Columns("IRB Registration Number"), dsTemp.Tables("Versions").Columns("IRB Registration Number")) dsTemp.Relations.Add(data_relation_IRBVersion) Dim detailGridTemplate_IRBVersion As New DetailGrid() detailGridTemplate_IRBVersion.SetDataBinding(dsTemp, "Protocol.Protocol_IRB.IRB_Version") detailGridTemplate_IRBVersion.HeaderRows.Add(New ColumnManagerRow()) detailGridTemplate_IRBVersion.Collapsed = False detailGridTemplate_ProtocolIRB.DetailGridTemplates.Add(detailGridTemplate_IRBVersion) frmGTGReport_XdgvGTGReport.EndInit()

    LINQ database csharp linq help

  • Executing sql stored procedure and storing result set in dataset
    P praveenkumar palla

    Hi, My stored procedure returns result set not from single table, there is some business logic in the stored procedure based on that getting the values required and inserting into temporary table created in the stored procedure finally stored procedure will return the result set from the temporary table. In the same way there are similar stored procedures and each will return the result set and there will be a relation in the result sets. Normarally we are executing the stored procedure and getting the result set(s) into the same dataset with different datatables in that and creating datarelations based on the on common value and then binding the dataset to xceed grid (third party control) as partent child but inorder to accomplish this using linq i need to execute the stored procedure and result set should be stored in dataset. Please help me on this...Thanks in advance.

    LINQ database csharp linq help

  • Executing sql stored procedure and storing result set in dataset
    P praveenkumar palla

    Thanks for the reply I need the result set should be in dataset since in my requirement there should be parent-child relation in grid for that i need to create datarelation between the different datatables in dataset and then assign the datasource to parent and child using datarelation. Please help me on this...

    LINQ database csharp linq help

  • Executing sql stored procedure and storing result set in dataset
    P praveenkumar palla

    Hi all, I need help to execute sql stored procedure using linq to sql and result set should be stored in dataset. Thanks in advance. Praveen Kumar Palla

    LINQ database csharp linq help

  • monitor resolution problem
    P praveenkumar palla

    Set the Anchor property for each control according to your design Your controls will be placed according to the resolution

    Visual Basic csharp help

  • Migration from framework 2.0 to 3.5
    P praveenkumar palla

    Thanks for the soon reply

    Visual Basic csharp database sql-server wcf sysadmin

  • Migration from framework 2.0 to 3.5
    P praveenkumar palla

    Hi, We done one application in .net 2005 and used (sql server, web services and reflection). Now we want to migrate the application to frame work 3.5. Please let me know if any deprecated methods and what should i take care Please guide me to analyse the impact of this migration Thanks in Advance

    Visual Basic csharp database sql-server wcf sysadmin

  • Typed dataset giving problem...
    P praveenkumar palla

    I done one vb.net application which includes typed dataset (using SQL Server) Dragged one required database table on to the xsd(typed dataset) and right click select query then sqlstatement and then insert method and modified the populated query as required . And in the code i am using the method(insert) created in the xsd(typed dataset) The application is working fine in my local machine but when i moved the application to client machine (which uses another database but table and columns names and keys all are similar) there i am getting an exception "An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections." I also changed the database name in configuaration file (connection string-autogenerated when drag a table) Please help on this and Thanks in advance.

    Visual Basic database help csharp sql-server

  • synchronization of dataset with sql server database
    P praveenkumar palla

    Hi, I want to decrease the no of roundtrips to the database for that i have implemented that on form_load i am retrieving the datarows required from the database and storing those in the dataset. And i am doing all the modification(updates,delete and inserts) in dataset and finally using dataadapter and commandbuilder objects i am updating all the modifications to the database at a one shot. This is working fine. But I need help to synchronize the dataset to the database i.e. On form_load i filled the dataset and after that another user updated the database but my dataset doesn't have these updates, so when i update database using mydataset and dataadapter and command builder the updates done by another user earlier have been overwritten. I heared that Merge method of dataset is helpfull in this scenarios, but for me it is not working so plz help me on this by giving small example. Thanks in advance

    Visual Basic database sql-server sysadmin help tutorial

  • Regarding multithreading
    P praveenkumar palla

    thanks for the response using VB.Net 2005

    Visual Basic

  • Regarding multithreading
    P praveenkumar palla

    If method to be invoked in thread is "callThread()"(without parameters) we are following Thread testThread=new Thread(Addressof callThread) testThread.start() But I want to the method which has some parameters ex: callThread(ByVal s as string,ByVal i as integer) { } how should i call this method using threading Please advice me Thanks in advance Praveen Kumar Palla

    Visual Basic

  • java script in windows application
    P praveenkumar palla

    Thanks for the reply Pankaj My requirement is the textbox should have validation routine that should be defined in external to the application. If anytime any change in the validation routine need not be compile and build the application. how can i achieve this? please help me on this. Ex: validation is textbox should accept positive integers including 0 praveen Kumar Palla

    C# java tools tutorial question

  • java script in windows application
    P praveenkumar palla

    can we use java script in windows application? If so just brief me how to use Thanks in advance Praveen Kumar Palla

    C# java tools tutorial question

  • Regarding validation routienes in c#.net windows
    P praveenkumar palla

    Hi In my application I need that "When user enters a value in the textbox there should be a validation routiene which contains some formula, execute that and should return the entered value is correct or not and this validation routiene should be changeble by the user". i.e. validation routiene is like plug-in in C#.net windows application. Please help me Thanks in Advance Praveen Kumar Palla

    C# csharp help

  • Regarding code for decimal to ASCII
    P praveenkumar palla

    Thanks for the reply

    C# help

  • Regarding code for decimal to ASCII
    P praveenkumar palla

    Thanks for the reply Swader

    C# help

  • Regarding code for decimal to ASCII
    P praveenkumar palla

    Hi Help me to convert a decimal value to a 1 byte of ASCII data if decimal is '40'-- ASCII is'(' Thanks in advance Praveen Kumar Palla

    C# help

  • Regarding text box validation in windows
    P praveenkumar palla

    Should allow minus sign '-' at first position(index) only should not allow in between Thanks in advance Praveen Kumar palla

    C# database
  • Login

  • Don't have an account? Register

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