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

    Is there a way to run a javascript command on a page in IE.

    Thanks Everyone, That's the information I'm Looking for. Sorry If the post wasn't descriptive enough, it looked good to me. [smile] Brawn - The difference between genius and stupidity is that genius has its limits -
  2. Brawn

    Is there a way to run a javascript command on a page in IE.

    Netscape has a JavaScript Console. So what does Internet Explorer have? I Don't Know. VB Code runs as interpreted code until it is compiled and it has an immediate window. I want to know if Internet Explorer has the same functionality for JavaScript. Brawn - The difference between genius...
  3. Brawn

    Is there a way to run a javascript command on a page in IE.

    I want to access elements on a page to confirm there values without writing code into the actual Source itself. I know an "alert" box in the source would do this but there must be another way. script debugger would be an option also but I can't get it working, it doesn't seem to...
  4. Brawn

    Can you 'Return' something from a form?

    The only way I can think, is to create a function that handles the form and returns the value. public function getNumber()as integer dim returnValue as integer frmGetNumber.Show returnvalue = frmGetNumber.gm_intSelecteNumber frmGetNumber.Hide getNumber = returnValue End function...
  5. Brawn

    Can you 'Return' something from a form?

    I've been working with forms for a while and I don't have a 'style' developed yet. I keep thinking there must be something more than just accessing global variables. You know how you can get the return value of msgbox. if msgbox("Press Yes for msg.",vbYesNo) = vbYes then...
  6. Brawn

    Can you 'Return' something from a form?

    Can you 'Return' something from a form? *without knowing where the form was called from? [neutral] Brawn - The difference between genius and stupidity is that genius has its limits -
  7. Brawn

    positioning elements using CSS

    I tried putting the align="center" option in the div tag but that doesn't seem to work either. I think the class must override it or something. Brawn - The difference between genius and stupidity is that genius has its limits -
  8. Brawn

    Design question: Storing Keywords.

    So, I could have keywords in another table associated with a product, but when searching I could also use the product's description. This would give me benifits of both methods. [neutral] Brawn - The difference between genius and stupidity is that genius has its limits -
  9. Brawn

    Design question: Storing Keywords.

    I am the end user. Design and Speed is Key. Thanks alot,[smile] Brawn - The difference between genius and stupidity is that genius has its limits -
  10. Brawn

    Some Cleanup Tips?

    Well, is setting an object to nothing really freeing memory or does it just change what the object references? So the memory that was used by the object is just hanging out there somewhere for a while. Maybe I just can't get rid of C++ habits? I always have a Clear method in my objects to...
  11. Brawn

    Some Cleanup Tips?

    Hi, Just doing a little cleanup here and setting my strings to 'vbNullString' and my objects to 'Nothing'. what should i set my integers to? Maybe 'vbEmpty'? Any other "Clean Up" information or tips is also invited., [neutral] Brawn - The difference between genius and stupidity is...
  12. Brawn

    Is there an 'if in Debug mode...' ?

    I want to raise an error if in debug mode but do something else if not. I know theres a way, I just don't know what it is. I DON'T want to set a global variable and have all my code check to see whether it is true or not becuase I want my objects as reusable as possible. Any thoughts, [smile]...
  13. Brawn

    Which is better ' rs("fieldName") ' or ' rs!fieldName ' ?

    Which is better: rs("fieldName") or rs!fieldName Pros? Cons? Any comments at all may be a help. Brawn "My mind is my Shrine, and my body the Temple around it." -The difference between genius and stupidity is that genius has its limits-
  14. Brawn

    How do you make a block comment?

    I can't find a shortcut key, is there a way to set one. Brawn "My mind is my Shrine, and my body the Temple around it." -The difference between genius and stupidity is that genius has its limits-
  15. Brawn

    How do you make a block comment?

    Hey, How do you make a block comment? Thanks, [smile] Brawn "My mind is my Shrine, and my body the Temple around it." -The difference between genius and stupidity is that genius has its limits-
  16. Brawn

    How to stop linebreak after a heading tag eg. <H1>

    Is there any way to stop a line break after a Heading tag I've tried things like: H3{break-after:never} I don't know. 8o( any thoughts, Brawn "My mind is my Shrine, and my body the Temple around it." -The difference between genius and stupidity is that genius has its limits-
  17. Brawn

    Design question: Storing Keywords.

    I have a Product and each product would have an unknown amount of keywords related to the product. Should I make another table 'Keywords' and associate each keyword to a product Code Table(field1,field2, etc...) Products(code,name,description, ...) Keywords(productCode,keyword) Or is there a...
  18. Brawn

    Date determination within a time period.

    Awesome, Thanks. Brawn "My mind is my Shrine, and my body the Temple around it." -The difference between genius and stupidity is that genius has its limits-
  19. Brawn

    Date determination within a time period.

    I'm developing an application that needs to be able to tell if a date is within the - last day - last week - last 2-weeks - last month any functions or algorithms that might help me would be much appreciated. Other considerations are: -leap years. -format of dates. [neutral] Brawn...
  20. Brawn

    How do you find a Hard return in text.

    wait a minute, what if there is more than one hard return in a string you coudn't still use this could u ? i = InStr(strString, 1, Chr$(13)) i found that this works to For i = 1 to len(strString) If Asc(Mid(strString,i,1)) = 13 Then 'do something End If Next i Brawn "My...

Part and Inventory Search

Back
Top