Search:

Type: Posts; User: raghavendran

Page 1 of 6 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    4
    Views
    674

    Shuts down the Project

    I've 50 odd VB6 projects in my PC. In one particular project when it shows 'Run time error', I press the debug key. Now at this point if I press the 'End' button in the top tool box, it shuts down...
  2. Replies
    8
    Views
    1,069

    VS 2008 Re: RegistryPermission error

    This is the error message :
  3. Replies
    8
    Views
    1,069

    VS 2008 Re: RegistryPermission error

    When googling, I understand that I need to configure the .NET assembly to have permissions with the Microsoft.NET Framework Configuration Tool. But unfortunately I do not find in this :...
  4. Replies
    8
    Views
    1,069

    VS 2008 Re: RegistryPermission error

    In my Log-in Form, at first it access the Registry keys in the local machine (from which the application is called). It takes action accordingly. It does some calculation and checks with something....
  5. Replies
    8
    Views
    1,069

    VS 2008 Re: RegistryPermission error

    Sorry. I'm not getting you. From PC-B, I'm trying to access the application which is installed in PC-A.
    PC-A and PC-B are connected in LAN.
    I've shared the folder in which the said application is...
  6. Replies
    1
    Views
    790

    Run an application as Administrator

    When I change the UAC settings - app.manifest - as below

    <requestedExecutionLevel level="requireAdministrator" uiAccess="false" />

    it gives an error while clicking the 'Build' >>
    "ClickOnce...
  7. Replies
    8
    Views
    1,069

    VS 2008 RegistryPermission error

    I have 2 PCs – in which both Windows XP and Windows 7 OSs are installed. I have given static IP address in both PCs. Like 192.168.1.2 in one PC and 192.168.1.4 in the other.
    I have an application...
  8. Re: DataGridViewComboBox Column - an issue

    @ .Paul >> Here only I got that


    Private Sub DGVComboIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)
    'this handles the datagridviewcombobox cell...
  9. Re: DataGridViewComboBox Column - an issue

    I modified the code a little bit as follows. Now it's working fine


    Private Sub DGV_EditingControlShowing(ByVal sender As Object, ByVal e As...
  10. Re: DataGridViewComboBox Column - an issue

    Thank you. I have used the above code. I'm getting the following error (when I move on to second DGVComboBoxCol)
  11. [RESOLVED] DataGridViewComboBox Column - an issue

    I have a DGVCBColumns. This is how I bind it.


    Dim cbCell As New DataGridViewComboBoxCell
    cbCell = Grid3.CurrentRow.Cells(1)

    vSqlText = "Select Something from SomeTable"
    Dim dt As New...
  12. Replies
    3
    Views
    720

    VS 2008 Re: Auto Increment a Column

    I'm not talking about the primary-key column.i.e. RecID. I've no issue with it. I just want to know a way to programatically increment the ReceiptNo column (on inserting a new record) which is not an...
  13. Replies
    3
    Views
    720

    VS 2008 Auto Increment a Column

    My Access Table is like this : RecID(PrimaryKey) : TrustID : ReceiptNo

    Based on TrustID the ReceiptNo is to be assigned. Means – it can have duplicate values.

    Application is connected...
  14. Replies
    1
    Views
    1,007

    VS 2008 Re: RDLC Deployment issues

    how to deploy a .rdlc report ? Can someone help me please ?
    I've set the 'Build action' property of the report to 'Content' &
    'Copy To Output Directory' property is set to 'Copy...
  15. Replies
    1
    Views
    1,007

    VS 2008 RDLC Deployment issues

    I have developed an application and created a set-up program, systematically. I'm able to install the application in another computer. Works fine. In my original application I have several RDLC...
  16. VS 2008 Export DataTable to Excel as as CSV file

    I need to export the contents in a DataTable to Excel in CSV format. Can someone please help me ?
  17. VS 2008 Re: Retrieve a Date column in dd-MMM-yyyy format in OLEDB

    A small change in my code done it.

    vSQL = "Select ColA, Format(DateColB, 'dd-MMM-yyyy') as DateColB, ColC from Table1 order by ColA"
  18. VS 2008 [RESOLVED] Retrieve a Date column in dd-MMM-yyyy format in OLEDB

    I use the following Sql statement to retrieve columns from a MS-Access Table

    vSQL = "Select ColA, DateColB, ColC from Table1 order by ColA"

    In which I want the field DateColB to appear in...
  19. Replies
    2
    Views
    1,545

    Populate a MSFlexGrid

    The following code populates a Grid. But i would like to give slno of the record also along the same lines. Is it possible ?


    Dim vSql As String
    Dim vRs As New Recordset

    vSql = "SELECT...
  20. Replies
    37
    Views
    48,308

    Re: something color with MSFlexGrid

    Dim vSql As String
    Dim vRs As New Recordset

    vSql = "SELECT Id,AdmNo, Name, Phone1 FROM Students ORDER BY ID"
    Set vRs = New ADODB.Recordset
    vRs.Open vSql, cnnRice, adOpenKeyset, adLockOptimistic...
  21. Replies
    12
    Views
    2,550

    Re: Just-in-time debugging

    Line 1: If DataEnvironment1.rsBill.State = adStateOpen Then DataEnvironment1.rsBill.Close
    Line 2: DataEnvironment1.Bill 'Retrieves from TempDB table in order to PRINT...
    Line 3:...
  22. Replies
    12
    Views
    2,550

    Re: Just-in-time debugging

    The JIT message says


    But I don't see the debugging option under Tools/options..... in the toolbar. What's wrong ?
  23. Replies
    12
    Views
    2,550

    Re: Just-in-time debugging

    That line referred by you is to refresh. That's all. It is in use at several areas of my porject successfully.

    I've put Errhandler as you pointed out. But in vain. It not at all takes care of the...
  24. Replies
    12
    Views
    2,550

    Re: Just-in-time debugging

    I've used the recordset vRs1 in cmdSaveF1_Click event. I did not close it. I agree. But I use a New vRs1 in PrintF1_Click event. (it's a different event). Will it be a cause ?
  25. Replies
    12
    Views
    2,550

    Re: Just-in-time debugging

    It occurs in IDE Runtime : I press Start in the Run option (F5)
    As well it occurs while clicking the application (compiled .exe file) also.
  26. Replies
    12
    Views
    2,550

    Re: Just-in-time debugging

    LaVolpe : In PrintF1_Click event, It's through upto 'Successfully Retrieved'. After the appearance of that message only, I get JIT error message. So, i think it's datareport printing that troubles me...
  27. Replies
    12
    Views
    2,550

    Re: Just-in-time debugging

    This is what I do have :


    Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
    If KeyCode = vbKeyF1 Then
    If SaveValidate = True Then
    cmdSaveF1_Click
    End If
    End If...
  28. Replies
    12
    Views
    2,550

    Just-in-time debugging

    My back-end is MS Access 2007. I have a form - KeyPreview set to ON, It's a Billing form. I've two options to save the record
    option1 : Just save the bill (through cmdSave_Click event)
    option2 :...
  29. Re: "Please wait while Windows configures Microsoft Visual Studio 2008..."

    Remove VB6 and then Re-install it.
  30. Replies
    18
    Views
    2,079

    Re: Protect Sql Database

    Thank u so much. I'll give it a try. I started converting my vb codes with SPROCS. I think I would require not less than 24 hrs to change my pages of codes. I'll come back to you successfully.
    1....
  31. Replies
    18
    Views
    2,079

    Re: Protect Sql Database

    O.K. I'll follow your advise. Please clarify me these things.
    1. For each and every Select/insert/update/delete statements i used in my vb application, i need to create a Stored Procedure in the...
  32. Replies
    18
    Views
    2,079

    Re: Protect Sql Database

    I already wrote several lines of select/insert/update statements in my vb application. Unfortunately I was not aware of using Stored Procedures.
    Now if i need to use it, again i need to rewrite...
  33. Replies
    18
    Views
    2,079

    Re: Protect Sql Database

    I understand from your reply that I need to create a mediator like thing, and you call it by the name 'SERVICE' , 'through which' the client machine will communicate to the server machine.
    If you...
  34. Replies
    18
    Views
    2,079

    Re: Protect Sql Database

    @szlamany :
    I'm very much interested in knowing what you have told in your reply in #5. But i don't know where from i need to start.
    1. "Put it on a server"
    2. "and allow them to connect to this...
  35. Replies
    18
    Views
    2,079

    Re: Protect Sql Database

    Can you please explain me the method to accomplish this ?
  36. Replies
    18
    Views
    2,079

    Re: Protect Sql Database

    Through my vb.net 2008 application, I'll not have any problem for the end-user to view the (queried) datas. I've certain controls where Admin person alone will be able to edit/delete the records in...
  37. Replies
    18
    Views
    2,079

    Re: Protect Sql Database

    I develop an application in my Home PC. I deploy it in X's PC, say. While doing so, i install Sql server 2005 in the Main PC. 2 or more PCs will be connected in LAN in a workgroup there. As you said...
  38. Replies
    18
    Views
    2,079

    Protect Sql Database

    After connecting to an Instance of Sql Server in SSMS, we can open a DataBase. Is it possible to protect this from unauthorized people to open the database by giving it a password ?.
    We do it in...
  39. Replies
    7
    Views
    1,398

    Re: Server ComputerName

    The following function does it......


    Imports System.Data.Sql

    Public Function GetServerList() As String

    Dim Server As String = String.Empty
    Dim instance As...
  40. Replies
    7
    Views
    1,398

    Re: Server ComputerName

    @techgnome :
    In order to use the EnumAvailableSqlSer function, i need to add this reference : "Microsoft.SqlServer.Management.Smo"
    Unfortunately I did not find it in my Ref.List. I Browsed to add...
Results 1 to 40 of 202
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width