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

Search:

Type: Posts; User: pavankiran

Page 1 of 4 1 2 3 4

Search: Search took 0.14 seconds; generated 20 minute(s) ago.

  1. Replies
    2
    Views
    837

    It's because the settings for short date in your...

    It's because the settings for short date in your comp must be in the format 'MM/DD/YYYY'
    You can change it from Control Panel-> Regional Options.

    However with the default settings it should work...
  2. Replies
    9
    Views
    1,766

    I guess Scripting.FileSystemObject may solve...

    I guess Scripting.FileSystemObject may solve your problem, additionally you may have depecdency of Microsoft Scripting runtime.

    This can be avioded by using API

    GetLogicalDrives

    The above...
  3. Replies
    10
    Views
    1,285

    GetExitCodeThread should solve your problem. ...

    GetExitCodeThread should solve your problem.

    It returns STILL_ACTIVE if the thread is alive.

    - Kiran.
  4. Replies
    3
    Views
    1,109

    I guess bent.dll is not found in the directory...

    I guess bent.dll is not found in the directory from where your vb app is trying to load. You also need to supply the dependent dlls in the directory.

    Check where is this bent.dll is loading from,...
  5. Replies
    1
    Views
    1,081

    How to Create win32 dll in VB?

    Is it possible to create Win32 Dll in VB? if so can any one send me some sample code..

    thanks.
  6. I could set the datasource for the subreport...

    I could set the datasource for the subreport which is using ttx files, but my requirement is that i need know the mapping field value.

    Out of the many records i display, i need to know the record...
  7. Crystal reports - How to set data source for subreports?

    How to set the datasource for a subreport at run time. I am using RDC Evnironment and ttx files as data definition.

    This is very urgent...

    Thanks in advance.
  8. Replies
    579
    Views
    637,718

    Thanks for your reply... No.., the processing...

    Thanks for your reply...

    No.., the processing i was talking about is read the data in the section.

    This is like i have some data displayed on the report that is group by a field and has a...
  9. Replies
    579
    Views
    637,718

    Crystal reports Subreport

    Is there any way to read the Item Values from the same section where i click.

    Basically, I have a report which is grouped by a field in the recordset. I show also show a link which is an on demand...
  10. Crystal reports - Read displayed data from the report.

    I am using crystal reports to display Reports in my program. I use VB Report Designer Component.

    To display the report I use ADO recordset as the datasource.

    Is there any way to read the data...
  11. Replies
    2
    Views
    932

    Re: Run & Debug time difference

    No there can be no possibility like that. In debug mode, VC++ adds some error handling code and you will be able to debug some bugs in the program like memory crash etc. I guess the problem which you...
  12. Thread: system tray

    by pavankiran
    Replies
    1
    Views
    593

    Re: system tray

    You can do that directly in your Vb code itself.

    Here is the link..

    http://support.microsoft.com/default.aspx?scid=kb;EN-US;q176085

    Regards,
    kiran.
  13. Does crystal Reports accept data from a named pipe or from sockets?

    Does crystal Reports accept data from a named pipe or from sockets?

    A pointer(link) to the information would of great help!!

    Thanks,
    kiran.
  14. Thread: List view

    by pavankiran
    Replies
    2
    Views
    802

    Re: List view

    I don't think Yahoo messanger is using a ListView control, i guess it's using a treeview control.

    Any way, here is how to add an Item to List view control.

    Dim LVItem As ListItem

    Set LVItem...
  15. Replies
    4
    Views
    1,730

    Is 'ODBC Text Driver' case sensitive?

    Is 'ODBC Text Driver' case sensitive?


    "SELECT Path From Path_Table.txt WHERE Path LIKE '" & SampFolder & "%'"

    The above query returns no records if the case of 'Path' feild doesnot match with...
  16. Replies
    3
    Views
    2,344

    Re: SQLDriverConnect - FileDSN

    I have already used SQLGetDiagRec() and the got error message which i posted in my previous post. This issue is solved. But i got another one, the error status is 'IM006',which I believe is caused if...
  17. Replies
    3
    Views
    2,344

    SQLDriverConnect - FileDSN

    How can I connect to a database using File DSN? I have to use only SDK[that's my requirement].
    I tried using 'SQLDriverConnect', but couldn't do that as it's returning an error and the SQLSTATE of...
  18. Update File DSN in Runtime to generate report.

    I use a File DSN to generate the report. Can i update the File Dsn in run time to point another Directory, read the data files in that directory an generate reports? The Data files schema is same as...
  19. Replies
    2
    Views
    780

    Re: CheckBox in Treeview

    Thanks for the reply.

    It works fine if any Imagelist is not linked with treeview. If i try to load any image to the node along with the checkbox, it fails...

    I want to load both Checkbox and...
  20. Replies
    2
    Views
    780

    CheckBox in Treeview

    How do i set checked property of a TreeView Node to true.

    The following is not working...

    Dim tvNode as Node

    Set tvNode = fMainForm.tvTreeView.Nodes.Add(,,, "Text",1)

    tvNode.Checked = True
  21. Replies
    5
    Views
    1,160

    Re: Resource files

    Are you loading the bitmaps at run time? if so, I guess that may not the correct way. You can as well include the bmps into your project and compile it so that you don't have to distribute them.
  22. Replies
    5
    Views
    1,160

    Re: Resource files

    Use VC++ to generate a resource file, and include[Add file] the .res file into the project Explorer of your VB project.

    Or you can use ImageList control as well.

    Hope this helps.
  23. Replies
    3
    Views
    872

    Re: XML in Crystal reports...

    Ok, This is what I found, any other information is of great help.

    Create a File DSN specifying any text driver[eg: Microsoft Text Driver (*.txt; *.csv)]

    While creating the report in Crystal...
  24. Replies
    3
    Views
    872

    Re: XML in Crystal reports...

    But if the data to be displayed is large, xml files can be huge and can affect the performance. I already had a problem accessing 'Access Database' of huge data.
    Instead can i use some text files to...
  25. Replies
    1
    Views
    711

    Display Windows NT Select User dialog

    I need to display Windows NT Select user dialog. How can I do this programatically? Is there any API?

    I tried in MSDN,and it appears there is no direct way.


    Thanks in advance.
Results 1 to 25 of 77
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured