thankz. Actually client have just exe file not sourcecode and asked me to sortout this issue. some one suggested me corflags .NET utility so i m going to look over it.
shaina2231
Posts
-
Issue with running .exe(compiled in 34 bit) in window7 64bit enviornment -
Issue with running .exe(compiled in 34 bit) in window7 64bit enviornmentthankz i will sure check corflags utility
-
Issue with running .exe(compiled in 34 bit) in window7 64bit enviornmentthankz. but i dont have sourcecode of that exe
-
Issue with running .exe(compiled in 34 bit) in window7 64bit enviornment:( which is not even my one month pay
-
Issue with running .exe(compiled in 34 bit) in window7 64bit enviornmentNo. if you dont mind then Can u plz provide me ur email so that i could send u exe and u would better able to find issue.
-
Issue with running .exe(compiled in 34 bit) in window7 64bit enviornmentwhen exe is run in window7 64 bit then gets error msg i-e Unhandled exception has occured in your application . If u click continue the application will ignore this error and attempt to continue.if u click quit the application will close immediatly. Input string was not in correct format.
-
Issue with running .exe(compiled in 34 bit) in window7 64bit enviornmentI m having a visualstudio 2008 project all debug folder files. The exe runs well in winxp and window7 32 bit but problem arises when i try to run in window7 64 bit. Plz help me how to resolve this issue. Any comments are welcome
-
Issue with running .exe(compiled in 34 bit) in window7 64bit enviornmentI m having a visualstudio 2008 project all debug folder files. The exe runs well in winxp and window7 32 bit but problem arises when i try to run in window7 64 bit. Plz help me how to resolve this issue. Any comments are welcome
-
Issue with running .exe(compiled in 34 bit) in window7 64bit enviornmentI m having a visualstudio 2008 project all debug folder files. The exe runs well in winxp and window7 32 bit but problem arises when i try to run in window7 64 bit. Plz help me how to resolve this issue. Any comments are welcome
-
check Date Range(VB.NET) I am using 2 DateTimepicker controls on form one for To: and 2nd for From (TO get particular Range of DATE) Now i want to check all dates(TO->from)Range from db which are in range. Plz tell me the Query and should i use db column type as DateTime now i m using ntext to save date . I m using sqlserver2005 plz help
-
Display data using HyperLinkFrom database i m fetching data i want to display Data in hyperlink (Windows form application) the code is below
string conn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + path + "\\db1.mdb";
OleDbConnection con = new OleDbConnection(conn); OleDbCommand cmd = con.CreateCommand(); cmd.CommandType = CommandType.Text; cmd.CommandText = "Select \* from Player where CountryID=" + index; OleDbDataAdapter da = new OleDbDataAdapter(cmd); DataSet ds = new DataSet("Player"); OleDbCommandBuilder oldbcbr = new OleDbCommandBuilder(da); da.Fill(ds, "Player"); dataGridView2.DataSource = ds; DataTable dt = new DataTable(); da.Fill(dt); dataGridView2.DataSource = dt; try { for (int i = 0; i <= ds.Tables\[0\].Rows.Count - 1; i++) { MessageBox.Show(ds.Tables\[0\].Rows\[i\].ItemArray\[0\] + " -- " + ds.Tables\[0\].Rows\[i\].ItemArray\[1\]); } } catch (Exception ex) { MessageBox.Show("Can not open connection ! "); }
Pls tell me how to display data as hyperlink in gridview or using Some other Control
-
setting datasource of Grid View ProblemNo it does not compiles any error but display nothing in gridview
-
setting datasource of Grid View Problemi m using following code to set Datasource of gridview but its not working plz help
string path = Directory.GetCurrentDirectory();
string conn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + path + "\\cricketdb.mdb";OleDbConnection con = new OleDbConnection(conn); OleDbCommand cmd = con.CreateCommand(); cmd.CommandType = CommandType.Text; cmd.CommandText = "SELECT \* FROM countryinfo"; OleDbDataAdapter da = new OleDbDataAdapter(cmd); DataSet ds = new DataSet("countryinfo"); OleDbCommandBuilder oldbcbr = new OleDbCommandBuilder(da); da.Fill(ds, "countryinfo"); dataGridView1.DataSource = ds; comboBox2.DataSource = ds.Tables\["Country\_Name"\]; listBox1.DataSource = ds.DefaultViewManager; listBox1.DisplayMember = "Country\_Name"; dataGridView1.DataSource = ds; DataTable dt = new DataTable(); da.Fill(dt); dataGridView1.DataSource = dt; comboBox2.DataSource = dt;
Its also not setting datasource of anycontrol like combo or list plz help
-
SessionTimeOut ProblemWhen admin logsout automatically then this session variable contains Null condition Session["me"] == null becomes true I have extended sessiontimeout using Session.timeout=40 when setting this session variable value at login sucessfully But still it logsout after saving data in to db with in 30 sec plz help how to handle it
-
SessionTimeOut ProblemIn C# web application Requirement is when using admin panel admin inserts categoy,product etc then update also his store database on Ebay i hv integrated site with Ebay store db and updating that too. But Saving data takes time and Admin gets logout automatically I think default session time is up Plz help how to handle this
-
SessionTimeOut ProblemIn C# web application Requirement is when using admin panel admin inserts categoy,product etc then update also his store database on Ebay i hv integrated site with Ebay store db and updating that too. But Saving data takes time and Admin gets logout automatically I think default session time is up Plz help how to handle this
-
how to acess Control Reference in Thread MethodI hv to get control reference in thread method let suppose in this example i m setting text lable of text control but it gives exception at Statment TextBox1.Text="DFD" Exception is Cross-thread operation not valid: Control 'TextBox1' accessed from a thread other than the thread it was created on. code is below
Public Class data
Private myUtil As Util = New Util()
Private strSQL As String = ""
Public Sub savedata()
'Label1.Text = "DFDF"
' Dim d As data
TextBox1.Text = "DFDF"
Try
strSQL = "Insert into tbldata(pid,pname,pdesc) values(2, 'abc', 'description1')"
If (myUtil.ExecuteDBCommand(strSQL) = 1) Then
'MsgBox("Account(s) Assigned Sucessfully!")
Else
MessageBox.Show("Could not Save Record!", "Account Information!", MessageBoxButtons.OK, MessageBoxIcon.Information)
Exit Sub
End IfCatch ex As Exception End Try End Sub Private Sub data\_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim t1 As Threading.Thread = New Threading.Thread(AddressOf savedata) t1.Start() End Sub
End Class
plz help
-
Iphone WebApplication Tools?From Googling i came to know that For Iphone Developement almost 2 IDES are used 1. Xcode 2. OneComponentStdio And language Used is Objective C Please let me know what are the other tools and languages can b used and is possible visualstdio 2008(c#.NET) using some plugin (whichone?) plz help
-
Sending Request and Reading Response from Webservice using XML APII m adding webreference of this webservice link in my C#Project
-
Sending Request and Reading Response from Webservice using XML APII m using eBay Trading API For XML link is "http://developer.ebay.com/webservices/latest/ebaySvc.xsd" and XML code to call some method of Api is as follows Pls Guide me how to send Request and Read Respone in C#.NET code? <?xml version="1.0" encoding="utf-8"?> <GetCategoryInfoRequest xmlns="urn:ebay:apis:eBLBaseComponents"> <CategoryID >-1</CategoryID> <IncludeSelector >ChildCategories</IncludeSelector> </GetCategoryInfoRequest> and Response is <?xml version="1.0" encoding="UTF-8"?> <GetCategoryInfoResponse xmlns="urn:ebay:apis:eBLBaseComponents"> <Timestamp>2009-12-12T12:11:14.460Z</Timestamp> <Ack>Success</Ack> <Build>E643_CORE_BUNDLED_10284414_R1</Build> <Version>643</Version> <CategoryArray> <Category> <CategoryID>-1</CategoryID> <CategoryLevel>0</CategoryLevel> <CategoryName>Root</CategoryName> <CategoryParentID>0</CategoryParentID> <LeafCategory>false</LeafCategory> </Category> <CategoryCount>37</CategoryCount> <UpdateTime>2009-06-15T14:51:30.000Z</UpdateTime> <CategoryVersion>92</CategoryVersion> </GetCategoryInfoResponse>