Search:

Type: Posts; User: dexjel140503

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Re: object doesn't support this action! HELP!

    That does the trick! Thanks night! Thumbs up for you! :wave:
  2. [RESOLVED] object doesn't support this action! HELP!

    hello guys! just got some problem generating a crystal report with SQL server as database and vb6 as backend. Whenever i call the report for the "FIRST" time, the error doesn't appear however when i...
  3. Replies
    9
    Views
    1,640

    Re: View Word & Excel in form w/o OLE.

    ahm yes that's what i meant guys. i want the doc inside a window or something, with that the user can only view it just like a picture but can navigate through that document though. do you know any...
  4. Replies
    9
    Views
    1,640

    Re: View Word & Excel in form w/o OLE.

    u mean i have to capture an image of the document? then show that image in the picturebox? am i getting it right?
  5. Replies
    9
    Views
    1,640

    View Word & Excel in form w/o OLE.

    guys i know there's a lot of topics about this in google but i still cant find any accurate solution to my program. i'm trying to show the users an attachments (which is word or excel files). at...
  6. Replies
    8
    Views
    1,476

    Re: Problem in monthly records.

    whew! i finally managed to do it. for those who got same problem revise ur queries like this
    Code:


    just make sure the field in ur DB is a Date/Time formatted as "mm/dd/yyyy". Thanks a lot guys!...
  7. Replies
    8
    Views
    1,476

    Re: Problem in monthly records.

    Hi! Im using Access 2003 as a database. Mr. brss i tried ur query but i still didn't get the correct records. BTW, what f i change the field type in my table from text to date/time? will it help? .
  8. Replies
    8
    Views
    1,476

    [RESOLVED] Problem in monthly records.

    good day! im trying to search records between 2 dates (monthly,weekly). what is wrong with my query/code?

    <code>
    paramDate1 = CDate(DateFrom)
    paramDate2 = CDate(DateTo)

    Set rs = New...
  9. Re: Working with Windows Registry using Visual Basic 6 - A complete Tutorial

    just one question, in what exact part of the registry is the created one goes? i tried this code and it actually works however i'm searching my registry and i think it does not see the created one.
  10. Replies
    4
    Views
    1,194

    Re: WMP progress bar

    thanks guys for the ideas! it greatly helped me. BTW i did it by getting the total secs of the video and set it as the max value of the progress bar. that do the trick for me. just saying if ever...
  11. Replies
    4
    Views
    1,194

    [RESOLVED] WMP progress bar

    hi guys! how can i make a progress bar that corresponds to a video length and has a seeking function? for example is the progress bar of WMP. can u give me some starting point guys. thanks! any...
  12. Replies
    7
    Views
    1,227

    Re: Invalid use of Property

    oh that'd do the trick. thanks DataMiser! :)
  13. Replies
    7
    Views
    1,227

    Re: Invalid use of Property

    ahm it is name for the control Im trying to use. the control is part of an SDK. I don't yet have much codes coz I'm just about to start it and when I do i got this error. Let me illustrate a part of...
  14. Replies
    7
    Views
    1,227

    Re: Invalid use of Property

    well ctrl1 is an activeX control Im trying to use to access an IP Camera. I've tried what you said Data but it throws an error "Argument not optional" ?
  15. Replies
    7
    Views
    1,227

    [RESOLVED] Invalid use of Property

    guys why do i always get this error (Invalid use of property) in this code?

    <code>
    ctrl1.SetTransferMethod ("TCP")
    </code>

    thanks guys!
  16. Replies
    3
    Views
    2,037

    Re: VB6 integration of IP Camera

    it's really hard for me coz it's my first time i will be doing such project so i dont have much understanding about these IP Cams (like DirectShow, What is that BTW? ). I guess i have to study C# for...
  17. Replies
    3
    Views
    2,037

    VB6 integration of IP Camera

    hi guys! i just bought a AVN314/304 Network Camera to use in my surveillance project which will be written in VB6. i got the SDK but the samples given there are in C#. does anyone know how to...
  18. Replies
    3
    Views
    3,128

    Re: VB6 and AVTech IP Camera

    ahh i see. how about activex control which can be used for the camera?. or do you have any idea how can i view the live IP Camera in a VB6 form? Please give me some advice..
  19. Replies
    3
    Views
    3,128

    Re: VB6 and AVTech IP Camera

    ahh i see. how about activex control which can be used for the camera?. or do you have any idea how can i view the live IP Camera in a VB6 form? Please give me some advice..
  20. Re: Listview to crystal reports 9

    thanks sir! :D this works too!
  21. Replies
    3
    Views
    3,128

    VB6 and AVTech IP Camera

    Please help me! i doing a surveillance project now and i cant find any activex control or SDK for the IP Camera. the camera is AVTech AVN314/304. can you please send me link of any controls i can use...
  22. [RESOLVED] Listview to crystal reports 9

    good day! I'm now working on a project with a daily report. i managed to create some codes but i can't get it working it has an error saying "ERROR IN COMPILING SQL EXPRESSION : UNKNOWN QUERY ENGINE...
  23. Re: Digital Persona Save Fingerprint to Database

    the problem dude is how will i convert it, i tried some codes to convert it but what i get is just a series of ???????????????????????????????? and some unfamiliar symbols. do you have any idea...
  24. Digital Persona Save Fingerprint to Database

    ok here's how it goes. i have a digital Persona fingerprint reader, i somehow managed to create fingerprint templates (.fpt) but i wonder how will i extract the binary codes in the templates and save...
  25. Replies
    3
    Views
    1,309

    Re: VB6 to VB .Net listview

    ahm can i know why u advice not to use listview? i find it very functional and flexible in VB6 and i believe it still has its capabilities in .NET
  26. Replies
    3
    Views
    1,309

    VB6 to VB .Net listview

    guys its my first tym to use vb .net in a project. how can i populate a listview from an ADODB recordset? i've searched so far in the net but still cant understand on how to do it using ADODB. Please...
  27. Re: [RESOLVED] Open file in read-only (ShellExecute API)

    thanks dilettante for the advice.. will consider it also.. :D
  28. Re: Open file in read-only (ShellExecute API)

    thanks! i got it solved! :D thanks for all the concerns.. :))
  29. [RESOLVED] Open file in read-only (ShellExecute API)

    guys how can i open a specific file in read-only state using ShellExecute? this is my code so far, but the SetAttr doesn't work. it opens the file but the user can edit it (coz it's not open in...
  30. Replies
    10
    Views
    2,465

    Re: vb6 .exe file crashed!

    actually i tested it in other client PCs and everything work well except for that specific PC. so i think the code is not the problem, coz if it is then the other two will have the same problem too...
  31. Replies
    10
    Views
    2,465

    Re: vb6 .exe file crashed!

    thanks for the help dude.. my development Pc is also running a Windows 7 OS that's why i can't figure out what causes the crash thing.. thanks again.. :)
  32. Replies
    10
    Views
    2,465

    Re: vb6 .exe file crashed!

    aha! we're not making it clear for us. what i'm saying a .exe file is a project developed using VB6, i compiled an executable file of it, made an installer and install it on a client PC. i've...
  33. Replies
    10
    Views
    2,465

    Re: vb6 .exe file crashed!

    okay i've tried it but it's still there.. i run the .exe file as administrator, i thought it works coz it generates the report however when i tried it for the 2nd time it crashes again.. i also...
  34. Replies
    10
    Views
    2,465

    vb6 .exe file crashed!

    im wondering why my vb6 .exe file installed on a windows 7 client pc crashes after closing a form with crystal report viewer 9. in my development Pc it is okay, but whenever i try to run it in that...
  35. Replies
    1
    Views
    611

    calling the text objects in crystal

    hi guys. how can i call the textobjects in a crystal report 9 and set its datafield? for example textobject1 will display the field of employee number, im using sql server 2000 and vb6.. thanks in...
  36. Re: object doesn't support property or method

    ahh my bad, i didnt revise the code i posted.. anyway do u have any idea how can i call the text objects in the crystal report and set its datafield by coding?
  37. [RESOLVED] object doesn't support property or method

    hi guys.. why is it that i keep getting this error whenever i activate the view form in my program. im using crystal reports9 , vb6 and SQL Server 2000 as a database. here is my code:

    Set rptapp =...
  38. Replies
    2
    Views
    654

    Display Database Record

    it's okay now dude. i want to ask now how can i display in the crystal reports a specific database record? im using crystal reports 9. any advice there? :)
  39. Replies
    1
    Views
    597

    [RESOLVED] Record fields comparison

    hi again guys, i just want to know if its possible to match a database record to another record which is quite different. for example employeeA both belongs to all this group which is GroupA,...
  40. Replies
    8
    Views
    1,212

    Re: explorer.exe

    well thanks for all the advices, but what i need to know is how can i get the path the user chooses in the explorer window, for example the user go to "C:\My Documents\some docu", how can i get that...
Results 1 to 40 of 47
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width