Search:

Type: Posts; User: yosef_mreh

Page 1 of 6 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    5
    Views
    805

    Re: Mkdir

    how i do this?
  2. Replies
    5
    Views
    805

    Re: Mkdir

    i get the answer

    Sub myMkDir(strFolderName As String)
    On Error Resume Next
    Dim a, t As String, i As Integer
    a = Split(strFolderName, "\")
    t = a(0)
    For i = 1 To UBound(a)
    t = t & "\" & a(i)...
  3. Replies
    5
    Views
    805

    [RESOLVED] Mkdir

    hi all
    i'm using vb6:
    i try to creat folders using MKDIR. it works for 1 directory only
    for example:
    if i wanna creat the folder c:\temp it's works but
    if i wanna creat c:\temp\dir1 and the...
  4. Replies
    5
    Views
    922

    Re: Listbox listindex

    List1.AddItem Text, 0
  5. Replies
    2
    Views
    485

    Re: Reading lines from a text file

    you can use this function to load the text file into list.

    Private Sub SaveLoadListbox(plstLB As ListBox, pstrFileName As String, _
    pstrSaveOrLoad As String)
    Dim strListItems As String
    Dim I As...
  6. Replies
    1
    Views
    289

    Program Files

    hi all
    i have 2 drives in my pc. and 2 OS. each one of the OS has "Program files".
    how can i know what is the path of the "Program files" of the OS that running my VB APP using VB6 code.
    thanks.
  7. Replies
    1
    Views
    496

    Re: Smoothly Changing IP

    u can shell aDOS command using vb6
    try to use "NETSH".
    ex:
    netsh interface ip set address name="Local Area Connection" static 192.168.0.100 255.255.255.0 192.168.0.1 1
  8. Thread: call dll

    by yosef_mreh
    Replies
    2
    Views
    461

    Re: call dll

    i tried this befor and it's not work
    my dll has "Class1" as constructor. and it's named TEST.dll
    how can i call function from the Class?
  9. Thread: call dll

    by yosef_mreh
    Replies
    2
    Views
    461

    call dll

    hi all
    i'm tring to cal dot net dll from vb6
    do i have to regester the dll in my windows?
    is there another way do call the dll from vb using code?
  10. Replies
    10
    Views
    3,353

    Re: domain username and password

    yes
    this is solve te problem
    how can i remark it as solved?
  11. Replies
    10
    Views
    3,353

    Re: domain username and password

    ya
    this is what solve the problem

    we are make CRM PROGRAM
    SOMETIMES THE SOFTWARE LOG OUT BECAUSE OF IDLE TIME AND WE WANT THE UNLOCK TO BE ONLY USING THE USERNAME AND PASSWORD OF THE ACTIVE...
  12. Replies
    10
    Views
    3,353

    Re: domain username and password

    this code is working


    Function ValidateUser(strUserName, strPassword)
    Dim objRoot, objDomain, objAuth, strNamingContext
    Const ADS_SECURE_AUTHENTICATION = 1


    On Error Resume Next
    '...
  13. Replies
    10
    Views
    3,353

    [RESOLVED] domain username and password

    hi all
    i have domain server with activ directory
    how can i authenticate username and password using vb6 code

    i need to check in my vb6 application username and password.
    any idea?
    thanks
  14. Replies
    1
    Views
    786

    printer clear buffer

    hi all
    i have printer named (geniric text)
    how can i clear/delete the buffer list of document using vb6 code using vb6 code / sample.

    i found the command printer.killdoc but i dont know how to...
  15. Thread: printer

    by yosef_mreh
    Replies
    2
    Views
    697

    printer

    hi all
    i'm looking for vb6 sample/code to help me know what is the document name in the printer and to delete it
    i try to google this. but i couldn't find any code that can know what the document...
  16. Thread: webbrowser

    by yosef_mreh
    Replies
    0
    Views
    333

    webbrowser

    hi all
    i have webbrowser in my vb6 project
    how can i know using vb6 code if the user click on atextbox in the webbrowser.
    i mean that in the webbrowser it's an html textbox and i wanna know if the...
  17. Replies
    2
    Views
    459

    Re: change resolution

    resolution of the monitor.
  18. Replies
    2
    Views
    459

    change resolution

    hi all
    i have 2 monitors work with dual screen.
    i found a vb6 sample that help me change the screen reslution
    but the sample change the resolution only on monitor #1.
    monitor #2 stay witout...
  19. Replies
    3
    Views
    829

    Re: download file using FTP

    if u using DOS -OS u can type the file name between ' " ' with spaces and it's works perfect.
    how do i do that using vb6.
  20. Replies
    3
    Views
    829

    download file using FTP

    hi all
    i'm using "FtpGetFile" in vb6 to get file from the FTP
    it's works but:
    i have aproplem downloading file with "space" in the name
    for example : "file name" not work
    ...
  21. Thread: vb remote

    by yosef_mreh
    Replies
    0
    Views
    417

    vb remote

    hi all
    where can i found vb6 sample that show me how to make agarphical remote control?
    like PcanyWhere or VNC Viwer
    thanks all.
  22. Re: Loading a Text File first line of text into Text1.Text?

    y don't u load the file into listbox and point evryline u want
    use this
    Private Sub SaveLoadListbox(plstLB As ListBox, pstrFileName As String, _
    pstrSaveOrLoad As String)
    Dim strListItems As...
  23. Replies
    3
    Views
    541

    Re: how to lock a workstation?

    on NT OS try this :
    Option Explicit
    Private Declare Function LockWorkStation Lib "user32.dll" () As Long Private Sub Command1_Click()
    LockWorkStation
    End Sub
  24. Replies
    9
    Views
    3,045

    Re: Can't load flash controls at runtime?

    you have already load the opject so y u try to load it again?
    ydont u work with operator
    for example (i)
    and load the shockwave(i) using "FOR"
  25. Replies
    6
    Views
    873

    Re: How to Upload a Txt. file with ftp

    dosn't matter. but
    all in the same class,form or modal.
    dont write the dll calls in modal and try'n 2 call the upload function from class or form
  26. Re: is possible? Shell a Program and Pause it.

    i don' think so
    when u shell aprogram u let the DOS - OS control it.
    after the shell u cannt control what what u run.
  27. Replies
    6
    Views
    873

    Re: How to Upload a Txt. file with ftp

    you don't need most of the declare functions that i tell.
    you know (copy - paste)
  28. Replies
    6
    Views
    873

    Re: How to Upload a Txt. file with ftp

    Private Declare Function FtpGetFile Lib "wininet.dll" Alias "FtpGetFileA" (ByVal hFtpSession As Long, ByVal lpszRemoteFile As String, _
    ByVal lpszNewFile As String, ByVal fFailIfExists As Boolean,...
  29. Thread: NT Services

    by yosef_mreh
    Replies
    2
    Views
    486

    Re: NT Services

    this is what i'm look'n for
    thanks
  30. Thread: NT Services

    by yosef_mreh
    Replies
    2
    Views
    486

    NT Services

    Hi all
    i'm look'n for vb6 sample wich help me check the windows services status and show it in list or text.
    any idea?
    thanks.
  31. Thread: is procces

    by yosef_mreh
    Replies
    2
    Views
    469

    Re: is procces

    thanks
    i found an example
    Private Declare Function Process32First Lib "kernel32" (ByVal hSnapShot As Long, uProcess As PROCESSENTRY32) As Long
    Private Declare Function Process32Next Lib "kernel32"...
  32. Thread: is procces

    by yosef_mreh
    Replies
    2
    Views
    469

    is procces

    hi all
    how can i know if procces is working.
    i'm look for function that get the procces name and return true if the proccess is active.

    thanks
  33. Replies
    20
    Views
    1,389

    Re: CallerID problem with a USR modem

    try to use teletext OCX.
    it is not free but u can download demo OCX
  34. Replies
    6
    Views
    748

    Re: list1.additem help

    if text1.text =vbnullstring then
    msgbox "no text"
    else
    list1.additem text1
    end if
  35. Replies
    22
    Views
    31,572

    Re: How to run exe with parameters?

    use command$

    if you run the EXE file with param
    you can get this param as stringusing "command$"

    file.exe yosef
    msgbox command$ = "yosef"
  36. Replies
    5
    Views
    1,216

    Re: WebBrowser Control & Server LogIn

    this is why we use cockies. but try this code.

    Code:

    Dim hInternetOpen As Long
    Dim hInternetConnect As Long
    Dim hHttpOpenRequest As Long
    Dim bRet As Boolean
    Const INTERNET_OPEN_TYPE_PROXY...
  37. Replies
    2
    Views
    968

    Re: Creating Chat Windows

    don't you have another 2 miles of code?
    it's too much read it.
    where u get err?
  38. Replies
    6
    Views
    2,649

    Re: URLDownloadToFile + Error report

    will you know what it will return
    change the value to som'n like "1"
    and when it will changed back to "0" you will know it's ended.
  39. Replies
    5
    Views
    1,216

    Re: WebBrowser Control & Server LogIn

    you not fix that in the application code.
    you fix it in youre IIS server "directory security options".

    by the way:
    did u check that on other PC?
    maybe this specefic PC is not save cockes.
  40. Replies
    4
    Views
    695

    Re: Reading a matrix from a text file

    please answer it.!!!
    we need more info about this proplem
Results 1 to 40 of 201
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width