Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by xanseviera

  1. X

    Motion Detection using VB6

    Private Declare Function capCreateCaptureWindow Lib "avicap32.dll" Alias "capCreateCaptureWindowA" ( _ ByVal lpszWindowName As String, _ ByVal dwStyle As Long, _ ByVal X As Long, ByVal Y As Long, _ ByVal nWidth As Long, _...
  2. X

    Motion Detection using VB6

    cam sum1 help me regarding motion detection using VB6? :-)
  3. X

    hel me troubleshoot vb 6.0 problems

    help me troubleshoot vb 6.0 problems hi... can sum1 help me to troubleshoot this problem... im having this prompt windows when im running the coding... i also attached the programs. TQ ;-)
  4. X

    How to create wrapper class for ZLIB software library?

    im doing data compression using ZLIB using C++. how to create wrapper class for ZLIB software lib? please help me. TQ.
  5. X

    reset comm port in VB6

    i got it already... i found error on my PIC programming. TQ for helping ;)
  6. X

    Help in PIC programming during "mydata==a" is running

    Re: PIC programming do you knw any prgramming language rather than "break" - "return" - "exit sub"?
  7. X

    Help in PIC programming during "mydata==a" is running

    do{ if(kbhit()) {mydata=getch(); mystat=1;} if(mystat==1) { if(mydata=='a' || mydata=='A') // Junction 1 { //green at junction 1 output_high(PIN_D5); output_low(PIN_D6); output_low(PIN_D7); output_low(PIN_E2)...
  8. X

    How can I use delay between 2 operation in VB6

    TQ for da codes.. it work for me... ;)
  9. X

    How can I use delay between 2 operation in VB6

    Re: delay in VB6 if let say i want to put delay here(arrow): LampuMati tmrLampu.Interval = Val(txtHijau(Index).Text) * 1000 LampuHijauNyala Index 'delay <------------ want to put delay here. For intNum = 0 To 3 If intNum <> Index Then LampuMerahNyala intNum Next intLampu = 1...
  10. X

    How can I use delay between 2 operation in VB6

    delay in VB6 how to put delay inside VB? i want to make delay between 2 operation. i try it before using "Sleep(3000)", but it need declaration... sum1 help me.
  11. X

    reset comm port in VB6

    how to reset comm port in VB6? Private Sub Command6_Click() MSComm1.PortOpen = True MSComm1.Output = "a" MSComm1.Output = "b" MSComm1.Output = "c" MSComm1.PortOpen = False 'Close the COMM port End Sub Private Sub Command4_Click() MSComm1.PortOpen = True MSComm1.Output...
  12. X

    serial port using vb6

    u mean the whole project? Added after 1 hours 49 minutes: i've attached my source code... plz take a look.
  13. X

    vb6.0 communicate with PIC16f877a

    u can try to use this code 1st: Private Sub Form_Load() ' Fire Rx Event Every single Bytes MSComm1.RThreshold = 1 ' When Inputting Data, Input 1 Byte at a time MSComm1.InputLen = 1 ' 9600 Baud, No Parity, 8 Data Bits, 1 Stop Bit MSComm1.Settings = "9600,N,8,1"...
  14. X

    serial port using vb6

    i try another method whereby, i put another dependent button & hit it. my circuit changed accordingly. Private Sub Command6_Click() MSComm1.PortOpen = True MSComm1.Output = "a" MSComm1.Output = "b" MSComm1.Output = "c" MSComm1.PortOpen = False 'Close the COMM port End...
  15. X

    serial port using vb6

    is it my case statement was wrong?

Part and Inventory Search

Back
Top