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 bkrike 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: hd65
  • Content: Threads
  • Order by date
  1. hd65

    Excel variable usage??

    Here's what I have.. SearchText = searchBoxtext.Value With ActiveSheet.QueryTables.Add(Connection:=Array(Array( _ "ODBC;DefaultDir=C:\newsystest;Driver={Microsoft Text Driver (*.txt; *.csv)};DriverId=27;Extensions=txt,csv,tab,asc;FIL=text;MaxBuffe" _ ), Array(...
  2. hd65

    Excel macro Query questions

    First..I'm new to VB and macros. And I'm just looking for some help to get started in the right direction. Here's what I'm trying to do. I have some CSV files that I want to query based on a user input in a textbox and I want the query results to be displayed in a combobox. I need this to happen...
  3. hd65

    Listing excel sheet names

    I have a spread sheet with several sheets. I want to --From another excel file-- get all the sheet names and list them in a combo box via a macro. Is this possible?
  4. hd65

    Tk module geometry window size question

    Hi, Here is waht I have: use strict; use Tk; my $mw = MainWindow->new; my $width = "1024"; my $height = "768"; $mw->geometry("$widthx$height+0+0"); $mw->title("WOProj"); MainLoop; The geometry line should make the window width=1024 height=768. but I...
  5. hd65

    Printing the canvas--What am I doing wrong?

    Hi, here is what Tk::Canvas doc says; $canvas-gtpostscript(?option, value, option, value, ...?) here is what I have; use strict; use Tk; use Tk::Menubutton; use Tk::Canvas; my $wow = MainWindow->new; $wow->title("Printing"); my $wocanvas = $wow->Canvas(-width=>200,-height=>110...
  6. hd65

    Help with hash/database

    HI, I can’t figure out how to do this: I need to build a database like this, key = colors=> color1 => red color2 =>blue color3 => black ect… key = shapes=> shape1 => oval shape2 => square shape3 => circle ect… ect... I need to search on key and return each item separately when...
  7. hd65

    Can I use a loop?

    here is the script that works but I would need to enter about 500 if else statements and the same number of totals. Is there a way I can shorten the script? --------------------------------------------- function total() { var totals = new Array(); if (document.total.pic1001){ totals[1] =...
  8. hd65

    url and form text box value

    I have 2 frames the top frame displays an jpg file (the url of the frame is the path and file name of the jpg). the bottom frame has a form with a hidden text box. I need to set the value of the text box to the url of the top frame each time the bottom frame is reloaded. I can set a variable to...
  9. hd65

    help setting a cookie

    Hi, Is there a way to set the value of a cookie based on an image loaded within a frame? I have this {setCookie("someimage", parent.imageside.location.href); but the "location.href" will not load the image when I call the cookie in a form. thanks paul
  10. hd65

    Setting a cookie value

    Here's what I have.. An image(1001.jpg)displayed in a frame. And a button to set a cookie. Here's what I'm trying to do... When the button is clicked I want the cookie name set to whatever(the name I can change later if I need to) and here is the hard part I need the value set to the image...
  11. hd65

    Adding numbers from a text object value?

    I have several text boxs that display a number (subtotal)and I need to add all the (subtotals) and display that number in another textbox. Is this close?? form.text1box.value = form.text2box.value + form.text3box.value....I know it's not right I get NaN error.

Part and Inventory Search

Back
Top