Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Black007

  1. Black007

    Sorting Listview Programmatically

    If the amount of data in the listview is not too excessive, you might accomplish this by modyfiying your database query and perform the sort using the query before filling the listview.
  2. Black007

    Problems inporting a file / directory browse dialog on buttonclick

    Try this of in 't vloms : probeer dit eens ... --------------------------------------------------- WRITE THE FILE SOME modifications may apply given your situation. --------------------------------------------------- Function WriteAsciiFile(ByVal File_NAME As String, ByVal tekst As String)...
  3. Black007

    How can I make the detail section fill the page

    StepHanson, I managed it this way with the help of Ibass his tip: I've inserted only a group header just before the detail section and did draw the vertical lines in that space. Then I marked the group for Underlaying the following sections.
  4. Black007

    DataBinding and CheckedListBox

    Set the DataSource and DisplayMember properties of the CheckedListBox as shown below: CheckedListBox1.DataSource = DataSet1.Tables("TableName") CheckedListBox1.DisplayMember = "Field" Hope this helps
  5. Black007

    Cancel the mouse down event

    Why don't you use the mousedown and mouseup event ? In the mousedown you set a switch to True to track the status of the mousedown event. In the mouseup event you can track this switch and execute your code from here. An alternative might be to use another mouse-event to write your code into...
  6. Black007

    How can I make the detail section fill the page

    Thank you very much for the tip. Works like a charm !!! Have a nice weekend !!!!!
  7. Black007

    How can I make the detail section fill the page

    I have an invoicing application and i want to draw a border around the detail lines of the report. While printing the detail, I print the column lines of the invoice. The problem is you can get approx. 50 lines on a report, but if the invoice only counts 10 lines, how can I fill up the rest of...
  8. Black007

    datagrid problems , preventing content selection

    Here are some more examples on what you can achieve with manipulating the datagrid http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwinforms/html/wnf_CustDataGrid.asp
  9. Black007

    Access FoxPro tables from VB .NET

    For your first try see the KB article at http://support.microsoft.com/?id=192979, "PRB: VFPODBC Driver Ignores Path in DSN When Executing SQL" For your second try, the error message says it doesn't like the value you have entered for SourceType. I'm assuming you used the OLE DB provider for...
  10. Black007

    Navigate through Tree Node

    There's a property SelectedNode.Index you can track
  11. Black007

    Datagrid displaying 2 tables

    Maybe you can include something like an ID field in the child recordset. Using this technique, you can retrieve the selected data using the ID-field.
  12. Black007

    Form Popup, set location at runtime

    why don't you try the LEFT and TOP properties of the form ?
  13. Black007

    Connect to Crystal Report Viewer

    have you checked the KB or FAQ from http://www.businessobjects.com/ ? Hope you'll find what you need
  14. Black007

    Adding Images to MS Word Doc

    Why bother if Microsoft can get the job done for you ! :-) Glad I could help you out!
  15. Black007

    User Control

    kill every file in the obj/debug and obj/release directory and make a new build. That's what I meant. Hope this works out.

Part and Inventory Search

Back
Top