Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
2
1 Commented Post
0 Endorsements
~10K People Reached
Favorite Tags
Member Avatar for sania khan
Member Avatar for sania khan
Member Avatar for sania khan

Is it possible to get location in form of text through Google map using Android java?

0
62
Member Avatar for sania khan

Can we convert the record displayed on the web page to pdf doc ? if possible then how we can achieve this?

Member Avatar for SautinSoft
0
970
Member Avatar for ashita08

Sqlconnection conn; Sqlcommand cmd; conn = new SqlConnection("Server=.\\SQLEXPRESS;AttachDbFilename=|DataDirectory|\\Database.MDF;Trusted_Connection=True;User Instance=yes"); conn.Open(); string cmdString = "Insert into Customer Detail (Customer_id,Name,Address,Contact_Person,Contact_Person_no)Values ('" + TextBox6.Text + "','" + TextBox1.Text + "','" + TextBox2.Text + "','" + TextBox5.Text + "','" + TextBox4.Text + "')"; cmd = new SqlCommand(cmdString, conn); cmd.ExecuteNonQuery(); Label2.Visible = true; Label2.Text = …

Member Avatar for sania khan
0
93
Member Avatar for sania khan

I made website that has connection with database... now i want to make exe of my project ,so that my C# code in MS Visual studio should not be visible to user. any help?

Member Avatar for nakor77
-1
100
Member Avatar for sania khan

//When i click the update button to update record in database,i get following error : " String or binary data would be truncated. The statement has been terminated." plz help me to solve this problem using System; using System.Collections; using System.Configuration; using System.Web.Configuration; using System.Data; using System.Linq; using System.Web; using …

Member Avatar for sania khan
0
247
Member Avatar for sania khan

our project is having this exception in this variable it is storing summation of price it is some kind of type casting error can anyone guide us which datatype we should set it so dat it is removed ??? plz plz plz

Member Avatar for pritaeas
0
76
Member Avatar for Sadia fatima

what should i write in the body tag so background image does not repeat?? <body background="images/red-and-black-powerpoint-template.jpg">

Member Avatar for sania khan
0
3K
Member Avatar for sania khan

I want to write code behind by close button so when user click rhat button whole application is close... is it possible? //this code is not giving right result... protected void ImageButton3_Click(object sender, ImageClickEventArgs e) { Response.Write("<script language='javascript'>window.open('','_self',''); window.close();</script>"); // Response.Write("<script language='javascript'>self.close();</script>"); //Response.Write("<script language='javascript'> { self.close() }</script>"); //Me.ClientScript.RegisterClientScriptBlock(Me.GetType(), "closemyself", "<script>self.close();</script>"); …

Member Avatar for sania khan
0
207
Member Avatar for sania khan

// This code is not solving my problem .Data redundency still exist... lblresult.Text always give 0 :( int count=0 ; string selectSQL = "SELECT Equipment_Name,Vendor_Name FROM CatC"; SqlConnection myConn = new SqlConnection(); myConn.ConnectionString = "Data Source=.;Initial Catalog=ecsd1;User ID=sa;Password=786"; myConn.Open(); SqlCommand cmd1 = new SqlCommand(selectSQL, myConn); SqlDataReader reader; try { myConn.Open(); …

Member Avatar for sania khan
0
137
Member Avatar for sania khan

//Check radiobutton list based on the data retrieve from the database //This is also not working.. This does not select any item of the RadioButtonList1.. and also not giving any error... //Here is my code protected void DropDownList2_SelectedIndexChanged(object sender, EventArgs e) { string selectSQL; selectSQL = "SELECT * FROM Books_Magazines …

Member Avatar for sania khan
0
2K
Member Avatar for sania khan
Member Avatar for sania khan

public partial class Default7 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { string selectSQL; selectSQL = "SELECT Ref#,Description,Quantity,Warning_Quantity FROM Products "; SqlConnection con = new SqlConnection(); con.ConnectionString = "Data Source=.;Initial Catalog=Project;User ID=sa;Password=786"; SqlCommand cmd = new SqlCommand(selectSQL, con); SqlDataReader reader; // SqlDataReader reader1; // Try to open database …

Member Avatar for thines01
-1
177
Member Avatar for sania khan

public partial class Default7 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { string selectSQL; selectSQL = "SELECT Ref#,Description,Quantity,Warning_Quantity FROM Products "; SqlConnection con = new SqlConnection(); con.ConnectionString = "Data Source=.;Initial Catalog=Project;User ID=sa;Password=786"; SqlCommand cmd = new SqlCommand(selectSQL, con); SqlDataReader reader; // SqlDataReader reader1; // Try to open database …

Member Avatar for thines01
-1
255
Member Avatar for sania khan

This is not giving right output :((( [CODE]#include<iostream.h> #include<conio.h> using namespace std; int main() { char c[80],d[80]; cout<<"Enter a string = "; cin.get(c,80); strcpy(c,d); strrev(d); cout<<"String = "<<c; cout<<"Reverse word "<<d; getch(); return 0; }[/CODE]

Member Avatar for vijayan121
0
369