Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Gaudalier

  1. Gaudalier

    clarion freezes after opening source

    There is a bug when clarion popups a messagebox in the MDI IDE. The message windows is hidden by the parent. So to show up, a ALT+F6 must be pressed to show the error window. ? ----- www.carabez.com
  2. Gaudalier

    access a file from server procedure in ip enabled application

    Make an Alias of File1, change it path and open it; then simple copy from File1 to AliasFile1. ? ----- www.carabez.com
  3. Gaudalier

    Wiring PBX(KX-TDA100) and Phone(KX-T7665)

    Cat5 The Electrical Codes, Hellermann Tyton Socket: Pin codeA codeB 1 GreenS - OrangeS 2 Green - Orange 3 OrangeS - GreenS 4 Blue - Blue 5 BlueS - BlueS 6 Orange - Green 7 Brown - Brown 8 BrownS - BrownS Somehow, there codes for Cat3 Socket is Neither A or...
  4. Gaudalier

    Wiring PBX(KX-TDA100) and Phone(KX-T7665)

    Solved!... The guys that originally patch wired the jacks, pathed using A standard... It must be B.... Thank you! ----- www.carabez.com
  5. Gaudalier

    get image from a local network location

    Does you tried mapping to a network drive? What is the ErrorCode() returned? B ----- www.carabez.com
  6. Gaudalier

    rs232c port for smdr kx td1232

    According to RS232 spect, every pin it's suppose to support short-circuit with out blow-up the component: This is the Cable Modem Wiring Diagram I'd Use: D9 D25 D25 D9 3 2 TD------------->RD 3 2 2 3 RD<-------------TD 2 3 5 7 SG<------------>SG 7 5 4 20...
  7. Gaudalier

    Wiring PBX(KX-TDA100) and Phone(KX-T7665)

    I was NOT the guy that patch wire the PBX; Actually has a Regular Phone working this way: 1 2 3 1 4-------------2 5-------------3 6 4 7 8 PBX Regular Phone (Working OK) I'd tried this -by advise of PBX service provider-: 1 2 3 2...
  8. Gaudalier

    Wiring PBX(KX-TDA100) and Phone(KX-T7665)

    Thank you for answer! Well, I wrote MPR(DX) but its a DHLC card! 1 1 2-------------2 3-------------3 4 4 PBX Regular Phone I wire the 7665 this way: 1 2-------------1 3-------------4 4 PBX Regular Phone No Success! ----- www.carabez.com
  9. Gaudalier

    Wiring PBX(KX-TDA100) and Phone(KX-T7665)

    Hi! I'm tring to get Digital phone KX-T7665 to work in a PBX KX-TDA100 conected in a MPR(DX) Card at Slot1. Seem that no matter how do I wire the jack, it does not come to live!.. Is anything to configure in the maintenance console required? Any Trick? PS. when I'd wire inner wires to...
  10. Gaudalier

    nested for loop?

    he, he.. Long time ago that I don't touch C languaje, so I read my old c book. By the way LionelHill, yes, actually I'm working in a Imaginery Library, that really need some speed (Clarion, my former DB Languaje) does not do the job! Thank you Guys! ----- www.carabez.com
  11. Gaudalier

    nested for loop?

    Thank you, very much! ----- www.carabez.com
  12. Gaudalier

    nested for loop?

    Hello, again, hello!! Still transporting from C code to Asm ;) Sorry, but cannot find in TEACH YOURSELF C IN 21 DAYS an explanation to this code: void ClearScreen() { WORD xpos,ypos; for (ypos=0;ypos<Yimage;ypos+=8) for (xpos=0;xpos<Ximage;xpos+=8) {...
  13. Gaudalier

    What about this line?

    Wow! Hey SamBones, That code is now Cristal Clear!!!!! Thank Ya, very much! ----- www.carabez.com
  14. Gaudalier

    What about this line?

    I'm traslating this C code to Assembler code: POS_buffer=(offsetPOS *)(malloc(nControls)) Ok, Malloc parameter = number of contiguous bytes of storage to be allocated, 100 indicated by nControls. What I dunno is "(offsetPOS *)": It's mean to be size of offsetPOS (4) times malloc(100)) = 400...
  15. Gaudalier

    What about this line?

    Hi there! I'm coding a function from C to asm. I need to know how much memory does Allocate the next c line: //typedef struct { BYTE X,Y,W,H; } offsetPOS; //offsetPOS *POS_buffer; nControls=100 POS_buffer=(offsetPOS *)(malloc(nControls)) How many byte is allocated at POS_Buffer? 400? Can...

Part and Inventory Search

Back
Top