Hi...... I am having problems while connecting to Vector CANdb database file in C#.Net. It gives an error "Object or provider is not capable of performing requested operation" So, how to achieve it? Thank you.
Niungareamit
Posts
-
Accessing CANdb Database file in C# -
Reading .dbc file in C#hi.... I want to access CABdb database file(.dbc) in C# and read the contents of the .dbc file. So how can I achieve this in C#3.0. Thanks in advance.
-
Generating C file using C#thanks for ur reply.. Basically I am doing a project in which i will be designing a GUI and from there by taking the input I want to generate the C code in a file with ".C" extension. I will be using a different compiler to compile that C File. So is it possible?
-
Generating C file using C#Hi... I want to develop a C File using C#3.0 which will create the header file with structures, enums, macros..and all other features of the C.. I want to develop a tool in which i have a GUI and i have to select the options from GUI and accordingly i have to create a C file for the same So is it possible in C#3.0?
-
C Compiler Using C#3.0Thanks for ur reply...But i m not getting what u r trying to tell me...can u please elaborate what u r trying to say? Thank You
-
C Compiler Using C#3.0Hi.......... I want to develop a C Compiler using C#3.0 So is it possible??? How should i go for this????
-
VB Script in word 2007i wil try. thanks....
-
VB Script in word 2007hi...... I am working on a project where i need to write a vb Script in word 2007 and also i wantto add the button in word 2007 and even for the same.. So how should i go for this????
-
About Public Arrays in VBhi.. I m working in VB in Visual Studion .Net. In my project I have two forms. I m declaring a public array in form1 which i want to use in 2nd form (form2) also. On form1 i have a button which when clicked form2 will be shown. I want that contents of array in form1 should be acessible in form2 also. But i m facing the problem that how to open form2 on button click in form1 and use array of form1 in form2. So, Is there any solution for this???
-
File Upload control problemI have already tried it... but i am not getting an result..
-
File Upload control problemhi, I have File Upload Control inside a panel on my website.I have also set the default button for the Panel. When the control is on a browse button I want that when I click the enter key on a keyboard it should display the browse window, but I am not getting the result???? How should I go???
-
Default button in Panel control not workinghi, I am using an Panel control on my website. Inside the panel control I have various text boxes. I have validations for the textboxes. Also I have applied a master page to this web page. I have set the default button for this panel as submit button inside the panel. On master page I have another text boxes for user to log in. when I fill the data in the text boxes inside the panel completely or incompletely, default button should get clicked but it is not happening with my example,. I tried it by taking submit button outside the panel, then also it is not working. What should i do???????
-
FileUpload Problemhi, I have a file upload control on a website.I have given validations to this control. When I click on a browse button by a mouse it show a browse panel, but when i go through a keyboard and when a control is on a browse button and i press the enter key, it shows error message that i have given in validation control. how should i get the solution for this????
-
Link button problemsir, I have not written any code on On click event of link button I have set properties for Panel as follows AutoCollapse: False; AutoExpand: false; CollapseControlId : lnl_Advance(Link Button); Collapsed : true; scrollContents: false; suppressPostback: true; how should I go for the solution?????
modified on Friday, April 17, 2009 8:20 AM
-
Link button problemhi, I am using a link button as "Advance Search". When I click on this link button it show as Panel window for Advance Search. but when I right click on a link and click on "Open in new window" it gives an error...... Page can not be displayed..... Does anybody have solution for this?
-
ModalUpdateProgress - An UpdateProgress Control in Modal Popup Style Problesir,I have Ajax Toolkit installed in my system..
-
ModalUpdateProgress - An UpdateProgress Control in Modal Popup Style ProbleI have Downloaded a source code for this proble but when i run this application on my PC it is giving an error that "Element ModalUpdateProgress is not a known Element. This can occur if there is a compilation error in the website" So, I am not able to understand why it is giving such a problem? Does anybody know the solution for this????????? Please help me...
-
z-index ProblemHi, I am using an Update Panel. inside the Update Panel I vahe 5 DropDown List control for this Update panel i am using an UpdateProgress control of AJAX. In UpdateProgress control I have used div tag with z-index property. I want that when I run the application and choose any items from any DropDownList, an UpdateProgree should overlap the entire UpdatePanel. But i am not getting an output. So, If u have a solution for this, please Help me............
-
Custom Error PageHi, I am working on how to create an custom error page for application error. I have tried the following code I have one button on a page which generate an error on onClick event e.g. protected void ExceptionButton_Click(object sender, EventArgs e) { throw new Exception("Hello World!"); }I have Added a global.asax file and on Application_Error event i have written the following code: void Application_Error(object sender, EventArgs e) { Message.LastException = Server.GetLastError().GetBaseException(); string message = "Error Caught in Application_Error event\n" + "Error in: " + Request.Url.ToString() + "\nError Message:" +Message.LastException.Message.ToString() + "\nStack Trace:" + Message.LastException.StackTrace.ToString(); } But when i run the application and click on a button I got the error at line " throw new Exception("Hello World!");" My required otput is that instead of showing this error it should display the message that i have given in Application_Error event in global.asax file... but I am not getting an output. Can anybody help me???????
-
Custom Error pageThanks a lot .......