Search:

Type: Posts; User: Manoj91

Page 1 of 3 1 2 3

Search: Search took 0.07 seconds.

  1. Replies
    0
    Views
    326

    Oracle Heterogeneous Service

    Hi,

    I want such a connectivity from Oracle to MS Access that if I connect to SQL *Plus and executes a query something like

    select * from employee@myaccess ;

    then I should be able to select...
  2. Replies
    5
    Views
    591

    Re: mysql_connect() error

    Hi,

    I've done all this
    I installed PHP in C:\PHP (without spaces in path)

    nothing helped at all ................I'm still getting same error
    I know PHP could not recognize mysql_connect()...
  3. Replies
    5
    Views
    591

    Re: mysql_connect() error

    Hi

    Thanks for the suggestion and sorry for not posting my code properly.

    I've enabled this extension in config file

    extension=php_mysql.dll
    extension_dir = "C:/Program Files/PHP/ext/"
  4. Replies
    5
    Views
    591

    mysql_connect() error

    Hi all,

    I'm try to run my php code to connect to mysql but it is showing an error


    Fatal error: Call to undefined function mysql_connect() in C:\Program Files\Apache Software...
  5. Configuring PHP with Apache server on my local computer.....?????

    Hi all,

    I'm try to configure PHP5 on my local computer with Apache server. I've installed Apache server successfully and it is working as I verified.

    But the problem I'm facing is my Apache...
  6. Replies
    1
    Views
    526

    Connectivity problem with SQL Server

    Hi All,

    Whlie connecting with SQL Server it throws an exception

    "Login User failed ComputerName/ASP.Net"


    Please Help
    Thanks & Regards
    Manoj
  7. Re: Enable/Disable Controls in DataGrid's Template Column

    Anybody please help

    Manoj
  8. Enable/Disable Controls in DataGrid's Template Column

    Hi

    I've a DataGrid with second column as template column (CheckBox) to show status (Activate/Deactivate) for my property from the database.

    Now, I've an Edit button to edit the values for...
  9. Re: How to code for COM, COM+ & DCOM components ??

    Hi All,

    Anyone please respond to this post,,,,,,,,,,,,,,,

    Thanks & Regards
    Manoj :thumb:
  10. Re: How to code for COM, COM+ & DCOM components ??

    Hi,

    Thanks for the valuable information. I tried this and it worked fine for me.

    COM means code reuse i.e. suppose we have written a class in C++ and the same we need in Visual Basic then we...
  11. How to code for COM, COM+ & DCOM components ??

    Hi All,

    I studied about Component Object Model but didn't find any sample code which can help me to code mine.

    I want to start COM & DCOM programming in VB. Can anybody provide some information...
  12. Error : Project is not configured to be debugged.

    Hi...

    I copied code for a site from my friend. Whenever I try to run that I receive an error message stating :-

    Error while trying to run project : Unable to start debugging on Web Server. The...
  13. Replies
    7
    Views
    686

    Re: Data Grid Sorting problem

    Hi..........

    In my attached file there is

    protected HtmlInputHidden htmlHiddenSortExpression;

    instead of

    protected HtmlInputHidden htmlHiddenSortExpression = new HtmlInputHidden();
  14. Replies
    7
    Views
    686

    Re: Data Grid Sorting problem

    Thanks sevenhalo,

    It worked fine. But I was just concerned with the code of attached file. Can u please see

    this code I've downloaded from C# of this forum 101_Examples

    Thanks
    :eek2:
  15. Replies
    7
    Views
    686

    Data Grid Sorting problem

    Hi...........

    I'm new to web development. I'm trying to sort my data grid but getting following error message

    System.NullReferenceException: Object reference not set to an instance of an...
  16. Re: DateTime Picker control display

    Hi

    you can use format function with now() if u need date in particular format

    Private Sub Form_Load()
    DTPicker1.Value = Format(Now(),"mm/dd/yyyy hh:nn:ss AM/PM")
    End Sub

    Thanks &...
  17. Re: Help me to understand this code ( I suppose API )

    http://support.microsoft.com/default.aspx?scid=kb;en-us;Q190000

    I found related topic here. So I'm putting a link here for others reference.
  18. Re: Help me to understand this code ( I suppose API )

    Hi...

    Yes, it is API function. Can u please help me to understand this code. Specially function declaration which is in bold. It is using kernel32.dll I suppose. My question is

    How can I come...
  19. Help me to understand this code ( I suppose API )

    Hi

    RobDog888 has written this code. I also find such codes on various resources. I want to learn it. Can someone explain it from the very beginning


    For the ultimate reliable way to determine...
  20. Re: Connect to MS Access database on Remote Computer

    Thanks :eek2:

    it solved my problem. :wave:
    :eek2: :eek2:

    Manoj
  21. Re: Connect to MS Access database on Remote Computer

    Thanks

    I did the same but just wondering. Because in Oracle there is some different way so I was expecting something like that with MS Access.

    I want one more assistance from ur side.
    How can...
  22. Re: Connect to MS Access database on Remote Computer

    Thanks it worked this way

    Dim DataBasePath As String
    DataBasePath = "\\" & txtServer.Text & "\" & App.Path & "\StatusReport.mdb"
    DataBasePath = Replace(DataBasePath, ":", "")

    ...
  23. Re: Connect to MS Access database on Remote Computer

    I mean my internal network.

    "Remote Server=\\server

    I suppose this code may be problematic because of my computer name from where I want to access my Database is (SERVER)
  24. Replies
    2
    Views
    559

    Update, Delete & Add records

    Hi All.........

    I'm new to ASP.Net I haven't developed any Web Application uptil now. I also don't know from where to start. Can someone attach some code here so that I can study at my onw and...
  25. Re: Connect to MS Access database on Remote Computer

    I tried IP address instead giving computer name. But it didn't work..
  26. Thread: ms access

    by Manoj91
    Replies
    4
    Views
    516

    Re: ms access

    Hi........
    I suppose this is the query with SQL.

    "Select Sum(FieldName) from TableName"

    It will give u sum of that column (Field). Which u can use in ur VB project as per ur requirement.
    ...
  27. Replies
    2
    Views
    550

    Re: Borders in Excel thru VB

    Hi.......

    Rob, has already given u a very fare idea. But I want to add some points.

    1 Record a macro in Excel as per ur requirement.
    2 See the code Excel has generated for ur macro.
    3. ...
  28. Re: Connect to MS Access database on Remote Computer

    Hi

    "Remote Server=\\server;" I mentioned here is my local computer but. I can access it from my network. I've a login form which contains three fileds
    1 User name
    2 Password
    3 Server name
    ...
  29. [RESOLVED] Connect to MS Access database on Remote Computer

    Hi.......

    I'm trying to connect MS Access database which is on the Remote Computer.

    I've written this code. While opening connection ("No Error") but if I try to select or insert records...
  30. Re: Running MS Access Functions/Procedures from VB

    Thanks :wave: Mark Gambo it solved my purpose

    :eek2: :eek2:
    Have a nice day
    Manoj
  31. Re: Running MS Access Functions/Procedures from VB

    Hi....

    Moving my function from MS Access module to VB module will not solve my purpose. After doing this it will return Date and Time of Local computer where as I want Date & Time of Server...
  32. Re: Running MS Access Functions/Procedures from VB

    Public Function GetServerDT() As Date
    GetServerDT = Format(Now(), "mm/dd/yyyy hh:nn:ss AM/PM")
    End Function

    This function I've written in MS Access module
  33. [RESOLVED] Running MS Access Functions/Procedures from VB

    Hi..........

    I've developed an application. I've placed my MS Access database on server and all users on different machines are working on that.

    In my application I'm keeping track of users...
  34. Replies
    3
    Views
    353

    Re: Problem with DATE

    THANKSSSSSSSS it resolved my problem
  35. Replies
    3
    Views
    353

    [RESOLVED] Problem with DATE

    Hi

    suppose I've a date in mm/dd/yyyy format

    05/01/2006

    I want to query my database by using this date. I did that. Now what I need this date should be 04/01/2006, 03/01/2006...
  36. Replies
    7
    Views
    601

    Re: Problem with Wonsock control

    Hi.....

    I checked my code it is working fine but sometimes I get this messages. I failed to understand why it's happening.

    I'm putting a message box in winsock_connect() event so that I come to...
  37. Replies
    4
    Views
    727

    Re: getting data in combo box at runtime

    Hi....

    I hope it would be helpful


    Private Sub Form_Load()
    Dim SQL As String

    Dim rs_records As New ADODB.Recordset
  38. Replies
    7
    Views
    601

    Re: Problem with Wonsock control

    Hi......

    I'm getting these two errors

    Run-time error 40006
    Wrong protocol or connection state for the requested transaction or request.


    40020
    Invalid state at current state
  39. Replies
    7
    Views
    601

    Problem with Wonsock control

    Hi...

    I've developed an application which sends and receive messages to remote computer. I've also desined a login form in this after successful login user's PC's IP address is inserted in the...
  40. [RESOLVED] How to detect IP address of my PC from VB6

    Hi........

    I'm facing a problem that I want to detect IP address of my computer from my programme. Can u plz help me in this........

    Thanks & Regards
    Manoj
Results 1 to 40 of 81
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width