all groups > visual c > january 2004 > threads for january 29 - 31, 2004
Filter by week: 1 2 3 4 5
Can we get notification of opening any site ??..
Posted by Jigar Mehta at 1/31/2004 4:05:23 PM
Hye,
I am trying to get notification of any browser request... (not only that
of the local server.. e.g. http://localhost/. so ISAPI filters will not be
the right way to solve problem)
So, whenever any request like (http://www.yahoo.com/) is made in IE, I
want my DLL routine or my EXE... more >>
Once again, attributes for MC++ properties
Posted by Edward Diener at 1/31/2004 2:44:14 PM
In MC++ properties are syntactically created through member functions
declared with the __property keyword and using set_ and get_ naming
conventions. Given that a property is specified in this way, how does one
set an attribute for a property ? Does one have to precede both the set_XXX
and get_... more >>
[ANN] Firebird .NET Data Provider 1.5 Release Candidate 4 released
Posted by Carlos_Guzmán_Álvarez at 1/31/2004 11:29:13 AM
Hello:
Firebird .NET Data Provider 1.5 Release Candidate 4 available for download.
Release Changes:
- Bug fixes.
---------------------------------------------------
You can read the Changelog at:
https://sourceforge.net/project/shownotes.php?release_id=213908
You ... more >>
How to get Global Notification of browser request...
Posted by Jigar Mehta at 1/30/2004 6:21:28 PM
Hye,
I am trying to get notification of any browser request... (not only that
of the local server.. so filters will not be the right way to solve problem)
So, whenever any request like (http://www.yahoo.com/) is made in IE, I
want my DLL routine or my EXE should be called.. So, how to ... more >>
Declaring a parameter as a REF or OUT ARRAY
Posted by Michael Gunter at 1/30/2004 5:43:26 PM
Good afternoon,
I am creating an interface in C++ using the managed extensions. I need to
declare a parameter as an out string[] (as would be represented in C#). Does
anyone know how to do this? Declaring out parameters generally takes the
form:
[Out] <type> __gc* name
and arrays gen... more >>
IDE Replace in Files doesn't work
Posted by Jan Bares at 1/30/2004 3:58:50 PM
Hi,
I have .NET 2003. When I run "Find in Files" command, everything works as
expected. However when I run "Replace in Files" with the same settings a and
press Find Next, I get: "Look in: A specified directory or file is not
available or does not exist."
There is nothing special in my settin... more >>
rs232 synchronization issues at 115200
Posted by Peter Hans at 1/30/2004 3:26:05 AM
Hi,
I developed two applications to test a flush() method in my application, but I am having some problems when running it at high baud rates (115200)
I connected two computers using a cross-talk cable and wanted to test if all data sent from application 1 was correctly received by application 2... more >>
How to shiled or redirect the output of a console application?
Posted by booker at 1/30/2004 1:07:28 AM
Hi,
As i known,all the c++ compiler under windows platform are of console
application.
I'm really curious why when they are called by their native IDE(borland
c++ ide,visuall c++ ide etc),their console window will not popup and their
text ouput is redirect to the ouput window of the IDE... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
newline format control in richtextbox
Posted by D Steward at 1/29/2004 10:31:06 PM
I can't seem to add a newline (/n) to get a richtextbox control to display text on successive lines. The text that I type is overwritten. How do I remedy this
My example
richTextBox->Multiline = true
richTextBox->Text = S"First line /n"
richTextBox->Text = S"Second line"
Thanks
DAS... more >>
VS7.1: No member function pointer call possible?
Posted by Axel Dahmen at 1/29/2004 6:33:58 PM
Hi,
I can't get to compile the following:
struct A
{
A(void);
bool fn(void);
bool (A::*pfnc)(void);
};
A::A(void) : pfnc(fn) {}
bool A::fn(void) {return true;}
int _tmain(int argc, _TCHAR* argv[])
{
A a;
(a.*pfnc)();... more >>
VS.NET Stand alone .exe problem - msvcr71.dll error
Posted by Sara Shoemaker at 1/29/2004 6:24:31 PM
I am having problems creating a stand-alone Windows app.
I am using a .vcproj file that was translated from a Qt project file using
the Qt
plug-in. My problem is in getting it statically linked to the Windows
libraries.
After Googling extensively and getting .NET to generate a sample proje... more >>
NoStepInto on .NET 7.1
Posted by Jan Bares at 1/29/2004 4:38:21 PM
Hi,
The NoStepInto feature seems not to work under the latest VS.NET 7.1. I even
used regmon and there was no access to 7.1\NativeDE registry key. Does it
work for you?
Regards, Jan
... more >>
Source code to resize jpeg
Posted by Mihajlo Cvetanovic at 1/29/2004 1:25:50 PM
After a half hour inet search I'm looking for a link here. Where can I
find a cpp source code for in-memory jpeg resizer? Thanks.
... more >>
illegal call of non static function
Posted by Taptu¶ at 1/29/2004 1:18:36 PM
Hi
I have a problem. I have a function :
void for3::drzewo() {
m_lista.DeleteAllItems();
m_li.GetImageList();
goi.GetImageCount();
goi.SetBkColor(RGB(0,0,0));
goi.Add(nowe_ikony.ExtractIcon(0));
goi.SetBkColor(RGB(0,0,0));
goi.Add(nowe_ikony.ExtractIcon(1));
goi.SetBkColor(... more >>
Socket connection c++.net Help me please
Posted by alisabasicetf NO[at]SPAM hotmail-dot-com.no-spam.invalid at 1/29/2004 7:59:49 AM
Please help me, I have to make socket connection between server and
more than one client on some port. Is it possibly? I make socket
between server and one client, but more then one is problem. I know
that I have to put connected clients in some arraylist but how to
accept them, and how to commu... more >>
|