Search:

Type: Posts; User: icongroup2003

Page 1 of 3 1 2 3

Search: Search took 0.07 seconds.

  1. Replies
    25
    Views
    124,359

    Re: How to access remote MS Access database

    I had a problem trying to get the connection to work. When my code run into :

    .Open strSQL, adoConn, , , adCmdText

    It pop out a runtime error :
    Run-time error '-2147024664 (800700e8)'...
  2. Re: Error quiting Microsoft word object.

    Nope it wun work. The method is not recognised.

    .session.logoff cannot be used with this object.

    Thanks anyway. Anyone else have any other inputs ?

    Still need help.
  3. Re: Error quiting Microsoft word object.

    The problem is I am creating this software for other user and I do not wish to write code to temper their system settings or their mcafee settings.

    I am hoping there is a way to archieve calling...
  4. Error quiting Microsoft word object.

    I have this warning from Mcafee saying that my application is closing a external application. How can I prevent Mcafee to detect that I am closing a word object from within my application ?

    This...
  5. Replies
    1
    Views
    2,601

    VB6 Resource Editor Addin

    Help .... I need to create a resource file in my project. However, I do not have the addin. Where can I get the VB6 Resource Editor Addin ???

    I went inside the Add-Ins-->Add in manager ... and...
  6. Replies
    2
    Views
    434

    Re: Disabling a Listbox

    Ok .... I admit I am a little bit overworked .... Now then I realise that my listbox is a usercontrol listbox. It didn't have the property "Enabled" ... so I was like, huh ? Thought that listbox...
  7. Replies
    2
    Views
    434

    Disabling a Listbox[Resolved]

    I want to disable the listbox during runtime ... so that it prevent user from click on it. Is there a way to do it ?

    Once my query is done, then I want the listbox to be enabled again.

    All I...
  8. Any function to get the MAC Id from the computer ?

    I need to extract the MAC ID from the computer that run my software. Hence, I did a search to look for existing post but no results.

    Anyone can help ? How do I get the MAC ID from the network card...
  9. Re: Is there a tool to convert vb project to vb.net project ?

    wow ... wow .. that is really a piece of bad news .... sigh. I guess I am stuck with VB6 ... with no solution to using UTF8 .... :(.

    Maybe porting it over to C++ instead ... now, I have to go dig...
  10. Re: Any methods to display my form on the foreground all the time ?

    Sorry for spoiling your mood. Thank goodness that you're in good mood. I have in fact tried searching for "form on top fore ground" ... etc ... but come to no answer that is why I started a new...
  11. Re: Is there a tool to convert vb project to vb.net project ?

    hmm .... Bill gate was in Singapore talking about the future of OSes ... he did mentioned that VB.Net will be highly sought after .... the potential of building programs with .Net frameworks ... etc...
  12. Any methods to display my form on the foreground all the time ?

    I have this form and I wanted it to be at the foreground all the time ... even if I am running other programs at the time, I want it to be displayed at the top of the running program.

    basically...
  13. Re: Is there a tool to convert vb project to vb.net project ?

    Yeah .... Vb.net .... i guess is still in it's early days. Maybe ... and hopefully in near future we can get the same stability level as VB6 ....

    Right now VB6 is the has most stable codes ......
  14. Re: Is there a tool to convert vb project to vb.net project ?

    Wow ... what a negative response for using the convertor buildin in the Visual Studio ... I guess I will try it out to see how bad it is.

    Anyway, any good leads or suggestion that I can use UTF8...
  15. Re: Is there a tool to convert vb project to vb.net project ?

    Thanks Gurus for your guidances .... the need to convert from VB6 to Vb.Net is because VB6 doesn't support Unicode code or UTF8. I have trouble displaying my UTF8 characters using almost all the...
  16. Is there a tool to convert vb project to vb.net project ?

    I am wondering if there is any existing tools or softwares that allow me to convert all my vb project codes ... to vb.net project code ?

    I want to convert my hard work vb project to vb.net so that...
  17. Re: Help on retrieving Local Computer Name{RESOLVED]

    Thanks for the help. It solved my simple problem.
  18. Help on retrieving Local Computer Name{RESOLVED]

    I need a function that can return the name of the local machine.

    Is there such a function already in VB ?

    Like example :

    'it will return the computer id/name which I am running on right now....
  19. Replies
    0
    Views
    387

    Detecting scrolling in Richtextbox

    I have a vertical scrollbar in a richtextbox. However, there is no event for scrollbar in richtextbox.

    How am I going to tell if the user is clicking on the scrollbar ?

    Any API or rountine...
  20. Replies
    2
    Views
    428

    Outputing to RichText File Directly

    Hello ...

    I am wondering if there is any method whereby I can directly output into a RTF .... currently the only method I know of is to output to a richtextbox control in the form then calling the...
  21. Is there a function to count the number of occurance of a letter in a String ?

    Something like this ...

    MyVar = "AAABBBBBCCCCC"

    MyCount = FUNCTIONXXX(MyVar, "A") 'MyCount = 3
    MyCount = FUNCTIONXXX(MyVar, "B") 'MyCount = 5


    Or do I have to make one custom function...
  22. freezing two controls at the same time ???

    Anyone knows how to freeze two control at the same time ???

    I am using LockWindowUpdate to freeze the control ... however ... it seems to be able to freeze one control at a time ....

    when I do...
  23. Re: Is there a way to tell where your code went wrong during compiling ???

    I got it ... thanks .... will try now ..
  24. Re: Is there a way to tell where your code went wrong during compiling ???

    I dun understand ??? What is start with full compile ??? I cannot even compile ...

    Normally I compile using "Tools -- > Publish ---> Build outputs..."

    Can you tell me exactly where to do .....
  25. Is there a way to tell where your code went wrong during compiling ???

    Sometimes when I compile ... I have this "Project failed to build ! Method '~' of object '~' failed".

    When I run the project ... it looks fine .... only when trying to compile to make a .exe file...
  26. Re: Any method of making listbox load faster

    Well RhinoBull .... everyone has their own reason to use a listbox. I have mine, hence ... I appreciate your effort in telling those.
    As mentioned earlier ... I have tonnes of selections for the...
  27. Re: Any method of making listbox load faster

    Thanks guys for replying to my qns.

    First of all, my listbox has no limitation of records as I create a user control similar to a listbox.

    Also, I do not require to filter the table abstract...
  28. Any method of making listbox load faster

    Hi Gurus ... I am wondering is there any other way to add item to the listbox so that it will load faster.

    What I am doing now is when the form loads up, it will starts to list1.additem from a...
  29. Replies
    7
    Views
    492

    Re: run-time error '7'

    well .. for deploying .. I use innosetup. I have all my ocs dll ... registered. It shouldn't be that problem.

    Any other possible causes for this type of error ?
  30. Replies
    7
    Views
    492

    Re: run-time error '7'

    I doubted it is the dll error. I have it installed in five PCs for a test and four worked except for one. All five PCs have the same spec.

    I am not referencing to any path while the software is...
  31. Replies
    7
    Views
    492

    run-time error '7'

    Searched the forum for this kind of error. Apparently, no one has posted it before.

    Anyway ... when I run my software after installing it. It came out with a run-time error '7' : Out of memory.
    ...
  32. Re: Detecting path to System/System32 folder in individual computer. [RESOLVED]

    I heard that some virus software will give some warning if you're running a software which dump files into the System's "System folder" .... any idea where can I dump files into ... so that it is...
  33. Re: Detecting path to System/System32 folder in individual computer.

    Thanks .. that will do.

    Many thanks !
  34. Re: Detecting path to System/System32 folder in individual computer.

    Thanks RobDog888 ... any example on how to use that API ?

    Thanks.
  35. Detecting path to System/System32 folder in individual computer. [Un-RESOLVED]

    Is there a code in VB to detect the actual path to the computer's system folder.

    For example in WinNT system,
    it is normally in "C:\Winnt\system\" and "C:\Winnt\System32"
    In WinXP .. it is...
  36. Re: Preventing exporting/importing from Access database

    Hey Pnish .... your mind and mine thinks alike ...

    Almost all your ideas have been implemented.

    Hide the .mdb in the deep, dark recesses of the windows directory structure (ie don't have it in...
  37. Re: Preventing exporting/importing from Access database

    thanks pnish ...
    I think there is not easy solution to this problem ... guess I have to use pnish solution to to change the upper part of the .mdb files to render it impossible to open by access.
    ...
  38. Re: Preventing exporting/importing from Access database

    Only possible for a small database. What if my database is hugh ... and encrpting the entire database in binary .... will be disasterous .... time consuming ...
  39. Re: Preventing exporting/importing from Access database

    Oh yes ... that may be the solution ... I need ... to detect connection from outside and blocking it from connecting. However, the database is closed and how can we run code when it is closed ?
    ...
  40. Re: Preventing exporting/importing from Access database

    Yes ... I did .. changed the extension to .dat or .vii ... or watever ... but the main thing is anyone can still import from it even the extension is not in .mdb ...

    :(
Results 1 to 40 of 86
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width