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

Search:

Type: Posts; User: hendramin

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    582

    Use data report

    If you want to let user see and scroll the data before they print, you can use datagrid or listview then use data report to print.
  2. Replies
    6
    Views
    2,937

    why don't you show a print dialog before calling...

    why don't you show a print dialog before calling the shellexecute to print ?
  3. Replies
    3
    Views
    582

    Date$ behavior is unchanged by the Calendar...

    Date$ behavior is unchanged by the Calendar property setting (regional option). Date function does. but Date$ return a 10-character string of the form mm-dd-yyyy.

    to format the Date to mm/dd/yyyy,...
  4. did you put the code in sub main ? have you set...

    did you put the code in sub main ? have you set the startup object to sub main ? there is no problem with app.previnstance.
  5. Zubir, i don't think we can manage a specific...

    Zubir, i don't think we can manage a specific cell in listview for the icon or back color.
    if you want to do that, maybe you should find another component that support the task you want.
  6. Replies
    3
    Views
    676

    yes, there are many methods just for common...

    yes, there are many methods just for common function like insert, update and delete. i don't know how to create a single insert, update, delete method for all table. they can have parameters such...
  7. Replies
    7
    Views
    2,621

    One more step... Thank you andrea_rossini. One...

    One more step...

    Thank you andrea_rossini. One more step...now how to make the text property from single line into multiline like i attach below.

    Thanks in advance
  8. Replies
    3
    Views
    676

    Software architecture

    To all of you who interested on designing the application model, i want to discuss what i have done in my last project, and if you don't mind please share your opinion and your design technique so i...
  9. Replies
    2
    Views
    3,373

    recently, i was using list view and tree view,...

    recently, i was using list view and tree view, they are so slow when handling huge data. this is happened because everytime we update the list, redraw method is fired and this is time-consuming. i...
  10. Replies
    7
    Views
    2,621

    Before i post the question, i've already search...

    Before i post the question, i've already search on google, try to find a user control with such property i want but i couldn't find one. i have also tried to use user control wizard and use all the...
  11. See the references

    you must have forgot to create a reference to your activex dll project in your test application project. try to create one.
  12. Replies
    4
    Views
    7,514

    Use regex

    in vb 6, SPLIT function does not allow regular expression as a delimiter, but may be you can try this trick

    - use regular expression to replace the space(es) or tab(s) to a single character. for...
  13. Replies
    7
    Views
    2,621

    My problem is how to tell vb how to react to my...

    My problem is how to tell vb how to react to my property type.
    For example...if we define a property like font type, the property window will automatically show the font dialog when we try to manage...
  14. Replies
    7
    Views
    2,621

    user control multiline property

    Currently i want to make some enhancement to my user control.
    in this enhancement i try to create a property where it can accept multiline string input value. you know...just like multiline property...
Results 1 to 14 of 14





Click Here to Expand Forum to Full Width

Featured