Search results for query: *

  • Users: Rajya
  • Content: Threads
  • Order by date
  1. R

    Button Click

    Hello Is there a way I can find out which button / control was accessed or clicked on a Windows Form? Presently I am doing it manually by storing the info in a global variable as soon as a button is accessed. Any advice will be appreciated :-)
  2. R

    Unable to delete Row

    Hi I am unable to delete Row(s) from a DataTable - nothing actually happens - there are no errors & the lines get executed but when I check the actual Table, I find all the Rows intact! Following is the code I am using for delete - cEssentials.cDataTable.Rows(intIndexToDelete).Delete()...
  3. R

    run-time binding in crystal reports

    Hello I am using VB.NET for developing an application. For reporting, I am using Crystal Reports for .NET - how do I bind the report fields at run-time / dynamically. I would not like to use the Wizards / Experts. Please advise.
  4. R

    Global variables, procedures

    Hello Like we use Modules for declaring global variables, procedures etc, in VB.NET WinForms applications, is there a way for doing the same in ASP.NET Web applications? I have used the Web.Config for declaring a global ConnectionString but do not know what to do about the rest of them...
  5. R

    Encryption in SQL Server

    Hello Is there I can encrypt / decrypt column contents in SQL Server 2000? I intend to store Username & Password in there. Thanks
  6. R

    deploy ASP.NET application

    Hi How do I deploy / install an ASP.NET application onto a machine / intranet other than the development machine? I am using VS.NET along with SQL Server 2000.
  7. R

    SQL Server access - login fails

    Hi I am using SQL Server 2000 with ASP.NET (in VS.NET). How do I implement login / access to the database server? As I am developing on W2k, I am using Trusted Connection & have created a new Login in SQl Server (\Logins) for the user MYPC/ASPNET. Its working on my dev machine, but when I...
  8. R

    Calling a form from code

    Hi In VB 6.0, if I needed to call a Form2 from a Form1, I just put in the following command in, say Form_Load of Form1 and it would work - Private Sub Form_Load() Form2.Show End Sub When I upgrade this project to VB.Net 2003, the same is upgraded without any issues as follows - Private...
Back
Top