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
B

bayo

@bayo
About
Posts
6
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Image Map for destop (non-.net) application
    B bayo

    Hi, I am working on an application that will require the creation of hot-spots on a windows form (win32). This is the scenario: I want to display a schematic diagram (like a circuit diagram) and high-light certain components as clickable hotspots. Clicking these components will result in events being generated which I can handle. Please does anyone have ideas about how I can get about this?

    acodeisacodeisacode

    COM csharp question

  • Need Help with Gridview RowState.
    B bayo

    Haven't tried this but if you want your gridview to be in the edit state by default, why not use use template columns and textboxes for your itemtemplates? sounds like a silly hack but...

    acodeisacodeisacode

    ASP.NET css help question

  • Database.
    B bayo

    Hi Adil, You said something about ASP.Net but it looks like it is a windows form you are dealing with. Anyhow, it doesn't matter. What you can do is put a breakpoint in your code for the Button click event Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As_ System.EventArgs) Handles Button1.Click then step though the code and find out where it breaks. This would give us info enough to help you. Meanwhile, i expect that the database has a table, Table1 with at least 3 fields that are all of Text type (?). (gain maybe it would help for you to go with: TextBox1.Text = dr(0).ToString().....etc

    acodeisacodeisacode

    ASP.NET csharp asp-net database tutorial

  • Hi
    B bayo

    Maybe a freudian slip? A she who wants to _ilence the ...:suss:

    acodeisacodeisacode

    The Lounge career csharp asp-net database sql-server

  • Updating data from a gridview in code
    B bayo

    Hi, I have this problem with a gridview from which I am tryng to update a database table. I have this handler for my Row_Updating event: Dim index As Integer = gvRecruit.EditIndex Dim row As GridViewRow = gvRecruit.Rows(index) Dim Id as Integer = Integer.Parse(row.Cells(0).Text) Dim fName As TextBox = CType(row.FindControl("txtFirstName"), TextBox) Dim firstName As String = fName.Text Dim lName As TextBox = CType(row.Cells(1).Controls(1), TextBox) Dim lastName As String = lName.Text etc... Problem is, when I step thru the code, the fName and lName still hold the old values, even though I have updated them with new ones. I think I am missing something. Can anybody help? PS I don't really do VB, but I don't think that is an issue here.

    acodeisacodeisacode

    ASP.NET help database question announcement

  • Database.
    B bayo

    Hello Adil, you can use OleDbConnection, for e.g using System.Data.OleDb; //... //... //... OledbConnection conn = new OleDbConnection("your connection string here"); //... but maybe you should be more specific. what exactly do you want to do with the data? bind to a grid?... Also, what version of Asp.Net

    acodeisacodeisacode

    ASP.NET csharp asp-net database tutorial
  • Login

  • Don't have an account? Register

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