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

    form values not clearing.

    I have a .NET form using C# that I use for both editing a table and adding a new record. When editing, it grabs data from a record and fills the form text boxes with the info, and shows an "Edit" button. Click on "Edit" and it works fine. At the top, I have a "New" button. This is supposed...
  2. Pandyon

    Accessing javascript class change on the server side (C#)

    So I have looked for days for a solution online to this, and I've tried different ways of doing this, but can't seem to find a complete solution. So please HELP! I have a form that a user is filling out online. At one point in the form, they select keywords they want to associate with their...
  3. Pandyon

    Join problems: I'm missing something simple I think.

    I don't write SQL that much, and usually my queries are pretty straight forward. I'm having a problem (I think it's join-related) where I want all the records from one table (A), but then if a related table (B) has a piece of data to add, I want it, but if not, I want it to return a blank or...
  4. Pandyon

    combining a List with a Select statement..how?

    I've got a convoluted Select statement gathering lots of info from a variety of tables. Abbreviated, I've written something like this: Select master_customer_id, name, title, company, user FROM cus_table WHERE name LIKE 'A%' On a separate piece of code, I'm using this nice little snippet...
  5. Pandyon

    keeping login on my site

    I have a login form (enter.cfm) that submits to a page that checks the login (check_login.cfm). Some people have written their own page code on their own site, so it goes to my page (check_login.cfm) that checks the login, without them having to go to my own login page. Is there a way I can...
  6. Pandyon

    Passing Session variables between coldfusion & ASP

    I searched around on some forums for this, and everyone seems to suggest using a database as the middleman. But is there a way to pass a session variable established in coldfusion to ASP so it sees it too? My website runs on Coldfusion, but we are revamping some things and our new...
  7. Pandyon

    too much traffic

    Searched around but couldn't find any specific help on this. I run a website that is in ColdFusion. It's a site that gives away free tickets. We did this last year and had no problems when we went live, even with a huge hit at the beginning. This year, the code is much more complicated...
  8. Pandyon

    Which DB Platform to use??

    Okay, I've been out of the DB design game for about a year and a half. Previously, I did some intermediate design in Microsoft Access 2003, some good VB scripting with that, and a lot of ASP scripting (the DBs run off websites for the most part). I'm in the pre-design phases of a new...
  9. Pandyon

    Yahoo Stock Quote properties.

    Does anyone know what the properties are for downloading details about a yahoo stock quote are? I have the basic string: http://finance.yahoo.com/d/quotes.csv?s=ibm&f=sl1d1t1c1ohgv But I know there are many more properties I can add to get more info...I just don't know where there is a...
  10. Pandyon

    Tracking a Web Page

    About eight months ago, I THOUGHT I read some sort of programming book that spoke about grabbing the HTML code from another web page on the Internet. Basically, what I want to do is this: I want to keep track of when a page of information on another website is updated with new information...
  11. Pandyon

    ASPEmail Attachment Path problem

    I'm trying to program a page to grab a file from my website, attach it and send the email. The problem is it's a hosted site. Does the ASPEmail Attachment method need a hard-coded path like "F:/document/Doc1.doc"? or can I use "//website/document/doc1.doc"...I'm at a loss...
  12. Pandyon

    New Apostrophe Dilemma

    I've seen all these great posts on getting rid of the apostrophe before it goes into the database... But what if I can't do that. What if there are already apostrophes in Names in fields of my database (access)? For example, the last name "O'Connor" is already in my database many...
  13. Pandyon

    Changing Mail Properties?

    I've got some VBA work that sends emails from Word and Access, but I'm trying to assign certain variables that I can't seem to "find" in the Object Model...if someone could help, please. I want to assign information to whatever properties I can so that when the person receives the...
  14. Pandyon

    Outlook Object Model Where

    Somewhere...oh somewhere, I saw the Outlook Object Model for Access97 and Outlook98...or maybe it was 2000. But it's what I'm using..with all the commands. Now I can't find it.. Anybody know where it is? It was such a great webpage, with all the commands. Please help...
  15. Pandyon

    This may be laughable...

    Just beginning to work with javascript and doing some client side validation routines for an HTML form. What I have working is simple checks to make sure required fields have information in them. if (document.formname.vbDate.value == "") { alert("Please enter date")...
  16. Pandyon

    How did that thing work again??

    Saw this somewhere else, but can't seem to search properly for it. Really simple..I think. So little help, please. When I set the default value in an input box on a form from a variable, I'm not getting the full text in the variable. In input box is &quot;value=<%=vbAudCompany%>&quot;, and in...
  17. Pandyon

    Network drive mapping??? Help!

    First time working with VB in this situation. Helping a friend. They have a peer to peer wireless network (wireless..grrr). Mapped drives won't reconnect on logon because the wireless software runs AFTER the windows logon script. Could someone tell me if, and how I can map a drive letter...
  18. Pandyon

    Easy or Difficult?

    Using ASP (vbscript) pages for a website. Have multiple search forms. Example: Search Form #1 takes user criteria then submits to Page 2. Page 2 does the following: 1. Creates the WHERE clause of my SQL string with the user's criteria (validating and creating proper syntax). 2. Opens...
  19. Pandyon

    How/Can ASP access functions saved as Modules in Access

    I have been creating Active-X server side components to handle most of the coding for my internet site, only to discover that most web hosts won't allow custom components (dll's) on their servers. So, I'm using ASP (vbscript) and an MS Access database. Can I move my components to Modules in my...
  20. Pandyon

    Stored Procedures or Functions HOW???

    I'm using an MS Access Database on the back end. It's fully functional with forms, queries, vbmodules and such. I keep seeing in responses to people's questions that they should use FUNCTIONS or STORED PROCEDURE's to speed up the data (One guy said 20 lines of vbScript in a page is too much)...

Part and Inventory Search

Back
Top