Search:

Type: Posts; User: Meeko

Page 1 of 4 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    45
    Views
    125,144

    Re: VB6 UniControls [2007-12-15 release]

    I've tried modify the line but seems not working,
    only some part of the Japanese (Unitext1) could now be visible in the Chinese OS.

    Thanks.
  2. Replies
    45
    Views
    125,144

    Re: UniControls [2007-12-15 release]

    I just execute the sample project in my pc, which is in Chinese XP, and type chinese in UniText2.

    http://2.download-1.files-upload.com/50/2007/12/17/06-40/0/un_c.jpg

    I've also tried in an...
  3. Replies
    45
    Views
    125,144

    Re: UniControls [2007-12-15 release]

    I am not able to input chinese characters in a English OS, and some characters in the UniText1 has become "??" both in Chinese and English OS.
  4. Replies
    45
    Views
    125,144

    Re: UniControls [2007-12-08 release]

    Thanks for the controls,

    I'm now trying the unitext,
    but once I close the form with the unitext, it appears an "invalid procedure Call or argument" at the line

    ""If thunkID <> 0 Then...
  5. Replies
    6
    Views
    1,195

    Re: Press vbreturn for Forms 2.0 (textbox)

    thanks for the information,

    is there any free unicode textbox available?
  6. Replies
    6
    Views
    1,195

    Press vbreturn for Forms 2.0 (textbox)

    For Windows common controls, I can use this code to call a funcion when "Enter" Key is pressed:

    Private Sub txtbox_KeyPress(KeyAscii As Integer)
    If KeyAscii = vbKeyReturn Then
    ....
    End If
    End...
  7. [InnoSetup] Install different files depending on the language of OS

    Hi all,

    We can use "MinVersion" parameter to install different files depend of the
    Windows version (e.g. XP, 2000, etc).
    What about if installing different files depending on the language of...
  8. Replies
    8
    Views
    1,132

    Re: Depth of node (how to make the looping?)

    Thanks all for reply.

    Ellis, Logophobic, you're right, it is one-way relation and doesn't need to consider all path possible, only the shortest one is considered.

    Really thanks Ellis for...
  9. Replies
    8
    Views
    1,132

    Depth of node (how to make the looping?)

    Hello,

    I've a connection table in access database as below:

    ID FROM_NODE TO_NODE
    ---------------------
    1 10 11
    2 10 12
    3 11 10
    4 11 13
  10. Thread: Format a string

    by Meeko
    Replies
    14
    Views
    1,118

    Re: Format a string

    Thanks for reply,
    I've tried to format the string/number in the query, but it fail to bind in the control, what is the correct syntax?

    select format(E,'#####.00') from table1 'fail to bind
    ...
  11. Thread: Format a string

    by Meeko
    Replies
    14
    Views
    1,118

    Re: Format a string in datagrid

    grdDataGrid.column(1).Text = Format(Replace(grdDataGrid.column(1).Text, " ", ""), "## ## ##.##")

    I've tried using the above code to format a column of datagrid,
    however, it could only update the...
  12. Thread: Save xml to html

    by Meeko
    Replies
    0
    Views
    358

    Save xml to html

    Hi all,

    My VB application use a webbrowser to open an xml (with xsl) which is generated on run-time. The xml shows text and images. I would like to add a function to let the user save the xml to a...
  13. Thread: Format a string

    by Meeko
    Replies
    14
    Views
    1,118

    Re: Format a string

    By the way, what about it the string is in a datagrid, how could I format it in this case? Should I use numberformat?

    grdDataGrid.Columns(1).numberFormat = ??

    Thanks
  14. Thread: Format a string

    by Meeko
    Replies
    14
    Views
    1,118

    Re: Format a string

    very sorry, it's a typing mistake..
    should be "22 11 32.36255" to ""22 11 32.36"
    the solution provided by Shuja Ali does work, thanks
    and thanks for all replies.

    Meeko
  15. Thread: Format a string

    by Meeko
    Replies
    14
    Views
    1,118

    Format a string

    Hi all,

    How could I format a string

    "22 11 32.36255"

    to

    "22 11 32.34"
  16. Replies
    3
    Views
    539

    Re: ComboBox inside a DATAGRID

    thanks for reply.

    no...I didn't set a new instance to the combo

    Private Sub DataGrid1_buttonclick(ByVal ColIndex As Integer)
    Dim dovalue As String
    With DataGrid1
    cbotype.FontName =...
  17. Replies
    3
    Views
    539

    ComboBox inside a DATAGRID

    hi,

    I've tried to add a combobox to the datagrid, however, when buttonclick event is activiated, only the dropdown icon is shown, without the combobox list values. I've already additems to the...
  18. Replies
    1
    Views
    348

    Re: Get Field value from adorecordset?

    I already found the answer:

    adoRecordset(name).Value
  19. Replies
    1
    Views
    348

    Get Field value from adorecordset?

    Dear all,
    I know that we can use the following codes to get the field value of name user "adoRecordset!",

    Dim adoRecordset As ADODB.Recordset
    adoRecordset!name

    but what if "name" is not the...
  20. Replies
    2
    Views
    754

    Re: Run an exe during setup using PDW?

    thanks, I've got the answer

    http://www.vbforums.com/showthread.php?t=141009
  21. Replies
    2
    Views
    754

    Run an exe during setup using PDW?

    Hi all,

    I'm using the Package & Deployment wizard to pack my application, two exes are included : MDAC_TYP.exe and a self created exe for ocx registration.

    On installation, the mdac_typ.exe is...
  22. Thread: Regsvr32

    by Meeko
    Replies
    6
    Views
    1,091

    Re: Regsvr32

    I would like to create a bat file to let the client register the libraries or ocx,
    but the OS will not be the same for different clients,
    I know that I can use %winsysdir% to represent the window...
  23. Thread: SGrid Deployment

    by Meeko
    Replies
    7
    Views
    1,959

    Re: SGrid Deployment

    Thanks for replies,

    The problem is not only in win98....

    Thanks, RobCrombie, I've tried to install the "InstallControls" in the client's PC, and it works!!!!

    What does InstallControls...
  24. Thread: SGrid Deployment

    by Meeko
    Replies
    7
    Views
    1,959

    SGrid Deployment

    Hi all,

    My application has made use of the vbaccelerator sgrid control.
    When deploying it with PDW and install on a client PC (win98), it has problem.

    After installation and running the...
  25. Replies
    8
    Views
    1,869

    Re: Web browser downloadcomplete()

    Thanks, it seems work fine to use DocumentComplete.
  26. Replies
    8
    Views
    1,869

    Re: Web browser downloadcomplete()

    Thanks penagate,
    the error is made silence,
    however,
    "WB.Document.links.Item(1).Click" only works for the first time, for the next time when the user input another PID, and click the "SHOW"...
  27. Replies
    8
    Views
    1,869

    Re: Web browser downloadcomplete()

    actually the html is linked to an xml (xsl) with dynamic contents according to the user's input.

    I've tried to add the errorhandler but it still generate the error, here I tried to attach a...
  28. Replies
    8
    Views
    1,869

    Re: Web browser downloadcomplete()

    Thanks for reply.
    The problem is that the code works fine with (Crtl+F5) of (F5), but generate errors and can't automatically direct to the first link when running the program with the execute file.
  29. Replies
    8
    Views
    1,869

    Web browser downloadcomplete()

    Hello,there's a web browser control that is link to a html (xml) file, I could like the browser to open the first link once it is loaded ( as shown below), it runs ok in the VB environment...
  30. Replies
    3
    Views
    421

    Re: Add part of a image to TreeView

    Thanks, however, the example from your link still using individual .ico for each node. It seems that it is not my case.
  31. Replies
    3
    Views
    421

    Add part of a image to TreeView

    I've a image that is 128X16
    I would like to add each part of this image (16X16) to a treeview from the imagelist.

    i.e.,
    for the first node, it will use the first 16 pixels
    for the second node,...
  32. Replies
    1
    Views
    438

    I've found the solution already, thx! ...

    I've found the solution already, thx!

    <xsl:template match="video">
    <a href="{.}">Video</a>
    </xsl:template>
  33. Replies
    1
    Views
    438

    [xsl] open a media file?

    Hi all,

    I'm using a web browser to open a html in VB,

    WB.Navigate App.Path + "\sample.html"

    The html contains scripts which loads a xml file (data.xml) with style.xsl.

    In the xsl file, I...
  34. Replies
    1
    Views
    408

    Faster method to put text into a textbox?

    Hi,

    Is there any way to put all the contents of a text file into a textbox instead of reading the text file line by line?

    Thanks
  35. Replies
    5
    Views
    1,365

    Thanks heVader and whitefox, both solutions work...

    Thanks heVader and whitefox, both solutions work for my case!
    Cheers,
    Meeko
  36. Replies
    5
    Views
    1,365

    Thanks for reply, I put it inside...

    Thanks for reply,

    I put it inside download_complete() and it works!

    Private Sub WebBrowser_DownloadComplete()
    WebBrowser.Document.links.Item(0).Click
    End Sub

    But what if I'm not sure the...
  37. Replies
    5
    Views
    1,365

    Trigger onclick event in html?

    Hi all,

    I have a html file with onclick event scripts, is it possible to trigger the event in VB? How could I do that?

    <a href="#" onclick="transform('case1')">Case 1</a>

    Thanks for help!
  38. Replies
    3
    Views
    479

    Thanks for reply! Should I add this code in the...

    Thanks for reply!
    Should I add this code in the xml.xml?
    What about in xsl?
    It seems not work!!
  39. Replies
    3
    Views
    479

    switch between three xsl?

    Hi all,
    I've one xml file and three xsl files, how could I add three links to each xsl files so that I can switch between different xsl when viewing the xml?

    xml.xml


    <?xml version="1.0"...
  40. [xml] Retain special characters after copying

    Hi all,

    I try to select some of the records in an xml (source.xml) and copy them to a new xml file(select.xml). The contents of source.xml may contain some special characters like & # 2 4 3 ; <&#243;>...
Results 1 to 40 of 135
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width