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
M

moomoooomoo

@moomoooomoo
About
Posts
57
Topics
37
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • vb code conversion to c#....
    M moomoooomoo

    need help.. how to convert this code to c#? ----- dim strTemp() as string - vb code... can anyone help.. im just new to c#... thank you..

    start a new beginning in every ending; thats what life for......

    C# csharp help tutorial question

  • How to populate dropdownlist within the grid?
    M moomoooomoo

    hello everyone, I need your help once again. Had a problem in populating dropdownlist within the grid. Anyone pls help.. <EditItemTemplate> <asp:DropDownList CssClass="CellValue" ID="ddlCategories" Runat="server" Width="100%"></asp:DropDownList> </EditItemTemplate> code behind:: private void gvDisclosures_ItemDataBound(object sender, EventArgs e) { DropDownList list = (DropDownList) e.Item.FindControl("ddlCategories"); // Set the text and value properties // for the dropdown list to appropriate columns in the // data source list.DataTextField = "fcCatCode"; list.DataValueField = "fcCatCode"; list.DataSource = m_uf.loadCategory(); list.DataBind(); } when i click the edit button.... i always encounter an error on the behind code: can someone help me on this one.. your help is highly appreciated tnx. :laugh: start a new beginning in every ending; thats what life for......

    ASP.NET help css sysadmin tutorial question

  • mouse right click....
    M moomoooomoo

    good day to all... need help on the mouse click event... problem: 1.) how to invoke a mouse right click? same event when you right click windows... your help is highly appreciated... :-\ :-O :)

    start a new beginning in every ending; thats what life for......

    Visual Basic help tutorial question

  • DataGridView.....
    M moomoooomoo

    good day again friends, i again need your help on this one about datagridview in vb.net2005: - i created a runtime columns which contains combobox control/ datagridviewcomboboxcolumn - i set its datasource, and it runs smoothly - my problem was, i dont know how to add another value which at the runtime of the application created, and display on the grid on the location where the combobox column located. can someone help me on this... thank you... your help; ideas, link, codes... are highly appreciated.. thank you :-D

    start a new beginning in every ending; thats what life for......

    Visual Basic help csharp css tutorial

  • how to clear an array?
    M moomoooomoo

    good day everyone, i hope you can again help me with this: code : dim strVal() as string dim sVal as string = "a-b-c" - this can be changeable dim result as string = "" dim xCnt as integer strVal = split(sVal, "-") for xCnt = 0 to strVal -1 result & = strVal(xCnt) next first run : result = abc second run: result = abcabc <<-- this is the problem the code above runs smoothly, and no errors: but for the second runtime of the code above it does not clear the previous "strVal" value / results. how to clear the first result value of "strVal" ? thank you in advance, your help are highly appreciated. links/code are most highly appreciated thank you...:-D

    start a new beginning in every ending; thats what life for......

    Visual Basic help data-structures tutorial question

  • datagridview ?
    M moomoooomoo

    the data should come from sql database...

    start a new beginning in every ending; thats what life for......

    Visual Basic help design tutorial question

  • datagridview ?
    M moomoooomoo

    greeting again friends, i again need your help... as always it's badly needed... my problem is, when i change the column type into a comboboxcolumn i can only change it from design time.. 1.) how to change the columns using datagridview into a comboboxcolumn at runtime? 2.) how to populate the comboboxcolumn at runtime? from codes... links/ site/codes are highly appreciated... thank you.. :-D

    start a new beginning in every ending; thats what life for......

    Visual Basic help design tutorial question

  • how to clear an array?
    M moomoooomoo

    second badly needed.... how to clear an array? thank you

    start a new beginning in every ending; thats what life for......

    Visual Basic data-structures tutorial question

  • string function
    M moomoooomoo

    thanks bro.. i already get it... this forum is really attentive to those who need help.. thank you very much... really appreciated...

    start a new beginning in every ending; thats what life for......

    Visual Basic tutorial help question

  • string function
    M moomoooomoo

    greetings to all, guyz i need again your help, how to return a value of true if the function will find in a string at least one "0"? example : "110" the function should return "True" i used the inStr() function it seems working but when i would like to test another string inStr() function does not work.. or i used it incorrectly?... pls help, i need it very badly and your help is very highly appreciated.... thank you...

    start a new beginning in every ending; thats what life for......

    Visual Basic tutorial help question

  • dynamic textbox
    M moomoooomoo

    tnx for the idea.. i already got the answer.... thank you... your help is very much appreciated...

    start a new beginning in every ending; thats what life for......

    Visual Basic help tutorial question

  • dynamic textbox
    M moomoooomoo

    greetings again to you all, guyz, again i need your help very very badly. im successfull in creating textbox dynamically in the runtime.. but my problem now is how to get the data from the dynamic textbox... code: creating textbox in runtime While rd.Read text = New TextBox stForm.Controls.Add(text) text.Visible = True text.Name = "text" & CStr(xCnt) text.Location = New Point(122 + (3 * xPnt), 135) text.Size = New Size(60, 21) text.MaxLength = rd.Item(0) xCnt += 1 xPnt += 22 End While after the code above it will display a number of textbox in the form, next is i will input some data in the displayed textbox.... my problem is How to get the data from the display textbox which was done at runtime?..... your help is higly appreciated... links/codes is highly appreciated.. :-D

    start a new beginning in every ending; thats what life for......

    Visual Basic help tutorial question

  • how to create dynamic textbox object [modified]
    M moomoooomoo

    thank you sir dave, your help is very highly appreciated.. looking forward to you soon, many thanks.. :-D

    start a new beginning in every ending; thats what life for......

    Visual Basic csharp help tutorial

  • how to create dynamic textbox object [modified]
    M moomoooomoo

    greetings to you all, guys i need your help very badly.. on how to create a dynamic textbox object in runtime... using VB.NET 2005 the code below suppossedly can display 5 textbox, but sad to say i cannot see any textbox in my form. Can someone help me on this: For xcnt = 0 To 4 Dim text As New TextBox text.Visible = True text.Location = New Point(33 + xcnt, 27) text.Size = New Size(104, 21) Next pls help here... thank you so much.... links/codes are highly appreciated..:-D -- modified at 6:21 Monday 24th September, 2007

    start a new beginning in every ending; thats what life for......

    Visual Basic csharp help tutorial

  • Connecting to Web Service..
    M moomoooomoo

    greetings to all, im new here, in this forum... i am in need of your help very badly i had developed a simple mobile application pocket2003 using vb.net2005, that supposed to be to connect and get data through a Web Service. my Web Service works fine, did not encounter problems. But when i add webreference into the my simple mobile application, i used an event from a web service called authentication i encounter this error "Unable to establish connection to network." pls i need your help, how to prevent this error and what will i do or add to my codes to establish connection from my mobile application to a Web Service.. your help is highly appreciated.. thank you

    start a new beginning in every ending; thats what life for......

    Mobile help csharp sysadmin security

  • WIFI connection
    M moomoooomoo

    How to stablish WIFI connection using vb.net2005 in a mobile application?

    start a new beginning in every ending; thats what life for......

    Mobile csharp tutorial question

  • adjusting the row height in datagrid asp.net 2003...
    M moomoooomoo

    good day guyz, greetings to all... need help again from you.... my problem was: how to adjust the datagrid row height? in runtime/ codes... .. sample codes or links are highly appreciated. thank you again

    start a new beginning in every ending; thats what life for......

    ASP.NET help csharp asp-net tutorial question

  • how to close a web page using a button...
    M moomoooomoo

    thank you sir... your help is highly appreciated...

    start a new beginning in every ending; thats what life for......

    ASP.NET csharp asp-net help tutorial

  • popup window...
    M moomoooomoo

    thank you sir.... sorry for my late reply...

    start a new beginning in every ending; thats what life for......

    ASP.NET database help tutorial

  • popup window...
    M moomoooomoo

    good day again guyz, does anyone can help on how to display something like a message box that will contain five(5) TO ten(10) records from the database... the scenario if i click a button(view records) from my main page, then a look alike message box will contain number of records.... thank you guyz... your help is highly appreciated,....

    start a new beginning in every ending; thats what life for......

    ASP.NET database help 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