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 wOOdy-Soft 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: LikeThisName
  • Content: Threads
  • Order by date
  1. LikeThisName

    redirect localhost

    hi there is server when you type http://localhost it redirects to http://localhost/intranet/pages/details.asp How they do that? I can't find where that path is defined so I can replicate it. Thanks, any help much appreciated LikeThisName <- ?
  2. LikeThisName

    reference textbox dynamically

    Please what is wrong with this code? Private Sub UpdateAnswer(ByVal question As Integer, ByVal answer As Integer) Dim x As Integer Dim t As TextBox Dim b As Button t = "textbox" & question t.Text = answer For x = 1 To 5 b = "Button"...
  3. LikeThisName

    help with filter: query

    i have a query that returns the names of people with a window office, most of these people are part of a Group A. A few of these window offices are shared by two people, but I only want to return one name per room. I can return one name already incorporating vbscript to filter the array i build...
  4. LikeThisName

    current folder name only

    what is simplest / best way to get the current folder name (not the whole path) for instance i have an asp include and I want it to be dynamic and set a variable to the name of the folder that it's in, regardless of the full path of the asp file. can someone tell me how to do it in the least...
  5. LikeThisName

    execute SQL by using *.SQL file, is this possible?

    instead of for instance.. objConn.Execute "SQL STATEMENT" could i... objConn.Execute "*.SQL" LikeThisName <- ? Sorry It's Taken =)
  6. LikeThisName

    wierd request: need to close Word and ReOpen once.

    I need to close winword on open and then reopen it. why. each day macros are pushed out first time word is opened but the macro's don't run until word is exited and reopened. any ideas? TIA LikeThisName <- ? Sorry It's Taken =)
  7. LikeThisName

    sort 10A before 100,101, etc..

    had a field called tab that was a number and converted to text in order to go back and add letters to numbers. for sorting solution i propose creating field in a query that strips last character of tab if not a number so 10A would become 10 so it definitely would come before 100,101 etc. 2nd...
  8. LikeThisName

    how to send/recieve modified outlook form

    I am in a phone message form (phone icon in top left corner of outloook xp). I click design form i make modification changing return call to returned call in label. I then publish form in my personal form directory as Phony Message. Then I open form it looks great. then i send form to myself...
  9. LikeThisName

    ARRAY refresh

    using asp/sqlserver to generate a javascript flag and prevent duplicates or exceeding hundred percent, problem is correctling flaggin duplicate projections. PROBLEM: IF array is empty instead of always being empty when it should be it is what ever it was last if not empty. SO when it should...
  10. LikeThisName

    a popup referencing its opener's parent?

    i can reference parent: parent.formname.mylistbox i can reference the window that opened a popup. opener.formname.listbox but how do i reference the parent of an iframe that opened a popup? tia, LikeThisName <- ? Sorry It's Taken =)
  11. LikeThisName

    how to strip string based on criteria between commas

    i have a string that will look like this: INSERT INTO insiteCROMO.dbo.PGW_estim (UserID, Date1, WLoad, Nickname) VALUES ('DelorA', 'Jul 3 2004',60, 'TEST NEW REF') i need to create an integer that return in the case above 60. the integer will always be 5-100 and it will always be between the...
  12. LikeThisName

    insert file need help with pseudo code

    i would like to use FSO to open an XML document write a line then insert a text file then write some more lines then insert another text file. is this possible? i know how to open and write a file i just didn't know if there is a limitation to FSO as far as how many files I can have open and...
  13. LikeThisName

    How to define a function that returns a string.

    basically i would like to write a function that returns a string. (a long string) i need to be able to call my function like this. response.write myFunction(someInteger) function myFunction(myInt as integer) as string dim mystring mystring ="" for x=0 to myInt mystring = mystring &...
  14. LikeThisName

    WORKS IF LIST IS SELECT MULTIPLE BUT NOT SINGLE

    THIS CODE WORKS IF LIST IS SELECT MULTIPLE for (i=0;i<List.length;i++) { List.options[i].selected = false; } I need it to work on single select in a single select once you select you can't seem to unselect so is changing it from a single to a multiple to use the code...
  15. LikeThisName

    need help with unselecting listbox

    THIS CODE WORKS IF LIST IS SELECT MULTIPLE for (i=0;i<List.length;i++) { alert(List.options[i].text); List.options[i].selected = false; } I need it to work on single select in a single select once you select you can't seem to unselect so is changing it from a single to a multiple to...
  16. LikeThisName

    default value besides 0?

    have a date field in sql server want to set the default to today. i can get today with vbscript when constructing an insert statement but i thought i should use the backend if possible to calculate today's date. LikeThisName <- ? Sorry It's Taken =)
  17. LikeThisName

    do i need a custom record selector

    here is my problem i have two listboxes who's record sources are based on a record id. but it doesn't requery when record id is moved to the next with record selector now if i requery on gotfocus it works fine but users see's inaccurate options until they click on listbox, that aint right. i...
  18. LikeThisName

    fso code question /approach

    Project: Need to allow people to access files from intranet but only edit them from PCDOCS where changes are recorded. Solution: CopyFile on the fly and have them open that, or preferably open file or copy in read-only format Approach: Feel Free to question this) Since I can't write to a temp...
  19. LikeThisName

    DECIPHER BROWSER: IE vs. Winword

    an unusual request, may have many solutions, i'm aware of two ways, one i know how to do the other i think i should be able to do but don't know how. WHAT I NEED: make a document available for read only on intranet but editable through pc-docs/Word. SOLUTION 1 (i know this way) on...
  20. LikeThisName

    probably a dumb question

    showing forms or form controls in general don't work for me when i open a word document through web browser but works fine during winword session. is this a reality or a an internet explorer setting? anyway around this other than not to use forms with templates? thanks any advice or pointers...

Part and Inventory Search

Back
Top