i was confused because i used enterprise library 1.1(june 2005) and was not sure that will it work with sql server 2005. thnx for reply
asif m hmood
Posts
-
SQL server 2005 with Enterprise Library 1.1 -
SQL server 2005 with Enterprise Library 1.1hi , i have build an ASP.net application using Enterprise library 1.1. Curremtly i was using sql server 2000. Now i have to take my DB to sql server 2005. my question is that my current application will work with SQL server 2005??? Is enterprise library 1.1(june 2005) work well with SQL server 2005????? please reply soon...
-
SQL server 2005 with Enterprise Library 1.1hi , i have build an ASP.net application using Enterprise library 1.1. Curremtly i was using sql server 2000. Now i have to take my DB to sql server 2005. my question is that my current application will work with SQL server 2005??? Is enterprise library 1.1(june 2005) work well with SQL server 2005????? please reply soon...
-
TAPI with C#well, there are two basic parts of this product, first is to connect 2 pcs using tapi via tlephone line, 2nd is to make a messaging protocol which will connect ur aplication to the dtabase server on remote system. there should also a service running on remote system(server) which will recieve messages. i can help u in 1st part that how can u connect to remote system using TAPI in c#. in few days i'll upload an article on codeproject regarding this. in meanwhile u can mail me n i can help u in this regard :) so cheers
-
upload indicatorthere is no problem with gif itself, its workin fine if used on an open page, yes i hav onclick event on submit button , in the handler i set the visibility of gif to visible, but its not working :( , plz help Knowledge is Power
-
upload indicatorwell i just want to show an animated gif while page is ulpoaading a file , i hav use the "visibility" of Style for a layer but the gif doesnt animate after clicking submit , any one hav any idea wats goin wrong!!! i m using PHP as server side n using 'file' field for upload.
-
Login Failed : user ASPNET (MSDE)i have MSSql Desktop engine installed and i m connecting to a database from ASP.net page. i m using oleDBconnection but when i Open() connection it gives me exception "Login failed 'MATRIX\ASPNET' " where Matrix is machin name. it is working well in Windows form but only givin problem in webforms , can any body tell wats wrong with it , i m using same connection string as for windows forms.
-
Login Failed : user ASPNETi have MSSql Desktop engine installed and i m connecting to a database from ASP.net page. i m using oleDBconnection but when i Open() connection it gives me exception "Login failed 'MATRIX\ASPNET' " where Matrix is machin name. it is working well in Windows form but only givin problem in webforms , can any body tell wats wrong with it , i m using same connection string as for windows forms.
-
TAPI givin link errori m developing a small telephony app usig TAPI. to intitialoze tapi i have to get ITTAPI ptr. ITTAPI *gpTapi; HRESULT res = CoInitialize(NULL); CoCreateInstance(CLSID_TAPI,NULL,CLSCTX_INPROC_SERVER,IID_ITTAPI,(LPVOID *)&gpTapi); gpTapi->Initialize(); i have added tapi3.h and also give link to Uuid.lib. At compile time it gives no error but at link time it gives error "unresolved symbol _CLSID_TAPI" and same error for "IID_ITTAPI". any one hav idea wats hapening. how can i find CLSID for TAPI and IID for ITTAPI. plz help
-
CLSID for TAPIi m developing a small telephony app usig TAPI. to intitialoze tapi i have to get ITTAPI ptr. ITTAPI *gpTapi; HRESULT res = CoInitialize(NULL); CoCreateInstance(CLSID_TAPI,NULL,CLSCTX_INPROC_SERVER,IID_ITTAPI,(LPVOID *)&gpTapi); gpTapi->Initialize(); i have added tapi3.h and also give link to Uuid.lib. At compile time it gives no error but at link time it gives error "unresolved symbol _CLSID_TAPI" and same error for "IID_ITTAPI". any one hav idea wats hapening. how can i find CLSID for TAPI and IID for ITTAPI. plz help
-
COM givin problem in ASPYes , u r right, i want to provide some info to method and get processed info from method. i have used [out,retval] , it works fine but i want to get multiple variables out of method that's y using [in,out]. i m using VB Script. well is there any addressof(var) operator exists in VB script. if so do tell me or any equivalent function to do this.
-
COM givin problem in ASPi have used [in,out] in my COM method but when i call my method from ASP it gives error "Type mismatch: methodname" . i have also used CInt() for my int variables , but now it shows nothin when i respons.write my variable. e.g In COM power([in]int num,[in] int pNum,[in,out] int *res) In ASP , i calling it myObj.power num1,num2,CInt(num3) 'this gets nothin in num3 if i go like that myObj.power num1,num2,num3 'gives error Type Mis-match:power aby idea abt this????
-
COM object and ASPi m using PWS on win98. i have made a COM object and then i used it in my ASP page. But when i used my COM object in ASP after that i can't build same COM object again without restarting my machine.it gives linkin error "Can't open .dll to change". Any one can help me so that i dont have to restart my machine. and second question is how can i return multiple values by reference from COM object to ASP page when i use it in ASP. any one has any idea?????
-
Converting Project from VS 7.0 to VS 6.0hi well i want to convert a project that was built in Visual Studio 7.0 to the project of Visual studio 6.0, is there any uitility that allows to do so, or any1 has idea ?????
-
creating CWnd using Createthe following code giving me runtime error but ignoring runtime error shows the desired window. wat is bad in the code n if any better solution using CreateEx() CWnd* pWnd = new CWnd; pWnd->Create(/*WS_EX_OVERLAPPEDWINDOW ,*/AfxRegisterWndClass(0,AfxGetApp()->LoadStandardCursor(IDC_ARROW),GetSysColorBrush(COLOR_WINDOW),NULL), "Hello", WS_POPUPWINDOW |WS_VISIBLE /*| WS_CAPTION*/, CRect(700, 480, 800, 580), this,1234); i m using this code in a button handler of dialog base application. any one can help
-
how to use flash windowwhen a user signIn into MSN messenger , there comes a window at the right bottom of the screen, how can i build this, plz help, or any webpage ragarding help on this Knowledge is Power
-
assembly language in turbo Cthis is code of gotoxy, i have made in c++ using assembly, but it is not working and giving an error of "invalid operand". plz help!!!! void _gotoxy(int row,int cols) { asm MOV AH,0x2 asm MOV DH,row// problem is here,if we use asm MOV DL,cols//constant here, it works asm MOV BH,0x0 asm INT 0x10 } void main() { clrscr(); _gotoxy(15,15); printf("x"); getch(); }
-
using assembly in turbo c++, helpthis is code of gotoxy, i have made in c++ using assembly, but it is not working and giving an error of invalid operand. plz help!!!! void _gotoxy(int row,int cols) { asm MOV AH,0x2 asm MOV DH,row// problem is here,if we use asm MOV DL,cols//constant here, it works asm MOV BH,0x0 asm INT 0x10 } void main() { clrscr(); _gotoxy(15,15); printf("x"); getch(); }
-
maximum storage in int variableshow can i store 30 digits number in an int variable. if it is possible, then plz help me regarding this problem.