Search:

Type: Posts; User: Hawk

Page 1 of 13 1 2 3 4

Search: Search took 0.27 seconds.

  1. Thread: COM DLL

    by Hawk
    Replies
    9
    Views
    952

    jayakumar, Please elaborate more. Thank you.

    jayakumar,

    Please elaborate more.

    Thank you.
  2. jayakumar is correct too. Elminster, yes, it...

    jayakumar is correct too.

    Elminster, yes, it is a great skeleton. In the future, when you need to manipulate all folders or all files of a certain directory, you can add additional code to either...
  3. Thread: COM DLL

    by Hawk
    Replies
    9
    Views
    952

    Do you have any samples of checking for version...

    Do you have any samples of checking for version number? I know there is an API out there I think.
  4. -You will need a text1, list1 and command1 on...

    -You will need a text1, list1 and command1 on your form.
    -You will need to reference "Microsoft Scripting Runtime"
    -You will need to type in the name of the extention that you are searching for...
  5. Thread: COM DLL

    by Hawk
    Replies
    9
    Views
    952

    Thanks, I think you fill in that missing link for...

    Thanks, I think you fill in that missing link for me. Do you have an example of version checking?

    Also, what does DCOM do then?

    Thanks for you time again.
  6. Thread: COM DLL

    by Hawk
    Replies
    9
    Views
    952

    Thank you for your reply Frans. What do you...

    Thank you for your reply Frans.

    What do you recommend if I want a handful of users to use a reuseable object from the server, such as an input form? I am looking for something like an ASP page,...
  7. Thread: COM DLL

    by Hawk
    Replies
    9
    Views
    952

    Anyone??? I don't have an extra machine to test...

    Anyone??? I don't have an extra machine to test this, so do I just register the dll on the client side?
  8. Thread: COM DLL

    by Hawk
    Replies
    9
    Views
    952

    COM DLL

    Hi,

    How do you deploy a COM Dll that has a form to the client side?

    I have two machines. One contains the server app dll and the other one contains the client standard exe. In the server app...
  9. Replies
    17
    Views
    30,022

    I knew you were messing around Fox. You are a...

    I knew you were messing around Fox. You are a cool guy.
  10. Replies
    3
    Views
    3,870

    There are some errors in you code ffejy - On the...

    There are some errors in you code ffejy - On the array. Very unique method once it worked.


    I like to use something like this.

    MsgBox Mid(FileName, InStrRev(FileName, "\") + 1)
  11. Replies
    10
    Views
    1,608

    Sorry dennisds, I have not played much with the...

    Sorry dennisds, I have not played much with the Data Environment.

    The only other way I could think is in your "Select" statement, use the sql function "Count". Not sure!

    Hawk
  12. Replies
    10
    Views
    1,608

    OK, I see!

    So right now in your table, you don't have a serial number field right? And you want to create the count on your report right?

    If that is the case, do the following.

    What you want to do is...
  13. Replies
    10
    Views
    1,608

    Re: Serial Number

    Can you elaborate a little bit clearer right here because I kind of got lost? You want a serial number before record 2,5, and 6 also right?
  14. Replies
    15
    Views
    1,292

    I haven't test this but pretty sure it works. ...

    I haven't test this but pretty sure it works.

    -Reference the "Microsoft Script Runtime"


    Dim FSO As New FileSystemObject
    Dim lngSize As Long
    lngSize = Fix(FileLen(strFile) /...
  15. Replies
    0
    Views
    5,023

    VB - Enhanced StrConv(Whatever, vbProperCase)

    Try this and see what you get.
    MsgBox StrConv("a!a@a#a$a%a^a&a(a{a[a;a.a_a-a+a=a'a*a|a\a/a:a?a>a<a~a""a", vbProperCase)

    Then, try this
    MsgBox...
  16. Hi, There are errors in your code. Where it...

    Hi,

    There are errors in your code.

    Where it say SetComboBoxHeight and ComboBox, you need to update the variable.
  17. Don't know where James got his original code but...

    Don't know where James got his original code but my code was trying to enhance his code. As for strConv, I learned years ago and I don't think that is knew to anyone.

    The way you did it in the...
  18. I agree with Virus00110. I like it and...

    I agree with Virus00110. I like it and especially at a time when I am looking into encryption.

    I am just trying to understand your code CVMichael.
  19. Replies
    4
    Views
    1,194

    Thanks, I will check it out and get back to you. ...

    Thanks, I will check it out and get back to you. I open the site up but it is taking forever for it to load.
  20. Replies
    3
    Views
    1,388

    You welcome

    You welcome
  21. Thread: Hacking Question

    by Hawk
    Replies
    9
    Views
    1,197

    Okie Dokie! :D Thanks Josh

    Okie Dokie! :D

    Thanks Josh
  22. Thread: Hacking Question

    by Hawk
    Replies
    9
    Views
    1,197

    Can you give me an example of basic starting...

    Can you give me an example of basic starting encryption? Do you create this encryption in COM also?

    Thanks
  23. No problem. Go up to the Project Menu and...

    No problem.

    Go up to the Project Menu and click on References. Once the dialog box open, scroll down to that and click on "Microsoft Scripting Runtime". Done!
  24. Thread: Hacking Question

    by Hawk
    Replies
    9
    Views
    1,197

    Thanks Frogman :D

    Thanks Frogman :D
  25. Actually, I should have left that line on a...

    Actually, I should have left that line on a module level so it does not have to recreate the dim for every sub folder.

    Back to your problem. Did you reference "Microsoft Scripting Runtime"?
  26. Replies
    5
    Views
    997

    I am actually having the same question Ray. The...

    I am actually having the same question Ray. The last time I used Crystal Reports was 4.2 version interacting with VB.

    I am looking for a sample that use version 7.

    I posted another thread...
  27. Replies
    5
    Views
    522

    Thanks Mendhak, You and JoshT has helped me...

    Thanks Mendhak,

    You and JoshT has helped me quite a bit on ASP questions in the past.

    By any chance, do you know anything about this one?
    ...
  28. Replies
    7
    Views
    539

    To prove nswan suggestion.

    Change this line
    oRs.Open sSql, goCnn, adOpenDynamic, adLockOptimistic
    to this line for now.
    oRs.Open sSql, goCnn, adOpenKeyset, adLockOptimistic
    MsgBox oRs.RecordCount

    If the...
  29. Replies
    4
    Views
    629

    -You will need a listbox called list1 'You...

    -You will need a listbox called list1


    'You will need to reference the "Microsoft Scripting Runtime"
    Private Sub sFindFile(strFolder As String)
    If Right(strFolder, 1) <> "\" Then strFolder...
  30. Replies
    3
    Views
    1,388

    First of all, you need to move this thread to the...

    First of all, you need to move this thread to the General Question because this part of the forum is only for people sharing their successful codes and not for asking questions on new topics.

    You...
  31. Here is a pretty straight forward example I cooked up for you.

    -You will need a text1, list1 and command1 on your form.
    -You will need to reference "Microsoft Scripting Runtime"
    -You will need to type in the name of the dll or ocx file that you are searching...
  32. Replies
    4
    Views
    1,194

    Crystal Report Sample

    I am looking for a basic sample of VB using Crystal Report 7.

    If you know of a site, please let me know.

    Thanks
  33. Replies
    1
    Views
    5,932

    James, I think you need to change GetFileName...

    James,

    I think you need to change GetFileName to FileNameWOExt because your function is not working properly.

    Also, I like to point out something and hope you don't mind. WindowXP and most of...
  34. There are some downside to STRConv. MsgBox...

    There are some downside to STRConv.
    MsgBox StrConv("C:\Documents and Settings\All Users", vbProperCase)

    Would return something like this.
    "C:\documents And Settings\all Users"

    I think...
  35. Replies
    5
    Views
    522

    Thanks but I know all of that already. That is...

    Thanks but I know all of that already. That is cursor type.

    I am looking to understand cursorlocation(clientside, serverside) and locktype.
  36. Replies
    5
    Views
    522

    CursorLocation and LockType

    Can someone explain to me when to use what cursorlocation and locktype for opening recordset?
  37. Thread: Hacking Question

    by Hawk
    Replies
    9
    Views
    1,197

    Hacking Question

    Hi,

    Here is something I have been thinking about. Currently, I keep the connection string to the database inside a COM component. This way, if someone hacks into my computer, they cannot get the...
  38. Replies
    1
    Views
    426

    Dir Control - Full Path

    Anyone knows why sometime it returns a short path and sometime it returns a long path? Sometime it returns the path in capitals and sometime it returns it in propercase.
  39. Thread: Regsvr32.exe

    by Hawk
    Replies
    2
    Views
    563

    Thanks for your time and confirmation Jim.

    Thanks for your time and confirmation Jim.
  40. Thread: Regsvr32.exe

    by Hawk
    Replies
    2
    Views
    563

    Regsvr32.exe

    I have a question and hope that you can help me. My program works fine but I just want to know this for my own knowledge.

    OK, I made a COM dll. My client program reference it.

    Once in a...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width