Search:

Type: Posts; User: samer22

Page 1 of 13 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    312

    mschart font size

    For Vb6 experts
    Can we set the font size of the MSChart's labels?
    thank you
  2. Replies
    11
    Views
    1,139

    Re: Unicode labels problem

    even version is calling a library
    187299
    187300
  3. Replies
    11
    Views
    1,139

    Re: Unicode labels problem

    Elroy
    thanks for the links
    I have already tested Krools labelW.
    It is unicode aware when I feed their captions from database.

    LabelW1.caption = RS.Fields("ForeName").Value
    But They show...
  4. Replies
    11
    Views
    1,139

    Unicode labels problem

    I picked this code from this forum.

    Dim strUnicode As String, strANSI As String
    Label1.Font.Charset = 178
    strUnicode = ChrW$(&H635) & ChrW$(&H636)
    strANSI = StrConv(strUnicode,...
  5. Replies
    6
    Views
    802

    Re: share a folder by code!

    Is this possible by code?
    thank you
  6. Replies
    6
    Views
    802

    Re: share a folder by code!

    thank you for your interest


    Debug.Print ShareAdd
    The result is 5
  7. Replies
    6
    Views
    802

    Re: share a folder by code!

    Sorry I were not clear enough
    When I tested the code on Windows 7, I was able to get my folder shared.
    However when I executed the same code on W 10 , my folder can't get shared without throwing...
  8. Replies
    6
    Views
    802

    share a folder by code!

    I found a code that can share a folder at runtime .
    *It worked on W7 but failed on W10
    Does anyone have a code that works on W10?

    Option Explicit...
  9. Replies
    6
    Views
    1,073

    Re: Can I get the name of the server's computer?

    This link is helpful to me
    thank you all
  10. Replies
    6
    Views
    1,073

    Can I get the name of the server's computer?

    Hello
    In a chat program I want to get the name of the server's computer from the client side using winsock
    Is this possible?
    thank you
  11. Replies
    14
    Views
    1,316

    Re: Labels captions show strange symbols!

    thank you
    that's it
  12. Replies
    14
    Views
    1,316

    Re: Labels captions show strange symbols!

    VBPrintPreview allows previewing and printing
    Sorry I couldn't find a link to the topic.
  13. Replies
    14
    Views
    1,316

    Re: Labels captions show strange symbols!

    I'm using VBPrintPreview ocx for printing and Krool's Label control is showing strange symbols too on the preview.
    But surprisingly vb Label control is showing arabic charaters quite fine.
  14. Replies
    14
    Views
    1,316

    Re: Labels captions show strange symbols!

    Sorry it didn't work
  15. Replies
    14
    Views
    1,316

    Re: Labels captions show strange symbols!

    the textbox is unicode aware.
    I use Krool's textbox
    But for the label I need to use vb label.
  16. Replies
    14
    Views
    1,316

    Labels captions show strange symbols!

    Hello Vbforums
    I need to send data from textbox to label

    Label1.Caption = Text1.Text
    But it is showing strange symbols.
    The text in textbox is in Arabic language.
    Thanks for any help to...
  17. Replies
    3,725
    Views
    1,855,666

    Re: CommonControls (Replacement of the MS common controls)

    Any idea here Krool?
  18. Re: textboxes and labels are showing stange symbols

    thanks but none of theses controls worked for me
  19. Replies
    3,725
    Views
    1,855,666

    Re: CommonControls (Replacement of the MS common controls)

    hi krool
    I'm using your textboxes to display data in Arabic from database and they are doing very well.
    However when adding data at runtime :
    eg TextBoxW1.Text = "اللغة العربية" they are showing...
  20. textboxes and labels are showing stange symbols

    Hello
    When retrieving data from database in Arabic language and displaying it in textboxes or labels, they are showing like this: ????????????
    Then I have come across Krool's controls which seem...
  21. Re: Is there a change event in Flexgrid?

    YES
    it is solved now thank you
  22. [RESOLVED] Is there a change event in Flexgrid?

    Hello everyone
    I am entering values at runtime in flexgrid. I want to know if there is a cell change event that allows to sum values in the grid.
    I used this code in RowColChange event but...
  23. Thread: Calendar App

    by samer22
    Replies
    2
    Views
    4,356

    Re: Calendar App

    thank you for shqring this precious work
    Is it possible to have a Month calendar like this one?
    thank you
  24. Replies
    1
    Views
    653

    Appointment calander

    Hello
    I'm asking if it is possible to create a calendar like the vb calander component but using flexgrid.
    thank you for any help
  25. Replies
    19
    Views
    1,940

    Re: Print barcode on Datareport

    Any comment Mr DataMiser?
  26. Replies
    19
    Views
    1,940

    Re: Print barcode on Datareport

    .
    Probably this is the problem because it is throwing an error Report width is larger than paper width
    But I wonder how to set the report to be less than 4 inches wide.
    I'm using Active Report....
  27. Re: Print all records from database table

    solved
    I dropped the comma and it worked as I wished
    Printer.Print Rs!ID,
  28. Re: Print all records from database table

    I'm deeply sorry
    It is my mistake
    It is working except that I want the fullName to be printed under the ID
    the current code is printing in the same CurrentX
  29. Re: Print all records from database table

    Printer.CurrentY= 200
    Do While Rs.EOF = False
    Printer.CurrentX = 100
    Printer.Print Rs!ID,
    Printer.Print Rs!FullName
    Rs.MoveNext
    Loop
    Printer.EndDoc
  30. Re: Print all records from database table

    still the same issue
  31. Re: Print all records from database table

    thanks but it is the same problem
    It is printing all records in the same area.
  32. Re: Print all records from database table

    No error but it is printing each record in a page with this code

    Do While Rs.EOF = False
    Printer.CurrentY = 100
    Printer.CurrentX = 200
    Printer.Print Rs!ID
    Printer.CurrentY = 800...
  33. [RESOLVED] Print all records from database table

    hello
    I need to print all records from database without using DataReport or a grid.
    Is that possible ?
    I tried this code but it did not work

    SELECT ID,( Nom , Prenom) as FullName FROM tbl...
  34. Replies
    19
    Views
    1,940

    Re: Print barcode on Datareport

    DataMiser
    very pertinent comments
    thank you very much
  35. Replies
    19
    Views
    1,940

    Re: Print barcode on Datareport

    I have printed on A4 paper not created in A4 size
    In DataReport I can't find a way to determine papersize at runtime.
  36. Replies
    19
    Views
    1,940

    Re: Print barcode on Datareport

    DataMiser
    Good answer thank you

    I'm querying for a record in database and retrieving the record's ID in DataReport RptTextbox with 3 of 9 font and others with 128 font.


    I'm depolying the...
  37. Replies
    19
    Views
    1,940

    Re: Print barcode on Datareport

    Sorry you want to say Where is your problem
    If so, I have described my problem in post 1
    And regarding you answer I need to know the right papersize and margins for printing in barcode printer...
  38. Replies
    19
    Views
    1,940

    Re: Print barcode on Datareport

    Personnaly I don't have a label printer but my friend said his label printer is named Smart Pos S58

    yes sir in A4 and they are readible by barcode reader
  39. Replies
    19
    Views
    1,940

    Re: Print barcode on Datareport

    thank you sir for the quick response
    could you please tell me the perfect papersize and margins for printing barcodes
  40. Replies
    19
    Views
    1,940

    Print barcode on Datareport

    Hello everyone
    I'm printing barcode on Datareport with Canon printer and I can print my barcode succesfully.
    However when I sent the application to a friend to print on a label printer, it fails to...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width