Hello,
Windows Server 2008 , Server Manager- File Services-Share and Storage Management-File Server Resource Manager Right click - Configure options- Email Notifications tab
I have already configured what I need but when I write for example smpt.google.com
in the log it writes UNABLE TO CONNECT TO THE REMOTE SERVER
I have been through…
I have a PDC'09 Acer 1420p tablet with a multi-touch screen. Sometimes when I rotate the display, the multi-touch surface input does not rotate to match. The track pad rotates just fine, but not the screen input. Has anyone else run into this problem on the PDC laptop or any other machine? It uses Intel GMA 4500, running Windows 7 64.
Hello, I have Windows serrver 2008 and more computers in it domain.
all i need is to run program from server in all comps , for example install kaspersky for all comps.
can i do it?
thanks
Hi.
string selectSql = "update " + table + " set state_" + mode + "_id=1 WHERE stoping_" + mode + " < current_date;";
when i call current_date, it return yyyy-MM-dd format, but i want to return dd.MM.yyyy format, how can i do that. please help. my program works fine when i am trying
string selectSql = "update " + table + " set state_" +…
Hello, I have Windows serrver 2008 and more computers in it domain.
all i need is to run program from server in all comps , for example install kaspersky for all comps.
can i do it?
thanks
Let's say we have these four classes:
BinaryTree,
SplayTree (which is a sub-class of BinaryTree),
BinaryNode and
SplayNode (which is a sub-class of BinaryNode).
In class BinaryTree I have 2 Find functions, like this
bool Find(const T &) const;
virtual Node<T> * Find(const T &, Node<T> *) const;
and in SplayTree I…
Hello, i have c++ DLL and 1 program (not code) , that program calls 1 function from DLL, i know only name of that function, now all want to call that function from my application(C#). Is it possible?
Thanks
if I erase an element from an std::set and pass the key, not the iterator, and the key isn't in the set right now, will an exception be thrown? The thing is every second sentence in the MSDN documentation says: "this does blah blah, but it doesn't conform to the standard". So I need to know the standard behaviour. I just couldn't find it in…
Hey,
I'm experiencing some problems with breaking my code to reusable parts using templates and inheritance. I'd like to achieve that my tree class and avltree class use the same node class and that avltree class inherits some methods from the tree class and adds some specific ones. So I came up with the code below. Compiler throws an…
Hi,
I have this code for Node rotation and in a line which is marked something happens and I don't really know what and why :).
//Test case
30
\
16
/
29
RotationRight(node->mParent); //call
template<class T>
void SplayTree<T>::RotationRight(SplayNode<T> *&node) const
{
SplayNode<T> *left…