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 SkipVought 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: cyberbob2
  • Order by date
  1. cyberbob2

    ASP String parsing problem

    Hello, I am sending a value from an input form to a database/e-mail processing page which works fine, but I need to parse the value: TEST,TEST2 What I need to do is before the value even submits, parse out the text before the first comma, along with the comma itself, so I am left with: TEST2...
  2. cyberbob2

    Excel 2000 - Dynamically creating data driven columns

    Skip, The rows of data being returned will vary each time. A PivotTable is something I never thought of, but I like the idea of simply querying the sheet to return another resultset with what I need. Could you show me an example of this or point me in the direction of where I might be able to...
  3. cyberbob2

    Excel 2000 - Dynamically creating data driven columns

    Hello, I am using MS Query to pull external data conditionally which is working fine. I have a field where the user enters an order number, and associated fields for that order number (row) from the Orders table (SQL Server 2000) populate the cells as I have them mapped. Now I am trying to...
  4. cyberbob2

    Excel MS Query question

    Hello, I have an Excel sheet using the MS Query tool (QBE grid) for pulling data from a SQL Server db into the sheet, works great. My question is, do the intended users ALSO need to have MS Query or can this sheet be distributed as a normal Excel sheet. Thanks in advance, CB
  5. cyberbob2

    Populating other controls on Excel sheet based on combo box value

    OK, I got it. Thanks for being patient with me. I'm a java guy, not used to their Microsoft stuff.
  6. cyberbob2

    Populating other controls on Excel sheet based on combo box value

    OK, so if I want to have a hidden sheet with all my populated cells and reference those cells, then I can do something like: =Sheet2!A1 Would this be correct?
  7. cyberbob2

    Populating other controls on Excel sheet based on combo box value

    I know this might seem strange, but I'm not sure how
  8. cyberbob2

    Populating other controls on Excel sheet based on combo box value

    Yes it does, but I cannot get those cells to map over to the cells I need populated. I tried copying the formulas from the populated by query cells to the cells where I need the data to display, (Copy-->Paste-->All), but the cells I need to update don't update when the value in the criteria cell...
  9. cyberbob2

    Populating other controls on Excel sheet based on combo box value

    SELECT Orders.order_name, Orders.order_number, Orders.order_status, Orders.dept, Orders.division, Orders.start_date FROM TESTDB.dbo.Orders Orders WHERE (Orders.order_number=?)
  10. cyberbob2

    Populating other controls on Excel sheet based on combo box value

    Hi PHV, Thanks, I can get all the table fields returned to one cell, but I can't figure out how to break them up so each field maps to a different cell on my hidden sheet. Once I get this I know I can simply copy the cells with formulas over to wherever I need them in the workbook. The hard...
  11. cyberbob2

    Populating other controls on Excel sheet based on combo box value

    Hi Skip, Thanks again. Once more question on this though. I have this working with one field being returned to one cell, but what I need to do is return several fields from one table and have them mapped to several cells throughout the sheet. Can't seem to get this to happen. Hope this makes...
  12. cyberbob2

    Populating other controls on Excel sheet based on combo box value

    Hello, sorry if I didn't explain it very well before. Actaully, what I'm trying to do is populate other fields on the form based on the value from a combo box which displays the id number, but the other fields are from different fields in the table. I'm populating the order_ids into the combo...
  13. cyberbob2

    Populating cells on Excel sheet based on selection from combo box?

    Hello, below I am populating a combo box using ADO/SQL Server connection. Could someone show me an example of how to populate other cells on the Excel sheet based on the value selected from the combo box? My code module: Public Sub PopulateControl() Dim cnRetailData As ADODB.Connection...
  14. cyberbob2

    Populating Excel 2000 cells with SQL Server 2000 data

    Hello, I have an Excel 2000 sheet I am able to bring data into and map to certain fields via the Query Wizard, no problem. But, it seems that I could do this through VBA automation and/or macro which might be better. Could someone show me an example of how to do this with VBA automation? My...
  15. cyberbob2

    Repost: javax.servlet.ServletException: Define tag cannot set a null

    Hello, I'm running a java-based web app on JBoss. In IE on a PC, these are not a problem: <%@ taglib uri="struts-logic" prefix="logic" %> <%@ taglib uri="struts-bean" prefix="bean" %> <%@ taglib uri="struts-html" prefix="html" %> In Mozilla/Firefox, Safari and IE on a MAC, I get this JSP...
  16. cyberbob2

    javax.servlet.ServletException: Define tag cannot set a null value

    Here is the web.xml: l version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <display-name>TESTAPP</display-name> <description>TEST Application</description>...
  17. cyberbob2

    javax.servlet.ServletException: Define tag cannot set a null value

    Hello, I'm running a java-based web app on JBoss. In IE on a PC, these are not a problem: <%@ taglib uri="struts-logic" prefix="logic" %> <%@ taglib uri="struts-bean" prefix="bean" %> <%@ taglib uri="struts-html" prefix="html" %> In Mozilla/Firefox, Safari and IE on a MAC, I get this JSP...
  18. cyberbob2

    How to remove the first leading zero in a string

    Hello, I have a function which removes ALL leading zeros, but is there a way to remove only the FIRST leading zero? Any help would be greatly appreciated. Below is my function to remove ALL leading zeros. Thanks in advance, KP Public Function RemoveLeadingZeros( _ ByVal strValue) As...
  19. cyberbob2

    Form validation using text (data) file

    Hello, I have a finite list of values that I need to use to validate what users enter as a valid number. I would like to simply put these numbers into a flat file (txt or csv) and be able to use a javascript to use this file to compare the value that the user entered with a match in the file...

Part and Inventory Search

Back
Top