Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by worldatlas

  1. worldatlas

    How can I get random record

    I'm trying to create a random sampling recordset, is there a function in WebFocus that will allow me to do that. Thanks in advance,
  2. worldatlas

    Disable the BACK feature on the Internet Explorer browser

    Is there a code that I can put into my ASP.NET page that would disable just the BACK button on the toolbar on top of the Internet Explorer browser.
  3. worldatlas

    Display mutliple <table> structure using for loop

    I have a dropdown box for the users to select how many transaction entries they want to enter. Should I program as follow: for i=1 to intRows Step 1 <table cellpadding="2" cellspacing="1" border="0"> <tr bgcolor="#eeeeee"> <td> <asp:textbox Width = 50 ID = "AcctUnit" Runat="server">...
  4. worldatlas

    Use System.Web.UI.WebControls.DataListItemEventArgs

    Thank you very much, everything is working except I have to change one minor detail, which is: CommandArgument='<%# Container.DataItem("ID")%>' Again, you are a life saver. Thanks!
  5. worldatlas

    Use System.Web.UI.WebControls.DataListItemEventArgs

    I have a linkbutton in the datalist <EditItemTemplate> to call a sub function. Example of my code: <asp:LinkButton ID="Linkbutton5" Text="Multi" Onclick="CallIndividual" Runat="server"></asp:LinkButton></td> In the code behind page, I have the function CallIndividual as follow: Sub...
  6. worldatlas

    How can I bypass pop-up window.

    Whoohoo...It works, thank you for all your help.
  7. worldatlas

    How can I bypass pop-up window.

    This setwarning = false helps bypass the pop-up window; however, I want to program to select "YES" without prompting the users with the pop-up.
  8. worldatlas

    How can I bypass pop-up window.

    I have a event procedure that execute when I click the button to execute the following events: DoCmd.OpenQuery "Step01", acViewDesign DoCmd.OpenQuery "Step02", acViewNormal DoCmd.OpenQuery "Step03", acViewNormal DoCmd.OpenQuery "Step04", acViewNormal But query step03 is a make table query, so...
  9. worldatlas

    Date format hmdyysa

    I have a field with an original datatype as HMDYYSA; however, I change in the master file into format HYYMD. However, when I query this field using WHERE START_TIME_DATE EQ 20051004. It doesn't grab all the record because there are other records that have the following data: 2005/10/04...
  10. worldatlas

    Get numeric value from an alpha field

    I have a field that is A17 format. However, the data contain alpha & numeric. For example: CRE PRE CD-SRF 3456 8970 I want to be able to grab 3456 and 8970 numeric value ONLY. Is there a function that allows me to do that. Thank you.
  11. worldatlas

    String to decimal

    I still get the same error message
  12. worldatlas

    String to decimal

    I receive the following error message when trying to convert a string into decimal. "Object reference not set to an instance of an object. " And this is the line of code that generated the error msg. Dim DAmnt As Decimal DAmnt = Convert.ToDecimal(txtDAmnt.Text) And this is the rest of...
  13. worldatlas

    Checked Box in datagrid

    I'm not sure what I should do for checking whether the checkbox is checked, so I use boolean to verify the state. But if there is a better technique, please let me know. In addition, I've tried the following Checkselector=ctype(dgItem.FindControl("Checkselector"),Checkbox) If...
  14. worldatlas

    Checked Box in datagrid

    I have the following code that is suppose to insert the following data when the user checked the checkbox in one of the column of the datagrid. However, I can't seem to get pass the 'If (Checkselector.Value = False And Checkselector.Checked) Then ' Is there a better way to verify if the...
  15. worldatlas

    Insert to different table

    I'm trying to add every checked row in a datagrid to another datasource (sqlConnection2) different from the one I've binded to the datagrid (sqlConnection1). However, I don't know how to proceed this...So far I have this, and now I'm stuck. I'm very new at this, so any suggestion is greatly...

Part and Inventory Search

Back
Top