Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

shaina2231

@shaina2231
About
Posts
100
Topics
67
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Issue with running .exe(compiled in 34 bit) in window7 64bit enviornment
    S shaina2231

    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.

    C# help debugging tutorial

  • Issue with running .exe(compiled in 34 bit) in window7 64bit enviornment
    S shaina2231

    thankz i will sure check corflags utility

    .NET (Core and Framework) help debugging tutorial

  • Issue with running .exe(compiled in 34 bit) in window7 64bit enviornment
    S shaina2231

    thankz. but i dont have sourcecode of that exe

    .NET (Core and Framework) help debugging tutorial

  • Issue with running .exe(compiled in 34 bit) in window7 64bit enviornment
    S shaina2231

    :( which is not even my one month pay

    C# help debugging tutorial

  • Issue with running .exe(compiled in 34 bit) in window7 64bit enviornment
    S shaina2231

    No. 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.

    C# help debugging tutorial

  • Issue with running .exe(compiled in 34 bit) in window7 64bit enviornment
    S shaina2231

    when 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.

    C# help debugging tutorial

  • Issue with running .exe(compiled in 34 bit) in window7 64bit enviornment
    S shaina2231

    I 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

    Visual Studio help debugging tutorial

  • Issue with running .exe(compiled in 34 bit) in window7 64bit enviornment
    S shaina2231

    I 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

    C# help debugging tutorial

  • Issue with running .exe(compiled in 34 bit) in window7 64bit enviornment
    S shaina2231

    I 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

    .NET (Core and Framework) help debugging tutorial

  • check Date Range
    S shaina2231

    (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

    Visual Basic database csharp help

  • Display data using HyperLink
    S shaina2231

    From 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

    C# database tutorial

  • setting datasource of Grid View Problem
    S shaina2231

    No it does not compiles any error but display nothing in gridview

    C# help css

  • setting datasource of Grid View Problem
    S shaina2231

    i 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

    C# help css

  • SessionTimeOut Problem
    S shaina2231

    When 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

    Web Development database help csharp tutorial announcement

  • SessionTimeOut Problem
    S shaina2231

    In 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

    C# database help csharp tutorial announcement

  • SessionTimeOut Problem
    S shaina2231

    In 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

    Web Development database help csharp tutorial announcement

  • how to acess Control Reference in Thread Method
    S shaina2231

    I 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 If

        Catch 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

    .NET (Core and Framework) tutorial help

  • Iphone WebApplication Tools?
    S shaina2231

    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

    Mobile csharp swift ios tools help

  • Sending Request and Reading Response from Webservice using XML API
    S shaina2231

    I m adding webreference of this webservice link in my C#Project

    Web Development csharp tutorial com xml json

  • Sending Request and Reading Response from Webservice using XML API
    S shaina2231

    I 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>

    Web Development csharp tutorial com xml json
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups