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!

Search results for query: *

  • Users: worldatlas
  • Content: Threads
  • Order by date
  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

    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...
  5. 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...
  6. 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...
  7. 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.
  8. 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...
  9. 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...
  10. 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...
  11. worldatlas

    Compile CS file with VB.NET

    I have Microsoft Visual Basic.NET version that doesn't have C# installed. And I have a CS file in C# that I hope I can compile and reference it into my project. I'm very new at using this tool, so please help. Thank you.
  12. worldatlas

    Parent & Child Column on Relation

    I have the following error msg, and I don't know what I have to do to solve it. Server Error in '/ExamConn' Application. -------------------------------------------------------------------------------- These columns don't currently have unique values. Exception Details...
  13. worldatlas

    Get data based on NT userID

    I have a select statement that filter data based on NT userID. But how can I do that? This is what I tried, but it is generating error. "SELECT distinct JOB_TITLE_CODE from ALL_PEOPLE where PERSON_INITIALS = Environ('username')", SqlConnection1) Any suggestion?? Thanks in advance.
  14. worldatlas

    Login user failed error

    I'm very new to ASP.NET. Right now, I'm trying to self-taught myself by reading this ASP.NET book for work. So far, this is the code that i have. <%@ Import namespace="System.Data.SqlClient"%> <%@ Import Namespace="System.Data"%> <%@ page language="vb" runat="server"%> <HTML> <HEAD>...
  15. worldatlas

    VBRSTK1 graph & color correspondent

    Normally, this is what I would expect as the result on the VBRSTK1 color graph. Not Ready = 6 (green) Schedule = 7 (pink) Available = 4 (blue) But when I have the following data: Not Ready = 8 (blue) Schedule = 5 (green) Then my VBRSTK1 graph is all messed up in color because it doesn't...
  16. worldatlas

    Grab value from previous rec & save into new field of current record

    Basically, what I'm trying to do is grab one of the field value from previous record and save it into the same field for the current record. I've tried the following code, but it is not letting me. I'm really new at this. Please help. rstTemp As Recordset DoCmd.GoToRecord , , acNewRec...
  17. worldatlas

    How to change A6 into P7 field

    I have a field with format A6 and I need it to change into P7, any suggestion.... Or P7 change into A6...Either way. Thank you in advance
  18. worldatlas

    Javascript work in IE version 6 but not in XPSP2_GDR.040517-1325

    I have a simple calendar javascript code that I'm putting on my website. But my users, who have Internet Explorer version 6.0.2800.1106.xpsp2_gdr.040517-1325, get error pop-up such as: Runtime Error has occured Line 0: Error Error: Object expected. However, my other users, who have IE version...

Part and Inventory Search

Back
Top