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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. daniloa

    How to unblock SIM card ?

    Hello everybody, I have a SIM card from TIM - Brazil that I entered wrong PIN number 3 times and wrong PUK number more than 10 times, so this SIM cards is locked. And normally I will need to buy another SIM card and transfer the line number. But I want to know, there are some way to unlock...
  2. daniloa

    How to find data in a wave file ?

    Hi everyone, How are you ? Happy new year for all !!! Well I want to know how can I find some data like a tone in a recorded wave file in WindowsPCM format in 11kHz - 8bits. This file(s) will contain some conversations like phone conversations and some tones in midlle so I need to find this...
  3. daniloa

    Multiple Type Class ...

    Hi everyone how are you ? So I need a little trick or tip of how to do this: I have some classes in my project like Class A, Class B, Class C, etc; and I have a class that will comunicate me with one of then named Class D for sample see the code below: int ClassD::PegaQuantidadeCanais(LPSTR...
  4. daniloa

    CDocument problems with messages ...

    Hi all ... I have a CDocument in a SDI type program where I was created many windows with the createwindowex() as chield and bitmap, to set this window inside the document as a draw, but now I need to get the WM_LBUTTONDOWN and WM_RBUTTONDOWN messages from this windows, and I don't know how ...
  5. daniloa

    How to access PostgreSQL from an ASP Emulator?

    Hi, I have a big problem in my hands...I´m working in a project that was built in ASP(Active Server Pages) using an ASP Emulator for LINUX. It´s running on a LINUX-APPACHE environment with PostgreSQL database. I have to access the data registered in PostgreSQL Database from ASP pages, but I...
  6. daniloa

    MFC Application Performance

    Hi everyone, I have a MFC Application (.exe) that have size of 46Kb, and uses two OCX (MFC component too), sizes 60Kb and 55Kb. But when I run this program he takes in average 9,3MB on windows task manager memory size, I has compiled this as release for minimize size option and still the...
  7. daniloa

    Problems Getting OCX Events

    Hi friends I have a big problem in my hands that I can't resolve. The issue is this: I have an OCX (MFC Control) that is working fine on Visual Basic. And I have a MFC Application that uses this OCX, and to use it I follow this steps: 1- Project->AddToProject->Controls&Components -- and add...
  8. daniloa

    Custom Pictures on MFC Control ...

    Hi everyone, good day. I'm developing an OCX component (mfc) and when I use him on VB (for sample), he draws an elipse, and I can size it. OK I want to know how can I make it not size able and how can I make it draw a jpg or an ico (custom) picture? Very Thanks, Danilo ...
  9. daniloa

    Event Handle (Urgent) ...

    Hi everyone, I'm with problems to receive an OCX event, the issue is this: I have an OCX (mfc control) that have an Event declared on "public:" part of an class named CAlcUraCtrl like this: //{{AFX_EVENT(CAlcUraCtrl) void FireOnHangUp(long eCanal) {FireEvent(eventidOnHangUp...
  10. daniloa

    Intercommunication ...

    Hello friends, how are you? I hope fine ... Well I want to know a thing. Please say if it's possible: I have an exe program running named "A" ------ | A | ------ I have an other exe program running (on same computer) named "B" ------ | B | ------ I have an OCX...
  11. daniloa

    CString::Left problems ...

    Hi people good night ... I'm with a problem using the Left function of a CString object ... it's like this : CString snum(_T(pnum)); CString tmp; tmp = sNum.Mid(tmppos, pGrupo); if (tmp.Left(4) == "0000") Zeros(pCanal, 4); if (tmp.Left(3) == "000") Zeros(pCanal, 3)...
  12. daniloa

    Sub Properties in Control ...

    Hi friends how are you??? I hope fine ... Well I'm making an OCX (MFC Control) that will be work on VB, and I need to make a "MultiProperty" something like this: on vb: MyOcx.MyProperty.MySubProperty1 = 2333; MyOcx.MyProperty.MySubProperty2 = 2333; and this way till an eleven sub...
  13. daniloa

    Working with COleDateTime ...

    Hi, I'm making a OCX that I need to pass a date time value, how can I do it? I always tried this but don't work: long CMyClass::FunctionDate(DATE pDate, long pType) { COleDateTime(pDate) ct; long mYear; // mYear = ct.GetYear(); } how can I do it ??? Very Thanks, Danilo ...
  14. daniloa

    Problems With MFC Control ...

    Hi every one, I'm very beginer C++ Developer and I have a problem developing a OCX control that I can't know what I have to do, this is: I have a Function like: long PlayInteger(long pDev, long pNum) that was created with the class wizard. but this function uses four other functions, that I...
  15. daniloa

    MFC ActiveX Control Wizard ...

    Hello, good afternoon for all, I'm with a problem, that is the follow: I'd used the MFC ActiveX ControlWizard to create an ActiveX object that can be used on Visual Basic. Ok. I'd used tha class wizard to create a method to this OCX. Ok. the method is: long CAx001Ctrl::TocaPrompt(long pCanal...
  16. daniloa

    ActiveX (OCX) Component ...

    Hello, someone can send me, or say where I can find some MS Visual C++ Tutorial to create an OCX Component, that explains how export methods and events and properts? Very Thanks, Danilo ...
  17. daniloa

    strcpy() ... problems ...

    Hy I'm developing i MS C++ over the Dialogic C APIs and I face this function (I think that is from C++ not Dialogic). strcpy(); I'm using this way: int digitos; // Dialogic API if (dx_getdig(pCanal, tptdig, &dig, EV_SYNC) == -1) { printf("Erro Pegando Digito ...\n")...
  18. daniloa

    How to Lenght() and Mid() function ???

    Hy, I'm a VB developer and now I'm using MS Visual C++ 6 to develop some codes to telephony. And I have a litle problem: MSVC++ have some function like Len() and Mid() and InSTR() Vb functions ???? how can I know how many characters have a char variable ??? Very thanks, Danilo Almeida ...
  19. daniloa

    unresolved external symbol ????

    Hi, friends I'm a very begginer on C/C++ development, and I work with telecom development. I has work with another tool, but now I'm going to C++, and I got this error that I don't know how to resolve. I'm using Microsoft Visual C++ 6/ SP 5 on XP Professional. When I complile its ok I got no...
  20. daniloa

    Results in same page...

    Hy people, I have a problem and I don't what I have to do to get out him. First I'm a begginer ASP developer. Well my question is: I have a page with many text fields and a select and a textarea at side of this select. Ok I need that when the user click (or select) some option of the select...

Part and Inventory Search

Back
Top