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
A

Asim N

@Asim N
About
Posts
142
Topics
89
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • sql server 2005 User defined datatype and PrimaryKey
    A Asim N

    Hello, I was exploring user defined datatypes in sql server 2005. I tried making this type, a primary key but I am afraid that option is disabled. Now is this not possible or are there any properties that needs to be set first ? Looking for reply.

    Regards, Aims

    Database database sql-server sysadmin question

  • Microsoft Quality Policy
    A Asim N

    Not able to get "JOTD" what do you mean by this ?

    Regards, Asim

    IT & Infrastructure help question

  • Microsoft Quality Policy
    A Asim N

    Hello, Actually, each company (software development company to be specific)has a Quality Policy defining the steps ensuring Quality Product. May be I should have wrote "Microsoft's Software Quality Policy"! You can check http://www.rti.org/page.cfm?nav=482 or open it from left navigation menue!

    Regards, Asim

    IT & Infrastructure help question

  • Microsoft Quality Policy
    A Asim N

    Hello, I was wondering whether I can get Microsoft's Quality policy from somewhere or not ? I tried alot but no success! So is there anyone who can help ? Looking for reply

    Regards, Asim

    IT & Infrastructure help question

  • Spanish translation
    A Asim N

    I'm looking for a Spanish translator for GPix (pixel ad script from tufat.com). It seems to support every language but Spanish. I can do this myself, but I'm hoping that someone already has this translation. Regards,

    The Lounge com tools

  • Molecule Viewer
    A Asim N

    Hi, Can someone help me to finish a project with Molecule Viewer?? You can download it for free from: http://www.tufat.com/s\_3d\_molecule\_viewer.htm Thanks. Regards,

    IT & Infrastructure com help question

  • Program Instalation
    A Asim N

    Can someone help me with Flash RSS Readers instalation? I found it on http://www.tufat.com/category10.htm and I need some help because I found it very interesting and I don't found other one free. Thanks Regards,

    IT & Infrastructure com adobe help question

  • setup wizard and registry handling
    A Asim N

    Thank you Curtis. Yes, this is what i was interested in. The other post was just about registry action using vb.net and not about what i asked! Regards, Asim

    Visual Basic visual-studio csharp windows-admin question workspace

  • clearing a combobox
    A Asim N

    I said : combobox.selectedindex = -1 and not combobox.selectedindex -1 ! Try the above thing and it would work! Regards, Asim

    Visual Basic

  • Check the instance of an object
    A Asim N

    try to use : if not OBJECT is nothing then // Code here... end if Regards, Asim

    Visual Basic help question

  • clearing a combobox
    A Asim N

    try to use combobox.selectedindex = -1 instead of combobox.selectedvalue = -1 Thats it. If it don't clear then use the same twice! Regards, Asim

    Visual Basic

  • setup wizard and registry handling
    A Asim N

    I want to know how can i check whether certain key value exist in registry while using Visual Studio 2003 IDE for a Setup Wizard. I want to do this programmatically. Regards, Asim

    Visual Basic visual-studio csharp windows-admin question workspace

  • intranet
    A Asim N

    On Part1: Just replace the "localhost" word in the URL with the machine name and you will be able to access the page from any pc within the network. Like this: Replace http://localhost/App/default.aspx with http://abu-sultan/App/default.aspx On Part2. No vs.net would't be required. But .Net framework would be required. Is this you were interested in knowing ? Regards, Asim

    ASP.NET sysadmin help csharp asp-net visual-studio

  • Adding a new row in a DataGrid
    A Asim N

    Finally mean final step! Regards, Asim

    Visual Basic question

  • Returning Selected Grid Value to parent window
    A Asim N

    Thanks, i was able to work this out with following code : Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles DataGrid1.ItemDataBound Dim objLinkBtn As LinkButton If e.Item.ItemType = ListItemType.AlternatingItem Or _ e.Item.ItemType = ListItemType.Item Or _ e.Item.ItemType = ListItemType.SelectedItem Then objLinkBtn = e.Item.FindControl("LinkButton1") If Not objLinkBtn Is Nothing Then objLinkBtn.Attributes.Add ("onclick", "javascript:window.opener.Form1.txtValue.value = '" + DataGrid1.DataKeys(e.Item.ItemIndex) + "'") End If End If End Sub Thats it. Regards, Asim

    ASP.NET css question

  • Returning Selected Grid Value to parent window
    A Asim N

    Ok, Thank you for guiding me. I was interested in returning value, once a select button in grid is clicked. So i was trying different things for achieving this. Anyway, still trying. Thanks. Regards, Asim

    ASP.NET css question

  • Returning Selected Grid Value to parent window
    A Asim N

    Hello, I was trying to return the selected grid value to parent window, but some problems in this. Here is some code: On Parent Form : Button1.Attributes.Add("onclick", "window.open('WebForm2.aspx');") On Child i am trying to do things like : btnOK.Attributes.Add("onclick", "window.opener.Form1.txtValue.value = '" + txtValue.Text + "'") - Works in case of ordinary values. i want to have value returned whenever Select Button is selected in Grid Template column. Snippet is : If e.CommandName = "Select" Then txtValue.Text = DataGrid1.DataKeys.Item(e.Item.ItemIndex) DataGrid1.Attributes.Add ("OnItemCommand", "window.opener.Form1.txtValue.value = '" + txtValue.Text + "'") End If This is what i want i.e. value is returned to parent each time value is selected in gird - on child form. Please correct me where i am wrong? Waiting, Regards, Asim

    ASP.NET css question

  • Data Row From Data Grid
    A Asim N

    YOu can do this like this: Dim str As String = DataGrid1.Item(0, 2).ToString() 0 - rowindex 2 - colindex thats it. Regards, Asim

    Visual Basic css

  • Web Link in Rich Text Box
    A Asim N

    you can write like this. Text here... I think thats it. Regards, Asim

    Visual Basic question com tutorial

  • Tab function
    A Asim N

    In the tab control use the tabs collection like tabl(0) to enable or disable any tab on appropriate time/action you want to perform. you can even set the visibility as well and any other action. Regards, Asim

    Visual Basic help question
  • Login

  • Don't have an account? Register

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