hi, i need to know how to run crystal reports on a machine that dosn't have .Net full pakage , the case i have a program that have many reports that i need it to be installed on machine that have .Net Framework but the crystal reports dosn't run telling me that the keycodeV2.dll not found or not the correct version so can any one help me ??? Ramez Ernest
SherKar
Posts
-
Crystal Reports distribution -
Help Plz in that e-mail clienthi, i have a problem regarding this piece of code it throw an exception ("time out expired ") can anyone tell me why
try { // Write the request Stream reqStream = webRequest.GetRequestStream(); reqStream.Write(requestBytes,0,requestBytes.Length); reqStream.Close(); // Get a response HttpWebResponse webResponse=(HttpWebResponse)webRequest.GetResponse(); if (webRequest.HaveResponse) { // Handle returned cookies foreach(Cookie retCookie in webResponse.Cookies) { bool cookieFound = false; foreach(Cookie oldCookie in ccContainer.GetCookies(destination)) { if (retCookie.Name.Equals(oldCookie.Name)) { oldCookie.Value = retCookie.Value; cookieFound = true; } } if (!cookieFound) ccContainer.Add(retCookie); } // Handle redirection headers if ((webResponse.StatusCode == HttpStatusCode.Found) || (webResponse.StatusCode == HttpStatusCode.Redirect) || (webResponse.StatusCode == HttpStatusCode.Moved) || (webResponse.StatusCode == HttpStatusCode.MovedPermanently)) { WebHeaderCollection headers = webResponse.Headers; return SendRequestTo(requestBytes,new Uri(headers["location"]),credential); } // Read response StreamReader stream = new StreamReader(webResponse.GetResponseStream()); string responseString = stream.ReadToEnd(); stream.Close(); return responseString; } // No response throw new ApplicationException("No response received from host."); } catch(WebException e) { // Error occured Trace.WriteLine("Exception occured " + e.Message); throw new ApplicationException("Exception occured while sending request.",e); }
-
e-mail Client problemshi, i Face 2 problems : 1- when i try to connect through my e-mail client it permits some mails to connect either don't i donno why ? 2-
string type = mailBoxNode.SelectSingleNode"descendant::hm:special",context).InnerText; string nameUrl = mailBoxNode.SelectSingleNode"descendant::D:href",context).InnerText; int visibleCount = Int32.Parse(mailBoxNode.SelectSingleNode("descendant::D:visiblecount",context).InnerText); int unreadCount = Int32.Parse(mailBoxNode.SelectSingleNode("descendant::hm:unreadcount",context).InnerText);
i use this code to get the data about my folders but i need the data of the mails it self i donno what to write for the xpath can any help me please thanks in advance -
Barcode standardshi, i have a big problem concerning reading the Barcode , As after i design it it fails at the test as it dosn't meets the standards so if anyone has any idea about a refrence to that standards plz send it to me thanx in advance
-
strange problem In redirection?i am working on e-payment site and i use string concatination method to send the complete url with the products
StrRedirect="https://www2.2checkout.com/2co/buyer/purchase?sid=215387"; if(CheckBox1.Checked) { //StrRedirect=StrRedirect+"&total=35&cart_order_id=12587529"; string Str="&product_id=5&quantity=1"; StrRedirect=StrRedirect+Str; } if(CheckBox2.Checked) { string Str="&product_id=4&quantity=1"; StrRedirect=StrRedirect+Str; } Response.Redirect(StrRedirect,true);
but this code send the url but not as i concatinated it it sends it the product ids first then the quantity wich are not applicable to site i send it the url what happened to the url and how it can be solved thanx in advance -
what is the web server?hii i want to know wt is the web server and how it can be started as when i start my app it says it can't be started and as the web server is not started thx
-
A problem in insert command?hi, here is the code i told u about
oleDbConnection1.Open(); int ActiveState=0; string Date=DateTime.Now.ToString(); string InsNew="insert into users(UserName,Password,FirstName,LastName,count,Email,StreetAddress,City,Country,Active,RegisterDate) values('"+TextBox3.Text+"','"+TxtBxPass.Text+"','"+TxtBxName.Text+"','"+TxtBxLName.Text+"','"+TxtBxYears.Text+"','"+TxtBXMail.Text+"','"+TxtBxAdd.Text+"','"+TxtBxCity.Text+"','"+TxtBxNow.Text+"','"+ActiveState+"','"+Date+"');"; oleDbDataAdapter2.InsertCommand.CommandText=InsNew; oleDbDataAdapter2.InsertCommand.ExecuteNonQuery(); oleDbConnection1.Close();
-
A problem in insert command?thx for ur concern and i'll send the code asap as it is not available now for me
-
A problem in insert command?hi , i have a problem in the insert command using oledbdataadapter when i use it it give me an error saying syntax error in insert into can any one suggest an idea plz thx
-
how to make local connection work on server?hi i made a local connection to accsess and i want to put the application on a server how can i deal with the connection ? 2nd- i have pages made in asp and i want to make code that inserts record in db using asp not asp.net how it can be done ?
-
deal with Aspbut if i want to receive certain parameter from the ASP how would it be ?? as link to something and i want to use the returned id from that link in the ASP.net
-
deal with Asphi, i want to know if i have previous site that was developed by ASP and i want to complete something depends on it but with ASP.Net can it work and if it cans how ? thx
-
deployment setupI want to make an installation package to run at any windows system that doesn't have a .net framework installed on it. I don't know how to include installation of .net framework in this package. Thanks for help.
-
Dll?hi does any one know how can i convert this code that is made by C++ in dll to C# also to be put in dll
#define DllExport __declspec( dllexport ) HHOOK h; DllExport extern LRESULT CALLBACK CallWndProc(int nCode,WPARAM wParam,LPARAM lParam) { switch(nCode) { case WM_SIZING: return 0; break; case WM_MOVING: return 0; break; default: return CallNextHookEx(h,nCode,wParam,lParam); } } DllExport extern void InstallHook() { h=SetWindowsHookEx(WH_CALLWNDPROC,CallWndProc,0,0); }
-
help in dllHHOOK h; LRESULT CALLBACK CallWndProc(int nCode,WPARAM wParam,LPARAM lParam) { switch(nCode) { case WM_SIZING: return 0; break; case WM_MOVING: return 0; break; default: return CallNextHookEx(h,nCode,wParam,lParam); } } void InstallHook() { h=SetWindowsHookEx(WH_CALLWNDPROC,CallWndProc,0,0); }
this code if made in mfc dll but i have 2 problems : 1- i dont know if the created DLL is created correctly or not 2- i used this DLL in another app and called InstallHook but a big msg appears said that there is no entry piont for the installhook in the dll if anyone knows anything plz reply me -
window messages hooking???no not my own app but an outside app that i have its handle
-
window messages hooking???hi, i want to to hook a certain msg for a window like moving or sizing, this window is standalone app and i have its handle is there any APIS help me do this ?
-
Direct X transformation?i mean by it the one which the mouse points to it
-
Direct X transformation?hi , i have a mesh model and i put it in many places in my app. using the world transformation and i want to detect which mesh is the pointed one but when i point to mesh it only detects the last mesh has been transformed .
-
Static Arraylist?((Offices)(OfficesNames[i])).OfficeAtt= new ArrayList(AllNodes); Offices ->class OfficesNames->array of object of offices officeAtt->arraylist have object of another class called attributes this line of code to intialize the arraylist of attributes of each office for(int i=0;i