 |
|
 |
i want to really understand how program works, first i tried running it with visual studio 2008 on windoows 7, but all i have is errors, so much that the it will not even create the .exe so how will do, please i really need this.
thanks for your help.
thanks.
|
|
|
|
 |
|
 |
cAN I PLEASE HAVE A STEP BY STEP PROCES OF HOW TO INSTALL THIS ON MY COMPUTER I HAVE DOWNLOADED THE FILE BUT CAN ONLY OPEN WITH NOTEPAD ON WINDOWS 7 INTERNET EXPLORER 9 64BIT SYS :p
MANY THANKS
|
|
|
|
 |
|
 |
cAN I PLEASE HAVE A STEP BY STEP PROCES OF HOW TO INSTALL THIS ON MY COMPUTER I HAVE DOWNLOADED THE FILE BUT CAN ONLY OPEN WITH NOTEPAD ON WINDOWS 7 INTERNET EXPLORER 9 64BIT SYS :p
MANY THANKS
|
|
|
|
 |
|
 |
I need to develop software and add in website which is same like a bit of skype. From this client can chat and voice chat with owner of website. Is it possible?
|
|
|
|
 |
|
 |
I downloaded and successfully rebuilt all version 6.00 libraries. But when I tried to rebuild the demo application I got the following errors:
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_cleanup_dcraw
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _htons@4
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_flip_index
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_gamma_lut
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_stretch
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_convert_to_rgb
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_fuji_rotate
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_recover_highlights
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_blend_highlights
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_median_filter
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_ahd_interpolate
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_ppg_interpolate
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_vng_interpolate
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_lin_interpolate
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_pre_interpolate
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_scale_colors
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_subtract
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_bad_pixels
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_remove_zeroes
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_merror
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_kodak_ycbcr_load_raw
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_identify
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_parse_command_line_options
cximage.lib(ximaraw.obj) : error LNK2001: unresolved external symbol _dcr_init_dcraw
../bin/demod.exe : fatal error LNK1120: 24 unresolved external
Any ideas on what I should do to get red of these errors?
Mustafa
|
|
|
|
 |
|
 |
help needed regarding voice chat over lan
|
|
|
|
 |
|
 |
I tried on this example but unable to talk through this example, I followed the instructions given on this page.
Kindly help me on this example, and also suggest me to develop a simple voice chat application
Introduction
This is a simple voice chat program implemented in an ActiveX control
(OVoiceChatt Control) using windows sockets in non compressed PCM
format. You just need to give your name and the IP address of the computer on
which you want to establish a voice chat session.
There is a simple test application (OVoiceChattClient) which has implemented
the control.
Run the OVoiceChatClient.exe and enter you name and the ip address of the
computer same application should be running on that computer as well. .A request
for the voice chat goes to that computer and if that person accepts it then the
voice chat starts.
To use in a program.
Below is some sample code that demonstrates using the control in your
code.
In the header: COVoiceChatt m_ctlVoice;
In the implementation: BEGIN_EVENTSINK_MAP(COVoiceChattClientDlg, CDialog)
ON_EVENT(COVoiceChattClientDlg, IDC_OVOICECHATTCTRL1, 1 , \
OnGetVoiceInvitation, VTS_BSTR VTS_BSTR)
ON_EVENT(COVoiceChattClientDlg, IDC_OVOICECHATTCTRL1, 2 , \
OnGetReqStatus, VTS_I4)
ON_EVENT(COVoiceChattClientDlg, IDC_OVOICECHATTCTRL1, 3 , \
OnGetVoiceEndNoticeOvoicechattctrl1, VTS_NONE)
END_EVENTSINK_MAP()
void COVoiceChattClientDlg::OnGetVoiceInvitation(LPCTSTR ip, LPCTSTR nick)
{
m_ip=ip;
CString str=nick;
str+=" wants to have voice chat with you";
if(AfxMessageBox(str,MB_YESNO)==IDYES)
{
m_ctlVoice.OVoiceInvStatus(1,ip);
}
else
m_ctlVoice.OVoiceInvStatus(0,ip);
}
void COVoiceChattClientDlg::OnGetReqStatus(long status)
{
if(status==0)
AfxMessageBox("request rejected");
else
{
m_strStatus="Connecting";
UpdateData(FALSE);
}
}
void COVoiceChattClientDlg::OnButton1()
{
m_ctlVoice.OVoiceInit();
}
void COVoiceChattClientDlg::OnButtonEnd()
{
m_ctlVoice.OVoiceEnd();
}
void COVoiceChattClientDlg::OnGetVoiceEndNoticeOvoicechattctrl1()
{
AfxMessageBox("Voice Conversation Has Been Ended");
}
-- modified at 8:32 Thursday 4th May, 2006
|
|
|
|
 |
|
 |
Help Please
1. how check cd writter (how many copy Writted)
2. how check the printer(how many pages prited)
3. how to find how many MB download from internet
|
|
|
|
 |
|
 |
These questions are unrelated to the article above.
You would be best served to select a language / technology trhat you plan to implement these checks in and then post a question in that language/technology's message board.
'--8<------------------------
Ex Datis:
Duncan Jones
Merrion Computing Ltd
|
|
|
|
 |
|
 |
i would like to add some encryption (DES encryption) to this application,
can i locate the encryption source code to this voice chat source code?
where?
thanks
best regards
|
|
|
|
 |
|
 |
Hi
I compiled and ran it with VS.Net and everything sounds good. But the voice is completely shaking and has a poor quality. I tested it on 2 computers in a LAN. Is it the way it should be?
Thanks
Sohail
|
|
|
|
 |
|
 |
thank you georgi,
for your source code (VoIP Application), now i little bit understand about direct sound programming!
thanks man!
|
|
|
|
 |
|
 |
Hi Friend,
I try to compile your code, but there were some build errors.
I have no free time to fix them, but tell me please do you use 11KHz sound instead of 8KHz, and UDP or something else.
I'm trying to clear my VoIP application code and to make it more reliable.
Regards,
Georgi
|
|
|
|
 |
|
 |
errors same as:
error LNK2019:cannt resolve symbol "__imp__WaveOutWrite@12" in funtcion "public:void __thiscall COSoundOutput::OpenOutput(void)(?OpenOutput@COSoundOutput@QAEXXZ"),etc.
which LIB is needed
anyone give me a suggestion...great...
ZongBao Lu
|
|
|
|
 |
|
 |
WinMM.lib
|
|
|
|
 |
|
 |
i need help regarding voice chat on LAN,can anybody help me?
|
|
|
|
 |
|
 |
i m writing voice chat application , n need help , can anybody help me??
Saima
|
|
|
|
 |
|
 |
If you do, just add this code to the OSoundInput.cpp file.
#pragma comment(lib, "winmm.lib")
(this is only for the OVoiceChatt, not for OVoiceChattClient)
This code is worth debugging, keep on going man!
___________________________
Where do you want to go?
|
|
|
|
 |
|
 |
can you send me a voicechat code(VB or C++) to me at nhattruong203@yahoo.com
thank for your help
|
|
|
|
 |
|
 |
HI,
Just a questrion, how shall i include the OCX component to an win32 App.
I get an error in VC 6 adding it to a win32 APP.
"you only can add the OCX control to project that are supported by the Classwizard"
Do you know how can i do that??
Marcos
Thanks in advance.
|
|
|
|
 |
|
 |
when i run this voice chat appln i face the following link errors
-------------------Configuration: OVoiceChatt - Win32 Unicode Release--------------------
Compiling...
OVoiceChatt.cpp
Linking...
Creating library ReleaseU/OVoiceChatt.lib and object ReleaseU/OVoiceChatt.exp
OSoundInput.obj : error LNK2001: unresolved external symbol __imp__waveInStart@4
OSoundInput.obj : error LNK2001: unresolved external symbol __imp__waveInAddBuffer@12
OSoundInput.obj : error LNK2001: unresolved external symbol __imp__waveInPrepareHeader@12
OSoundInput.obj : error LNK2001: unresolved external symbol __imp__waveInOpen@24
OSoundInput.obj : error LNK2001: unresolved external symbol __imp__waveInGetDevCapsW@12
OSoundInput.obj : error LNK2001: unresolved external symbol __imp__waveInGetNumDevs@0
OSoundInput.obj : error LNK2001: unresolved external symbol __imp__waveInUnprepareHeader@12
OSoundInput.obj : error LNK2001: unresolved external symbol __imp__waveInReset@4
OSoundInput.obj : error LNK2001: unresolved external symbol __imp__waveInStop@4
OSoundInput.obj : error LNK2001: unresolved external symbol __imp__waveInClose@4
OSoundOutput.obj : error LNK2001: unresolved external symbol __imp__waveOutWrite@12
OSoundOutput.obj : error LNK2001: unresolved external symbol __imp__waveOutPrepareHeader@12
OSoundOutput.obj : error LNK2001: unresolved external symbol __imp__waveOutOpen@24
OSoundOutput.obj : error LNK2001: unresolved external symbol __imp__waveOutGetDevCapsW@12
OSoundOutput.obj : error LNK2001: unresolved external symbol __imp__waveOutGetNumDevs@0
OSoundOutput.obj : error LNK2001: unresolved external symbol __imp__waveOutUnprepareHeader@12
OSoundOutput.obj : error LNK2001: unresolved external symbol __imp__waveOutClose@4
OSoundOutput.obj : error LNK2001: unresolved external symbol __imp__waveOutReset@4
OSoundOutput.obj : error LNK2001: unresolved external symbol __imp__waveOutPause@4
ReleaseU/OVoiceChatt.ocx : fatal error LNK1120: 19 unresolved externals
Error executing link.exe.
OVoiceChatt.ocx - 20 error(s), 0 warning(s)
Please help
Dharani babu
|
|
|
|
 |
|
 |
--------------------Configuration: OVoiceChatt - Win32 Unicode Release--------------------
Compiling...
StdAfx.cpp
Compiling...
OConnected.cpp
OProcess.cpp
OServer.cpp
OSoundInput.cpp
D:\음성채팅자료\VoiceChat(pcm)\OVoiceChatt\OSoundInput.cpp(84) : error C2664: 'CreateEventW' : cannot convert parameter 4 from 'char [18]' to 'const unsigned short *'
Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
OSoundOutput.cpp
D:\음성채팅자료\VoiceChat(pcm)\OVoiceChatt\OSoundOutput.cpp(58) : error C2664: 'CreateEventW' : cannot convert parameter 4 from 'char [19]' to 'const unsigned short *'
Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
OVoiceChatt.cpp
D:\음성채팅자료\VoiceChat(pcm)\OVoiceChatt\OVoiceChatt.cpp(32) : error C2664: 'MessageBoxW' : cannot convert parameter 3 from 'char [10]' to 'const unsigned short *'
Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
OVoiceChattCtl.cpp
OVoiceChattPpg.cpp
OVoiceClient.cpp
OVoiceServer.cpp
Generating Code...
Error executing cl.exe.
OVoiceChatt.ocx - 3 error(s), 0 warning(s)
very good
|
|
|
|
 |
|
 |
You can add char convert macro to deal this problem.
just like this:
AfxMessageBox(_T("Cannot determine sound card capabilities !"));
|
|
|
|
 |
|
 |
Respected sir, i am getting errors on building the ovoicechatt.ocx file.please send me the whole voice chat project without errors and in running condition as i am in much need of it for my project work.i will be very happy if you send me the whole project.please sir,it's very urgent for me.send me today itself if possible. thanking you, vignesh vignesh
|
|
|
|
 |
|
 |
HOW I CAN IMPLEMENT VOICE CHAT IN VB6.0
|
|
|
|
 |