December 25th, 2006 09:42 AM
i wrote-
function updateEventItems(value)
{ var xmlObj=null;
if (window.XMLHttpRequest)
xmlObj=new XMLHttpRequest();
else if (window.ActiveXObject)
...
November 2nd, 2006 05:33 AM
ok i get it now
thanks :)
November 2nd, 2006 05:03 AM
example-
class animal
{ public void func() {...}
}
class dog extends animal
{ public void func() {...}
November 2nd, 2006 04:32 AM
hello,
i know polymorphism gives you the ability to use the same object for several different types , but it can be done without polymorphism (with casting and inheritance)...
so can someone...
August 6th, 2006 03:13 PM
how can i select some fields from dataTable (in dataSet)
i tried someting like-
ds.Tables(0).Select(String.Format("Field={0}",ColumnName))
but its not working
any idea?
thanks in advanced
August 5th, 2006 03:37 PM
is there a way to insert values (many rows) from dataset to the dataBase?
thnaks in advanced.
August 5th, 2006 04:44 AM
im using the connection string-
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\Book2.xls;Extended
properties=Excel 8.0;IMEX=1;HDR=YES;"
and im getting the error-
Could not find installable...
August 4th, 2006 10:10 AM
i searched in the net and found that there are 2 ways to read from excel ,
one is with OleDb and the other is using a com dll.
what is the different between them? what should i use ?
August 4th, 2006 09:50 AM
how can i read excel file from vb?
what technic supports also csv files?
thanks in advanced.
March 22nd, 2006 03:19 PM
i created a page with a table and a select option in it
<body>
<table>
<select....>
...and so on
i used them as a html tags and now i want to get the selected item (from the select) in the...
February 25th, 2006 10:54 AM
February 25th, 2006 07:35 AM
but how can i add a condition to a "where" ?
im using sql-server
February 25th, 2006 03:11 AM
i wrote a scalare function-
select name,id
from tableName
where function1(id) / function2(id)>100
but sometimes function2 returns zero so im getting a divide by zero exception.
February 4th, 2006 06:35 AM
'SetDataBinding' is not a member of 'System.Web.UI.WebControls.DataGrid'
February 4th, 2006 05:49 AM
im getting an error on SetDataBinding so i tried to use dataSource+dataBind
but its still not working, i cant see anything.
what else can it be?
February 4th, 2006 04:23 AM
what is wrong in my code? i cant see the records of the dataBase
If (Not Page.IsPostBack) Then
Dim con As SqlConnection = New SqlConnection ("Server=localhost;Database =...
January 30th, 2006 04:14 AM
January 29th, 2006 04:08 AM
ok so how can i give a authorization to a proc table?
January 28th, 2006 11:51 AM
how can i give a authorization to a proc table?
i wrote-
mysql> GRANT all
-> ON proc
-> TO Admin@localhost
-> IDENTIFIED BY xyz;
January 28th, 2006 02:49 AM
its ok now
thanks for the help