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

BammBamm

@BammBamm
About
Posts
14
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • IIS virtual Directory
    B BammBamm

    How about right click, select delete.

    C# windows-admin question

  • serializible
    B BammBamm

    Well, what objects are you storing in session? It can't be that big of a list.

    ASP.NET question com linux tutorial

  • serializible
    B BammBamm

    Try looking at the Stack Trace or just look at what objects you are putting into session.

    ASP.NET question com linux tutorial

  • Mask the TextBox
    B BammBamm

    You could just format the number before you display it. double x = 4500.00; textBox2.Text= x.ToString("c"); output = $4,500.00

    C# question

  • removing XML entries
    B BammBamm

    Try this System.Xml.XmlNode node; System.Xml.XmlDocument doc = new XmlDocument(); doc.LoadXml("jon3547408"); this.textBox1.Text=doc.InnerXml; node = doc.SelectSingleNode("person"); node.RemoveChild( doc.SelectSingleNode("person//zip")); textBox1.Text += "\n" + doc.InnerXml;

    C# xml question

  • removing XML entries
    B BammBamm

    What exaclty are you trying to do. Permanently remove nodes from the document? Copy nodes to nodes outside the document?

    C# xml question

  • Printing Array of Bytes to File
    B BammBamm

    You need to convert the decimal values back to ascii characters. Here is a code snippet =Encoding.ASCII.GetString(ArrayOfBytes,0,ArrayOfBytes.Length); this returns a ascii encoded string

    Visual Basic question data-structures debugging

  • Transaction problem
    B BammBamm

    Is the connection open?

    Database help database question announcement

  • Join Problem
    B BammBamm

    change d.app_id = c.app_id and to d.app_id = c.app_id (+) and

    Database database help oracle collaboration json

  • how to merge two or more datasets ?
    B BammBamm

    dataset.merge() It is usually used to synch a data set on the client with updated data from the db server. For instance I download the customers I am browsing and updating, I save to the dbserver. Others may be doing the same. You pull down new data from the dbserver and merge it with what you allready have on the client. There are other instances but I think this is the most common.

    Visual Basic help tutorial question

  • trouble with dropdownlist on selectedIndex property
    B BammBamm

    Try this: CountryDDLList.SelectedIndex = CountryDDLList.Items.IndexOf(CountryDDLList.Items.FindByValue(key))

    ASP.NET database help

  • Losing viewstate ?
    B BammBamm

    I believe that if you are truely dynamicaly loading a control (as opposed to just hidding and showing it) viewstate for that control will not be preserved. I believe this is because viewstate is allready loaded by the time you dynamically re-load the control. I ran into the same problem with controlls on an aspx page. My solution, which I don't truely like, was to hide and show the controls when needed. On the controls themselves I did nothing on page_load so as to keep overhead to a minimum, instead I made public functions called init() which I would call whenever I made the controls visible. If you find a better solution please let me know.

    ASP.NET question

  • how to control a data before show with repeater???
    B BammBamm

    You can use the onItemDataBound event in the codeBehind. Private Sub rptList_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) Handles rptList.ItemDataBound If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then if DataBinder.Eval(e.Item.DataItem, "network").ToString.lenght > o then 'do something else ' do something else End If End If Hope that helps

    ASP.NET help docker tutorial question

  • accessing a COM component from .NET
    B BammBamm

    All you need to do is set a reference to it and then you can access it directly like any other component. Go into project--> Add Reference Select the Com tab find your dll Add it. Now you should be able to access it like any other. Hope this helps.

    ASP.NET csharp asp-net com 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