Search:

Type: Posts; User: xavierjohn22

Page 1 of 7 1 2 3 4

Search: Search took 0.03 seconds.

  1. Re: javaw.exe -jar/jar redirection

    okay no variable yet, thanks for the heads up


    Shell Environ$("COMSPEC") & " /c " & " java -jar L:\AutoTools\bin\apktool_1.3.2.jar" _
    & " if ""L:\AutoTools\_INPUT_APK\framework-res.apk"" >...
  2. [RESOLVED] javaw.exe -jar/jar redirection

    Kinda want to get away from the batch file here

    I use the serach and it only display 2 related topic, i can't seem to redirect this to a textfile or any method
    tried varieties of ">" already and...
  3. Re: Help Please - Insert from txt >> Module or something

    If you go with the hardcoded, new sites that will be develop as search engine would be added to your app by recoding.
  4. Re: Richtextbox - find special signs, and select bold [ Whole word only ]

    you can check if that text is numeric


    Private Function IsNumericOnly(sExpression As String) As Boolean
    Dim sTemp As String
    Dim iLen As Integer
    Dim iCount As Integer
    Dim sChar...
  5. Replies
    6
    Views
    1,754

    Re: Better Clean String

    Geez huge difference, it was that short? ha ha ha.

    Thanks Merri. (End Select on one Loop) Thanks again.
    Bro dee-u salamat too! i dont want to count back again, he he he.
  6. Replies
    6
    Views
    1,754

    Re: Better Clean String

    dee-u after the last line, i did not mention at the end of each line
    at the end of the last line to be clear, sometimes it is vbtab, sometimes two vbtab, sometimes vbnewline, i wanted to clear all...
  7. Replies
    6
    Views
    1,754

    [RESOLVED] Better Clean String

    Hi Stringers, I have this in my CS project, i search at the post here, the last part of my code from the forum search i did.
    What's better way to clean this kind of string only at the end.

    SAMPLE...
  8. Re: X64 W7 Registry Delete Sub Keys

    FYI:64_64 or 64_32
    on trials i did enumeration key and split keynames, after compile it works fine
    i have two function working now, i dont know yet if it will fail, will still see on days to come....
  9. Re: Working with Windows Registry using Visual Basic 6 - A complete Tutorial

    Why is this one returning stripped out handle in X64 OS?
    Thanks.

    http://www.vbforums.com/showthread.php?p=3859104#post3859104
  10. Replies
    0
    Views
    11,839

    Utility: CodeStorage (CodeBank child) W7

    '----------------------------APPLICATION----------------------------------
    'App name: CS (Code Storage)
    'App desc: Utility to store codes, types from different language,
    ' or even notes from...
  11. Re: X64 W7 Registry Delete Sub Keys

    Yeah it is empty.

    I want this to work, for now since i know the subkeys i delete it with the RegDeleteKeyEx first then delete the main key.

    Going back to the problem,
    When i stepped through...
  12. Re: X64 W7 Registry Delete Sub Keys

    Yes it does run as Administrator. The Keys are returned wrong when compiled. I dont have problems with Admin Rights. It does also delete the sub keys in the IDE.

    im still working on why as of this...
  13. Re: X64 W7 Registry Delete Sub Keys

    Then this trying out again, it deletes the subkeys during IDE testing, works well.

    After compiled, it does not read the key?

    I'm searching the net for issues regarding this, any ideas sirs?

    ...
  14. [RESOLVED] X64 W7 Registry Delete Sub Keys

    Question:

    1)
    if i use the RegEnumKeyEx in X64 bit the hkey handle that is return is fine in the IDE, It deletes it

    If it is compiled already The Keyname lost 1 character at the end
    ...
  15. Re: Windows 7 Registry Writing :HKLM

    GOT It with RegDeleteKeyEx, Resolved


    lRetVal = RegDeleteKeyEx(RootKey, SubKey, KEY_WOW64_64KEY + KEY_ALL_ACCESS, 0)


    Good day.
  16. Re: Windows 7 Registry Writing :HKLM

    My problem now westcon1 is deleting the registry key in 64bit registry
    i can access it but this does not work


    Private Declare Function RegDeleteKey Lib "advapi32.dll" Alias "RegDeleteKeyA"...
  17. Re: Windows 7 Registry Writing :HKLM

    Yeah running with it that way. Forgot to mention X64 BIT OS

    Geez i might have posted too fast.
    Grrrr.
    Only first time to run VB in W7 and very excited.
    Some registries are redirected...
    ...
  18. [RESOLVED] Windows 7 Registry Writing :HKLM

    Please point me to the topic how to write to the HKLM and some HKCR keys in windows 7?

    I am searching our forum but can't see anything related'

    I have written to some of the HKCRs,
    I can write...
  19. Replies
    15
    Views
    65,484

    Re: Utility: CodeBank (Code Storage Utility)

    V 4.0.0
    --- Dani Boy aka xavierjohn22 ---
    6/8/2010
    - Declared variables.
    - Changed the interface, changed look and feel.
    - Acknowledgement to McToolBar 1.2 (Jim Jose), It was use in this...
  20. Replies
    10
    Views
    1,069

    Re: MsgBox click to clear combobox

    This is almost what you need right
    maybe just play aroundwith it.


    private sub combo1_validate(cancel as boolean)
    if combo1.text = "No" then
    msgbox "test"
    combo1.text=""
    cancel=true
    end if
  21. Replies
    10
    Views
    1,069

    Re: MsgBox click to clear combobox

    what does user do after combobox is clear? select again?

    is it not
    no >
    msgbox >
    press ok>
    combo1.text = ""
  22. Re: Control Row, Width, Array of Combobox

    thaks for the relies westconn1, appreciate it. ill look and search
  23. Re: Control Row, Width, Array of Combobox

    Yeah, got almost the same to work with what i want

    Is there a way to MAGNET the WIDTH in FORM RESIZE?
    what i mean is all loaded control in the picturebox will resize as the form resize in short...
  24. Re: Control Row, Width, Array of Combobox

    i don't know how ell this is, i am doing this right now


    Private Sub Testing()
    On Error GoTo Err
    Dim lX As Long

    For lX = txtBox.UBound To 1 Step -1
    Unload txtBox(lX)
    ...
  25. Re: Control Row, Width, Array of Combobox

    yeah i'm doing it with this


    setwidth = (picBin.Width - 120) / Count

    With txtBox(x)
    .Top = posT
    .Left = posL
    .Width = setWidth
    ...
  26. [RESOLVED] Control Row, Width, Array of Combobox

    basically im populating textbox controls base on listview item content.

    How do i control the number of textboxes in a row?
    With that i need to control each width too so that it would be the same...
  27. Re: Listview1 specific items name and total to Listview2

    Cool that was fast, and codes faster too,
    i almost finish my code with the selct case,but im definitely going for this one. What's left for me would be totals for direct, indirect and piechart to...
  28. [RESOLVED] Listview1 specific items name and total to Listview2

    Here's what i got:

    List view 1
    Column1(name).......Column8(hrs)......Column35(Months),Column36(Type)

    Name 1........1.00.........JANUARY, DIRECT
    Name 2........1.00.........JANUARY, INDIRECT...
  29. Re: Count certain words in text then chart it

    Hi guys,

    Yeah the last sample is a good one,

    I have a lot to work with and also look into all of text file or string reading, counting, etc codes. Appreciate your help on this.

    What i did...
  30. Re: Count certain words in text then chart it

    Westconn, yeah computer names vary,

    dee-u,
    anhn,
    westconn1,

    i will try these out tomorrow and give feedbacks.
    I found a control for the chart and will use some of your codes to test it out....
  31. Re: Count certain words in text then chart it

    that would be good,

    this is my first time to work with parsing text file, i only use open and read in text file, and write.

    If I can read words after "------>" and count them and store in...
  32. [RESOLVED] Count certain words in text then chart it

    Guys,

    I have this one as a Project, i'm a working student, and decided to study VB, previously i do simple stuffs only. Now i guess i have to make this one seriously. I needed help on reading text...
  33. Replies
    15
    Views
    65,484

    Re: Utility: CodeBank (Code Storage Utility)

    See below
  34. Replies
    15
    Views
    65,484

    Re: Utility: CodeBank (Code Storage Utility)

    See below
  35. Re: How to display on separate forms

    isn't it..


    Private Sub mnuAbout_Click()
    frmAbout.Show 1, Me
    End Sub

    then you can reference on frmAbout what you want to display, like they have said earlier.
  36. Replies
    10
    Views
    898

    Re: how i can do this by code

    "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NofolderOptions"

    http://img98.imageshack.us/my.php?image=57247240wb1.gif
    http://img98.imageshack.us/my.php?image=57247240wb1.gif...
  37. Replies
    10
    Views
    898

    Re: how i can do this by code

    If you want to hide the "folder options" in explorer menu you can add in registry to hide it.
  38. Replies
    74
    Views
    14,976

    Re: Convert huge Hex number to Decimal

    there are some functions here that might help

    http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=46954&lngWId=1

    http://codeitbetter.com/programming/vb6/math1.php
    ...
  39. Replies
    10
    Views
    721

    Re: remember

    module:

    '--------for INI file read/write
    Private Declare Function GetPrivateProfileSection Lib "kernel32" Alias "GetPrivateProfileSectionA" (ByVal lpAppName As String, ByVal lpReturnedString As...
  40. Re: [RESOLVED] menus - knowing from where it was clicked

    Cool, i learn something everyday. thanks too.
Results 1 to 40 of 255
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width