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

Search:

Type: Posts; User: santulan

Page 1 of 5 1 2 3 4

Search: Search took 0.12 seconds.

  1. Replies
    0
    Views
    536

    Problems with Crystal Reports

    Hi.. Friends...

    Kindly help in crystal reports.
    I created reprots using access and then conencted from VB applications

    crystalreports1.datafiles(0) = app.path & "\sss.mdb"...
  2. How to open password protected ACCESS database

    Hi...
    I have given a password in access. Now I want to use database in VB through DAO. How do i do this?
    Kindly help. Urgent!!!

    Thanks in advance

    Santulan
  3. Replies
    4
    Views
    1,091

    Re: Accessing individual characters in a String

    Just to add further:
    If you need to do this to find some character, you can use Instr command.


    Dim myStr as string
    Dim myPos as Integer
    myStr = "I like CodeGuru.com site"
    myPos =...
  4. Crystal Reports does not recognise Access 2000

    I wish to create reports using crystal reports that comes with VB6 and Access 2000. On selecting database, computer gives error message that database is not supported...

    Kindly help.. I do not...
  5. Replies
    6
    Views
    1,701

    Re: My Applications don't close

    In addition to reply from uni, you shouls also use END statement to shut the application. It is a common practice but I thought I should tell you.


    Santulan
  6. Replies
    0
    Views
    537

    Creating CC with ASP

    I have created entire application in ASP. I want to distribute it on CD and I should work from CD even on the computers where IIS is not installed. Is there is some way to run application from CD...
  7. Thread: image flicker

    by santulan
    Replies
    2
    Views
    682

    Re: image flicker

    set autoredraw property of your form properly

    Santulan
  8. Replies
    8
    Views
    903

    Re: extra spaces after concatenating with &

    Hi, You use like this
    strVar = Trim(strVar)


    otherwise you cam also try
    strVar = RTrim(strVar)
  9. Re: Making the Menu Items Invisible Dynamically

    Bala, you may dynamically re-create the menu by using redim statement depending on rules for elimination.




    Santulan
  10. Replies
    4
    Views
    6,183

    Re: Problems in IN clause of Crystal Reports

    Boss!!!
    There is problem this is why I reported to codeguru. You try with In clause and in array give more than 30 values.

    Ok

    Santulan
  11. Replies
    1
    Views
    773

    Special combo with icons in it

    Dear Friends,
    Please let me know, If there is control like listview, where icon can be clubed with combo text and used as combo.

    Thanks in advance.

    Santulan
  12. Replies
    4
    Views
    6,183

    Problems in IN clause of Crystal Reports

    Dear All,
    The problem is like this, I collect the Key Id from ListView control and make an array of numbers like
    {shelf.id} In [3,4,12,6,89,34,23,56,12,57,35,87,56,45]
    It gives the error in...
  13. Re: My installation of Hello World make 7 disks?

    In Vb6, There is check box in project, which excludes the reference of controls that are not in use. This is a good practice to remove the un used controls from your programme. This will also fasten...
  14. Replies
    4
    Views
    495

    Re: Any Suggestions for Taking my MCP Exam

    Hi Chris,

    Never mind, What if you could not do a sample test. HAve a brave heart face the actual test. MAy be you do better. Learning from the xperiences is far batter than a book. Gotta...
    ...
  15. Replies
    1
    Views
    603

    Re: Q about PDW and visual studio installer

    Boss,

    As I can tell you, the PDW is better. although, it also prompt you to search for some specific files. And please ensure to understand the dependencies for the control before you start using...
  16. Replies
    1
    Views
    638

    Re: What is a database?

    Well,
    To the best of my knowledge theoritically -
    The database is the collection of releted records.

    Santulan
  17. Replies
    2
    Views
    642

    Re: connection with oracle

    Ashish,
    Use ODBC to set a connection to your oracle DSN. After that you can use it using either ADO or RDO.
    In oracle there is also one communication programe "Listener". You can also use that for...
  18. Replies
    5
    Views
    784

    Re: Public Variables

    May be because you do not refering the form.
    You have declared abc in form1 as public.

    To refer it in form2

    use


    form1.abc = something
  19. Re: Is it a good idea to vote each other here in Codeguru?

    Michael,

    The ultimate objective of rating in my view is -
    1. To encourage the responder for sending a right /appropriate answer.
    2. To Rate the answer on its quality and other prefer to see the...
  20. Replies
    5
    Views
    936

    Re: Sending pictures across network

    You can make picture box NOT visible. When ever you wish to load it set

    picture1.visible = true




    Ok...
    This will help.
  21. In Crystal Report, Problem in Accessing database

    Hi,

    When I use PDW and I have Crystal Report Dependency, I get problem when I install the software in clients machine. Whenever I try to open Crystal Report It says can not open database. Error in...
  22. Re: Which is the right reference for a Database object?

    Well, I have not used ADO so far but to use database I always use DAO.

    I just think that with ADO you use ADODB or Connection.




    Santulan
  23. Replies
    5
    Views
    936

    Re: Sending pictures across network

    Hi,

    There are several ways of doing so...
    Just this may solve.
    You can always give the network path to point to a picture... suppose your server name is LBS7 and subdirectory where pictures are...
  24. Re: Which is the right reference for a Database object?

    Hi,

    Please check on Microsoft DAO 3.51 Object Library.



    Santulan
  25. Thread: CDaoDatabase

    by santulan
    Replies
    1
    Views
    752

    CDaoDatabase

    Dear All,
    Please help in understanding how to add CDaoDatabase Class in my project. When I use Class Wizard, I can not find a listing of this class.
    I manually added by declaring -
    CDaoDbatabase...
Results 1 to 25 of 106
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured