Check the following links.
http://www.c-sharpcorner.com/UploadFile/Globalking/datasettoexcel0 2272006232336PM/datasettoexcel. aspx?ArticleID= 0930c1ba-b92e-4063-b278-4e5bd6dddfa6
http://www.dotnetspide r.com/kb/Article950.aspx
Ambika Praveen
User Profile
Collapse
Profile Sidebar
Collapse
digitalmanic
Last Activity: Nov 17 '14, 07:27 PM
Joined: Oct 27 '06
Location:
-
Reddi,
Create a dataset depending on your criteria (.xsd files) and give it as the datasource of your crystal report.
Ambika Praveen.Leave a comment:
-
Sabina,
The below link explains all date formating. Check it.
http://msconline.maconstate.edu/tuto...bnet01-08.aspx
Ambika Praveen....Leave a comment:
-
The below link explains all date formating. Check it.
http://msconline.macon state.edu/tutorials/VBNET/VBNET01/vbnet01-08.aspxLeave a comment:
-
Check the links below.
http://www.dotnetspide r.com/qa/Question4027.as px
http://www.dotnetspide r.com/qa/Question23757.a spx
http://www.csharphelp. com/archives3/archive544.htmlLeave a comment:
-
-
digitalmanic replied to 'CreateFileW' : cannot convert parameter 1 from 'const char [13]' to 'LPCWSTR'in CHope the following links may help you to resolve the problem.
http://www.tutorials-blog.com/win32/win32-20.html
http://forums.microsof t.com/MSDN/ShowPost.aspx?P ostID=210023&Si teID=1Leave a comment:
-
-
-
Hyperlink Column - Use the HyperLinkColumn column type in a DataGrid control to create a hyperlink for each row in the DataGrid. Set the Text property to specify the caption text for the hyperlink. Unless you are pulling hyperlinks from your datasource, each hyperlink will be the same for each row.
Source : http://dotnetjunkies.c om/Article/F25D02EA-7763-4C96-AA27-260388F848D9.dc ikLeave a comment:
-
string myXMLfile = "C:\\MySchema.x ml";
DataSet ds = new DataSet();
try
{
ds.ReadXml(myXM Lfile);
dataGrid1.DataS ource = ds;
dataGrid1.DataM ember = "Cust";
}
catch (Exception ex)
{
MessageBox.Show (ex.ToString()) ;
}
Please check the following link for more details.
...Leave a comment:
-
Hope this link will help you.
http://www.mono-project.com/MaxDB
Ambika PraveenLeave a comment:
-
Check the following link.
http://aspalliance.com/283
Ambika PraveenLeave a comment:
-
Please check the following link. Hope this is what you need.
http://datawebcontrols .com/faqs/CustomizingAppe arance/ScrollableDataG ridWithFixedHea der.shtml
Ambika PraveenLeave a comment:
-
Dim db as string = Server.MapPath( "dbname.mdb ")
Dim conn As New OleDbConnection ("PROVIDER=Micr osoft.Jet.OLEDB .4.0;DATA SOURCE=" & db)
Dim strSql As String = "update len_graph set test2 = " & test2 & " where Lenid= 1;"
Dim cmd As New OleDbCommand(st rSql, conn)
conn.Open()
cmd.ExecuteRead er()
conn.Close()
Ambika PraveenLeave a comment:
-
using System;
using System.Collecti ons.Generic;
using System.Text;
namespace ConsoleApplicat ion1
{
class Program
{
public static void Main()
{
DisplayBinary db = new DisplayBinary(8 );
db.display(231) ;
}
}
class DisplayBinary
{
public int bits;
public...Leave a comment:
-
Please check the following link.
http://www.codeproject .com/csharp/excel2xml.asp
Ambika PraveenLeave a comment:
-
Please check the link below.
http://forums.microsof t.com/MSDN/ShowPost.aspx?P ostID=834904&Si teID=1
Ambika PraveenLeave a comment:
-
Hope this is what you need.
In Form1
private void btnShow_Click(o bject sender, EventArgs e)
{
Form2 frmForm2 = new Form2();
this.Hide();
frmForm2.ShowDi alog(this);
this.Show();
}
In Form2
private void btnClose_Click( object sender, EventArgs e)
{
this.Close();...Leave a comment:
-
Dim MysqlConn As MySqlConnection = New MySqlConnection ()
MysqlConn.Conne ctionString = "Data Source=server;D atabase=databas ename;User ID=usename;Pass word=password;C ommand Logging=false"
MysqlConn.Open( )
Ambika PraveenLeave a comment:
No activity results to display
Show More
Leave a comment: