CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: nmarun

Page 1 of 5 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    1
    Views
    2,394

    Re: access items in history folder

    no one yet??
  2. Replies
    1
    Views
    2,394

    access items in history folder

    Hi Developers,

    I'm trying to access the history folder in Windows XP.

    This is how far I've got.



    class MainClass
    {
  3. Replies
    0
    Views
    655

    Database enginer properties using ADO.NET

    Some time back I wrote a program in VB6 using DAO to recognize the version of an Access database. If the value was 3.0, it meant that the database was created using Access 97 and 4.0 would mean that...
  4. Replies
    2
    Views
    1,349

    Re: installing visual studio .net 2003

    thanks one and all for the help.

    I was doing it wrong. I copied all the files to my hard disk and ran the set up file in the set up directory and things worked just fine. Thanks again.

    Arun
  5. Replies
    2
    Views
    1,349

    installing visual studio .net 2003

    Hi All,

    I have vs .net (got it from Microsoft site itself... long story, but its the full version). I had installed it earlier on my desktop and it worked fine. I bought a laptop recently (Dell...
  6. Replies
    9
    Views
    1,222

    Re: Folder Open - handle

    Questions ahoodin:

    When you said 'In every folder, keep a file with an encrypted key (number)', you are talking about a CLSID number right? (the one found in the Root hive key of the registry).
    ...
  7. Replies
    9
    Views
    1,222

    Re: Folder Open - handle

    Thank you so much for the details you provided. I will look into .net for the above. Also, what you said about the drives also makes sense. Thanks again and happy new year.
  8. Replies
    9
    Views
    1,222

    Re: Folder Open - handle

    ahoodin,

    I tried googling these, but the information went just above my head. I AM a programmer, but never did any kind of Windows programming or wrote drivers. Can you please give me a piece of...
  9. Replies
    9
    Views
    1,222

    Re: Folder Open - handle

    ahoodin,

    Although your response did not make complete sense to me, I'll go about googling for the key words u said (like windows events, filter driver and DeviceIOControls). Thanks for the update....
  10. Replies
    9
    Views
    1,222

    Folder Open - handle

    Hi Gurus,

    I want to know if this is possible to program and use. Here is a typical situation that explains the problem at hand:

    Say, I have a folder with personal documents on a USB jump drive...
  11. Thread: Undelete Files

    by nmarun
    Replies
    6
    Views
    916

    why not in vb??

    Hi Cimperiali,

    My question still remains unanswered..

    Why can't this be done in vb or Is this an example that depicts vb's weakness?

    I love VB and am not very well versed in C++.

    Tia...
  12. Thread: Undelete Files

    by nmarun
    Replies
    6
    Views
    916

    why not??

    Dear Gurus,

    Is it so difficult to write a program in vb to recover deleted files? I'm sure there's at least one member in the forum who can guide us in this regard.

    The guide could let us know...
  13. Replies
    1
    Views
    2,403

    AutoClose or AutoExit event, MS Access

    Hi Gurus,

    I want to be able to write to a table in a database each time the database is opened and closed.

    I am able to achieve the open event by 'AutoExec' macro. My search (extensive huh)...
  14. Replies
    0
    Views
    672

    create form in access through vb

    Hi Gurus,

    I need to add a form to an access database through vb6 application. It should be of the type 'AutoForm: Datasheet' and should be bound to say 'Table1'. The application should save the...
  15. Replies
    5
    Views
    4,588

    sorry

    didnt add comments!!

    but here's what I'm doing.

    * Read an excel file.
    * load a recordset using a query
    * clear off the previous entries in the excel sheet (you might not need this)
    * Loop...
  16. Replies
    5
    Views
    4,588

    ADO - Excel

    Hi Judgey,

    This is a part of an app that I had written a while ago. It copies records from a table, writes it to an excel file and then prints it. You might extract what you want from it.


    ...
  17. Replies
    1
    Views
    2,941

    dock windows in vb6

    Hi Gurus,

    It seems like a stupid question, but I'm having hard time to fix it.

    I accidentally moved the Project and Properties windows from the right side of the main vb6 application window....
  18. Replies
    3
    Views
    600

    more details..

    Hi All,

    There's more information to the OpenSchema.. prob many would know it, but for those who don't...

    http://support.microsoft.com:80/support/kb/articles/q186/2/46.asp&NoWebContent=1

    is a...
  19. Replies
    3
    Views
    600

    thnx Owen

    but isn't there a query to answer either of them?

    For sure, I'll go thru "openSchema".

    Thanks
    Arun
  20. Replies
    3
    Views
    600

    table design - query

    Hi Gurus,

    Can any one tell me an SQL statement which will provide the schema/design of a table in an Access db? I'm not sure whether this exists, but I'm curious to know.

    Also is it possible to...
  21. Replies
    4
    Views
    1,307

    table design - queries

    Hi Gurus,

    Can any one tell me an SQL statement which will provide the schema/design of a table in an Access db? I'm not sure whether this exists, but I'm curious to know.

    Also is it possible to...
  22. Thread: ASP SQL Server

    by nmarun
    Replies
    1
    Views
    436

    got it!!

    Dear Gurus,

    I got the problem fixed.

    The problem was in:

    sPwd = Request.Form("Pwd")

    which I set right!!
  23. Thread: ASP SQL Server

    by nmarun
    Replies
    1
    Views
    436

    ASP SQL Server

    Dear Gurus,

    I did not find ASP forum, hence I'm posting my problem in this directory.

    Following is my SQL Server Table structure:


    Create Table PassengerInfo(
    PID varchar(6),
    Password...
  24. Thread: SQL Trigger

    by nmarun
    Replies
    1
    Views
    623

    gotcha

    Dear Gurus

    I got the solution for the question..



    CREATE TRIGGER trPoints100 ON dbo.PassengerInfo
    AFTER UPDATE
    AS
    SET NOCOUNT ON
  25. Thread: SQL Trigger

    by nmarun
    Replies
    1
    Views
    623

    SQL Trigger

    Hi Gurus,

    Table PassengerInfo

    PID as varchar(6),
    FName as varchar(15),
    LName as varchar(15),
    Points as int,
    Primary Key (PID)
Results 1 to 25 of 110
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured