Hi, What is the size of content database range in sharepoint 2010? Before that I heard 4 GB (if required we can extend it) and the max range is 200 GB . which observation is correct, please Thanks.
:~ Failure is Success If we learn from it!!:~
Hi, What is the size of content database range in sharepoint 2010? Before that I heard 4 GB (if required we can extend it) and the max range is 200 GB . which observation is correct, please Thanks.
:~ Failure is Success If we learn from it!!:~
Hi All I new to sharepoint 2010 , I want to find no of visitors in website using sharepoint 2010. Please provide me your suggestion,, Thanks in advance!
:~ Failure is Success If we learn from it!!:~
Hi All I need your suggestion for my following questions. Recently i have buillt one standalone desktop software application and my question is , 1. Application should be installed only one pc. 2. Once installed single PC it wont work/install otherPC/same PC next time. 3. We cannot used database for that application, also internet connection. Please guide me how to proceed ! Thanks N Advance
:~ Failure is Success If we learn from it!!:~
#include "stdafx.h" #include int main() { /*int i, c, cp; for(cp=c=getchar(), i = 0; c != EOF; c = getchar() ) { if ( c == cp ) { i++; } else { printf("%d%c", i, cp); i = 1; } cp = c; } printf("%d%c", i, cp);*/ /* int i, c, j; while( scanf("%d%c", &i, &c) == 2 ) 1 { for(j=0; j < i; j++) { printf("%c", c); } } }
:~ Failure is Success If we learn from it!!:~
http://sites.google.com/site/datacompressionguide/shannon-fano[^] http://www.data-compression.info/[^]
:~ Failure is Success If we learn from it!!:~
Hi All, I create one sample win32 console application, which that application working for timer basis. Example : If the user gives the stared work is 1:00 AM and End Work is 3:30 AM and the current time is 1:30 AM then application will be in active till 3:30 AM. It automatically goes to idle state, if the system time crosses the end time that have been configured. The application will start again with in the timeframe on next day and so on. how to achieve this application using threading please share your valuable thoughts Thanks n advance Raju K
:~ Failure is Success If we learn from it!!:~
Hi All I need to create Multiple instance of Windows Service ,how its possible? Thanks Raju
:~ Failure is Success If we learn from it!!:~
modified on Monday, July 26, 2010 7:30 AM
Hello sirs 1.Most recently we are creating Tiff compression , When I compressed the TIFF Image using LZW which is opened Microsoft document Imaging / Microsoft Picture manager but the Compression ratio is such big as compared to JPEG / Old Style JPEG. 2. When I used JPEG Compression mode , the compression ratio is good but not opened Microsoft document Imaging / Microsoft Picture manager. 3. But When I used OLD JPEG Compression mode , the compression ratio is good and also its opened Microsoft document Imaging / Microsoft Picture manager...[testing in one sample file] But I dont know how to create OLD style JPEG compression mode in Tiff Image. This is my problem Please replay me ! Thanks
:~ Failure is Success If we learn from it!!:~
hello Sirs I have one project files which have Makefile.vc but it don't having the .sln / .dsw file. I can able to build the source file via visual studio command prompt using build commands. But i need to Create solution for this project what i can do ? Please replay me Thanks
:~ Failure is Success If we learn from it!!:~
Hello Sir What is the main difference of static variable and Global Variable? My Suggestion is : Static variable accessing only through out the class and accessing need for scope resolution operator Global variable accessing through out the program and accessing the class object. Sir, My statements are correct or not
:~ Failure is Success If we learn from it!!:~
hello sir This is my program
char block\[3\];
block\[0\] = 'a';block\[1\] = 'a';block\[2\] = 'a';
cout << block;
out of this program aaa╠╠╠╠╠╕ ↕ why this kind unknown character is printing ...
:~ Failure is Success If we learn from it!!:~
try using odbc ..
:~ Failure is Success If we learn from it!!:~
thanks for your replay ..i solved it
:~ Failure is Success If we learn from it!!:~
Hello Sir Currently i have create the pdf document from JPEG images , i have create the pdf document is successfully my question is , when i was create the pdf document margin is same , but i need to create separate margin , i dont know how to do that ? please help me sirs this is my JPEG2PDF file
:~ Failure is Success If we learn from it!!:~
modified on Wednesday, April 28, 2010 2:02 PM
Hello Sirs Is it possible to convert FFMEPG on Visual Studio ? thanks raju
:~ Failure is Success If we learn from it!!:~
Hello Sirs, I have compile my sample program in mingw with msys , i dont know how to create configure file and make file in my system i have installed ms visual studio but i need to work with under mingw with msys for Example,
#include int main()
{
printf ("Testing \n");
return 0;
}
Thanks
:~ Failure is Success If we learn from it!!:~
modified on Tuesday, April 20, 2010 7:59 AM
try this
char *s = new char;
:~ Failure is Success If we learn from it!!:~
Need Clear Explanation ........
:~ Failure is Success If we learn from it!!:~
Hello Sir Currently i am doing one client - server program, when i connect client - server its shows error code 10049 server code :
WSADATA wsadata;
DWORD version = MAKEWORD (2,2);
int Result , Error\_Code;
CString Error\_Result;
Result = WSAStartup( version,&wsadata);
if ( Result != 0 )
{
Error\_Code = WSAGetLastError();
Error\_Result.Format ("%d",Error\_Code) ;
MessageBox ( " Socket Opration Failed :"+Error\_Result ) ;
}
else
{
// Socket Creation
SOCKET server\_Socket;
if ( (server\_Socket = socket ( AF\_INET,SOCK\_STREAM,IPPROTO\_TCP) )== SOCKET\_ERROR )
{
Error\_Code = WSAGetLastError();
Error\_Result.Format ("%d",Error\_Code );
MessageBox ("Server Socket Creation is Failed : "+Error\_Result);
}
else
{
// Initialize Server Socket Structure
SOCKADDR\_IN serverStructure;
int Port = 808;
serverStructure.sin\_family = AF\_INET;
serverStructure.sin\_port = htonl (Port);
serverStructure.sin\_addr.S\_un.S\_addr = htonl(ADDR\_ANY) ;
// Bind the Server Socket
Result = bind ( server\_Socket,(SOCKADDR\*)&serverStructure,sizeof(serverStructure));
if ( Result==0 )
{
Result = listen(server\_Socket,5);
if (Result!=0)
{
Error\_Result.Format ("%d",WSAGetLastError());
MessageBox("Socket listen is Failed :"+Error\_Result);
}
else
{
// Create New Socket
SOCKET ClientSocket;
if ( (ClientSocket = accept (server\_Socket,NULL,NULL) ) ==INVALID\_SOCKET )
{
Error\_Result.Format ("%d",WSAGetLastError());
MessageBox ("Socket Accept is Failed :"+Error\_Result);
}
client code:
WSADATA wsadata;
int Result\_Client;
CString strClient\_Result;
DWORD version = MAKEWORD (2,2);
Result\_Client = WSAStartup( version,&wsadata);
if (Result\_Client==0 )
{
// Create Client Socket
SOCKET ClientSocket;
if ( (ClientSocket = socket (AF\_INET,SOCK\_STREAM,IPPROTO\_TCP)) != INVALID\_SOCKET)
{
// Initialize Client Socket structure
int Port = 808;
SOCKADDR\_IN ClientSocketStructure;
ClientSocketStructure.sin\_family = AF\_INET;
ClientSocketStructure.sin\_port = htonl(Port);
ClientSocketStructure.sin\_addr.S\_un.S\_addr =inet\_addr("192.168.1.21") ;
Result\_Client = `**connect(ClientSocket,(SOCKADDR*)&ClientSocketStructure,sizeof(ClientSocketStructure));**`
if ( Result\_Client == 0)
{
try . odbc
:~ Failure is Success If we learn from it!!:~