Thats what I thought, although @ microsoft express website they say: SQL Server 2005 Express Edition is the next version of MSDE and is a free, easy-to-use, lightweight, and embeddable version of SQL Server 2005. Free to download, free to redistribute, free to embed, and easy for new developers to use immediately.... What do they then mean by embeddable? Will look at Sqlite as well.. Regards, Tintin
TintinV3ck
Posts
-
embedding a sql DB in a win32 app -
embedding a sql DB in a win32 appI'm researching the possibilities of embedding a DB inside a windows form application. I have done this before with a access DB, but not a MS sql db. I noted that this might be possible using ms sql express, but does this create a sql server instance on the client's pc? I just want to be able to install the app on a clients pc without undergoing a sql 2000/2005 server setup. Is this possible, and how do i go about it? Thanx ion advance. Regards, Tintin
-
how to generate ATLAS postback (partial postback)Hi, I want to know how to generate an Atlas postback? I build controls dynamically on a page, and need a DOUBLE postback for the event handlers to work properly. So after ie. i changed a dropdown selection, it does partial postback, and then I want to generate another partial postback. How do i do that? ??OR?? is it possible to call an invisible button's click event inside the update panel through javascript or something? Plz help
Regards, Tintin
-
html to pdfseems like it would work, i keep getting an error at PDF.EndDoc() Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))
Regards, Tintin
-
html to pdfHi, Any ideas how not convert html string to pdf document and allow client to download? Without the pricetag of course!
Regards, Tintin
-
accessing client side source from server sideNo, .innerhtml doesn't seem to work. I've tried it with a
no success. However, putting in a hidden server field, and getting the innerhtml from the div in javascript works, BUT I get an "UNKNOWN ERROR" popup-window when trying to set the hid1.value = div's inner html! I tried setting .value = 'test'; WORKS FINE Why is that '''''heres some code'''' var strHTML = ""; strHTML = document.getElementById('<%=divTables.ClientID% ').innerHTML.toString(); alert(strHTML); //just a test document.getElementById('<%=hid1.ClientID%>').value = strHTML.toString(); //then it breaks. but if its a different string, it works please help
Regards, Tintin
-
accessing client side source from server sideHi, I'm trying to access client side innerhtml code from server side on postback. How do I do it. I've tried putting a div server tag around the code i need, and then saying divContent.innerhtml, but it doesn't work. Any suggestions? Thanx
Regards, Tintin
-
export to excel?Nope, unfortunately not. I'm looking for something similar to what www.spreadsheetgear.com provides. Only thing is it's not freeware. Their code enables you to build spreadsheets and allow download.
Regards, Tintin
-
export to excel?Hi, can anyone please tell me how to create an excel spreadsheet in asp.net application, with the ability to store multiple datatables/datasets in the same worksheet. Doesn't matter if it's automatic or if I manually have to set each cell's value, headers etc. And finally prompt the user to save(download) the file. Thanx
Regards, Tintin
-
Is mathematical possibility of 0 equal to impossible??Yes, you have a small chance. However, the possibility of finding the value of infinity is better! Does that answer your question?
Regards, Tintin
-
passing controlid in javascriptNever mind, I got it. 1.In the place off ??? you use "this". [without parentheses] 2. in function then say controlName.id [returns string] works fine now
Regards, Tintin
-
passing controlid in javascriptI need to pass the ID of the control calling a function in javascript function, to the function. I have a control ie. where myFunction is the following function in javascript and ??? would be the command used to pass its own id. function myFunction(controlName) { //I need controlName as the id of the control calling this function //do something... }
Regards, Tintin
-
Control causing postback?no, didnt know, where do i do that? just need to call the same method from all of the dynamicly created buttons.
Regards, Tintin
-
Control causing postback?Hi, Im generating button controls at runtime in a gridview, and need to handle an event on click. so i need to identify the control doing the postback.
Regards, Tintin
-
anchor not firing in contentplaceholder1Hi, I have an anchor in a contentplaceholder. I want to fire event in code behind vb when click occurs on , but doesn't work. I used it the msdn way, created event in code behind handling myAnchor.ServerClick etc. When clicking , at bottom of IE it says: javascript:__doPostBack("ctl001$contentplaceholder1$myAnchor','') THINK THIS MIGHT BE THE PROBLEM?? anchor code: code behind: Sub myAnchor_Click(ByVal sender As Object, ByVal e As EventArgs) Handles myAnchor.ServerClick Response.Write("click") End Sub plz help -- modified at 6:49 Wednesday 23rd August, 2006
Regards, Tintin
-
indexing table in SQL2005?Hi, how do i index a table in 2005? When i right click on the table, full-text indexing is grey'd out(disabled). How do i enable it?
Regards, Tintin
-
get id column value from gridview?Hi, i've got a datasource ie "employees" with columns id, name, surname. I'm binding to a gridview, but display only name, surname but i'v added a select column. How do I get the ID VALUE for the selected row, when i click on select hyperlink in the select column. thx
Regards, Tintin
-
set gridview editable at runtimeHi, How do i make the gridview, or at least certain fields editable at runtime. I'm manually binding data to a blank datagrid. I know prdefined columns in the grid have a readonly property, but that property is gone in runtime! please help.
Regards, Tintin
-
SqlDataTable queriesHi, I need to do a "select distinct emp_type from dtName" on a datatable in vb.net. in order to get a list of distinct employee types from a datatable in code. I can't work on DB side, caue i'm getting data from text file, and looping through every record is hideous!
Regards, Tintin
-
html controls access on server side??tnx, seems to be working now.
Regards, Tintin