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
R

rprateek

@rprateek
About
Posts
44
Topics
9
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • what is equivalent to follwoing C# code to VB
    R rprateek
                    row.Cells\[cellIndex\].RowSpan = previousRow.Cells\[cellIndex\].RowSpan < 2 ? 2 : previousRow.Cells\[cellIndex\].RowSpan + 1;
    

    Blog for Programmers

    ASP.NET question csharp com

  • OnClientClick requires 2 Clicks how to solve this?
    R rprateek

    Protected Sub cmdOk_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmdOk.Click
    Dim str As String = ""
    str = ConcatAirCode()
    cmdOk.OnClientClick = "Done('" & str & "','" & strTextId & "')"

    End Sub
    

    I did this in code behind because i need to pass two variables in my Js function Done. It works but requires two clicks as it is posting the page on the first click. Any one got the way around it.

    Blog for Programmers

    ASP.NET javascript com tutorial question

  • How can I send data from one page to Another page's Gridview row.
    R rprateek

    thanks for the reply how would i pass row index that's what is my question

    Blog for Programmers

    ASP.NET com sysadmin docker tutorial question

  • How can I send data from one page to Another page's Gridview row.
    R rprateek

    I have a gridview and have following columns: <asp:TemplateField HeaderText="Test" > <ItemTemplate> <asp:TextBox ID="txtTest" runat="server" Width="200px" MaxLength="30" Text='<%# Eval("TestString") %>' /> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="Click Here" > <ItemTemplate> <asp:Button ID="cmd1" CommandName="cmd1" CommandArgument='<%# Container.DisplayIndex %>' Text="ClickHere" OnClientClick="openpage2(this);return false;" runat="server" /> </ItemTemplate> </asp:TemplateField> a textbox and a command button. OnClientClick of the command button i have opened a new page Now i need to pass the value to the clicked row textbox from the new window. Do anyone know how to acheive this

    Blog for Programmers

    ASP.NET com sysadmin docker tutorial question

  • Ajax Concepts
    R rprateek

    you can check Using Ajax in Asp.net 2.0 web application] and scroll down to Step 9 (Use Ajax in Asp.net application) This might help you out

    Blog for Programmers

    ASP.NET csharp asp-net question

  • how to publish vb.net 2005 project with sqlserver database help me anyone
    R rprateek

    you can check Secure database connection and easy transaction handling from .net

    Blog for Programmers

    Visual Basic csharp database help tutorial

  • Problem in invoking methods of a class
    R rprateek

    declaring an object is different from creating an instance of an object. Unless you get an instance of an object it is not ready to be used in oo environment. You have to go through some books and tutorials.

    Blog for Programmers

    Visual Basic help database

  • converting vb.net Windows Application to Web Application
    R rprateek

    start writing some asp files first

    Blog for Programmers

    Visual Basic csharp help question

  • how to ftp upload file from windows to unix server
    R rprateek

    you can go to following: How to FTP files to remote server from vb 6 application?[^] I hope this might help you.

    Blog for Programmers

    Visual Basic csharp sysadmin tutorial

  • Sockets, remoting or web services which one to use?
    R rprateek

    Hi all, I am about to develop a client server application in which there can be more than 2000 clients continuously using the application at once. The rows returned at one time might be of 1000 s as well. Previously in VB 6 I use to use win sock or dart sock for communicating but the projects were not as big as this. Now i am developing this application in .net 2005 and i went through web and found 3 different approaches of communicating between client and server applications and so I am not being able to choose the right one for me. In my application i will have one desktop application and one web application. Both of these interfaces can be used by clients which connect to remote server and i need to log the connected users as well. Then server will process the requests and talk to Active x objects which will be located in different remote location and those active x objects will talk to database and get back the rows and have to return to appropriate client. Ok now in this scenario what would be better for me to use? please advice advantages and disadvantages of using each of the processes. thanks in advance

    Blog for Programmers

    Visual Basic csharp database wcf com sysadmin

  • Keeping socket connections alive
    R rprateek

    are you using win sock . I had the similar problem before using win sock where i lost data even the client was connected with the server. But later i used dart sock and it helped me you can get the trial version of these from www.dart.com and try it out, hope this would help you.

    Blog for Programmers

    Visual Basic question sysadmin help

  • Create database table directly from a dataset which has many no. of data table [modified]
    R rprateek

    you can insert xml file directly to sql server. for this you can see How to insert XML data in sql server database through visual basic .net may be you have to work through it if you got big xml but it is very handy way of getting your xml data in database.

    Blog for Programmers

    Visual Basic help database xml

  • Connect to a server in VB6.0
    R rprateek

    you can check Create Chat Program using winsock in vb [^]

    Blog for Programmers

    Visual Basic sysadmin question

  • type cast in vb.net
    R rprateek

    thanks steve

    Blog for Programmers

    Visual Basic csharp com

  • type cast in vb.net
    R rprateek

    I have one arraylist where i load up all bookinfo obj and want to return the collection of bookinfo[] I can do it the following way in c# but I need to know how can we type cast the following in vb.net: ArrayList a=new ArrayList(); Bookinfo obj=new BookInfo(); return (BookInfo[])a.ToArray(obj.GetType());

    Blog for Programmers

    Visual Basic csharp com

  • Reading specific columns from Excel
    R rprateek

    To find your exact answer you can go to Read Excel File From VB application

    Blog for Programmers

    Visual Basic database help

  • [Message Deleted]
    R rprateek

    To find your exact answer you can go to Read Excel File From VB application

    Blog for Programmers

    Visual Basic

  • Reverse string
    R rprateek

    and also for those who are looking for similar answers The VB function StrReverse() can be used by importing the Microsoft.VisualBasic Namespace

    Blog for Programmers http://www.rprateek.blogspot.com

    Visual Basic com

  • Reverse string
    R rprateek

    ya that's what i was looking for and also found out from other forums that I can convert the string into chararray() and then do the Array.reverse() thanks Paul

    Blog for Programmers http://www.rprateek.blogspot.com

    Visual Basic com

  • Reverse string
    R rprateek

    i understand Dave I know how to loop through the string and get it done but i was just asking if any of you who knows the better and short way . Because I was wondering if there would be a function like: string.reverse by .net or any other similar functions. I was just trying to learn some new thing. Thanks for your comment

    Blog for Programmers http://www.rprateek.blogspot.com

    Visual Basic com
  • Login

  • Don't have an account? Register

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