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: *

  1. nexcar

    Set Nocount On or equivalent for Access2000

    I'm writing an app in vb6 that uses an Access 2000 db to store info. When running a stored procedure and trying to put the results into an ADO recordset, the EOF flag is always TRUE. I had similiar problems on some SQL projects until I found the wonderful command SET NOCOUNT ON. I use it in...
  2. nexcar

    Outlook "ALL DAY" Calendar events change to HOURLY on timezone change

    I work in the eastern and central time zones. I use Outlook calendar in my personal folders on my laptop. Whenever I change timezones, all of my scheduled "all day events" on my calendar change to timed events and shift up one hour. This makes events on my calendar move from day to...
  3. nexcar

    Replace str using wildcards?

    It does work, albeit lengthy, but you get a star for your effort. Thanks! RUN FunnySignatureMessage
  4. nexcar

    Replace str using wildcards?

    YES!!!! EUREKA!! And whatever else you say when experiencing an apiphany. For anyone else who wants to know the solution, here it is: Dim objReg As New RegExp objReg.Pattern = &quot;<a*>&quot; txtData.Text = objReg.Replace(txtData.Text, &quot;&quot;) You must include the...
  5. nexcar

    Replace str using wildcards?

    I have raw html code for a news story. I've used the Replace(MyString, ReplaceWhat, ReplaceWith) as String function to replace all the <p> and </p> tags, but I'm having trouble with the <a href=URL> tags. See, the problem is that the 'a' tags vary in length and content so unless there is...
  6. nexcar

    Reading/analyzing HTML Source

    I am so, so sorry guys. I meant to post this in the VB6 forum.. My mistake. I can't figure out how to delete posts to Tek-Tips. But if you do know the answer to my question, please post it, I'll be monitoring this post. Sorry again. RUN FunnySignatureMessage
  7. nexcar

    Reading/analyzing HTML Source

    I've created a program with an address text box, and Inet control, and an output text box. When I enter an URL into the address textbox, the (multi-line=TRUE) output text box fills with the raw HTML code. I would like to analyze this raw code line-by-line. The only thing I don't know how to...
  8. nexcar

    A Common trend?

    And if anyone wants to know what Tarwn's signature means, it says 'Got Coffee?' in Binary. Sorry, Tarwn, the geek in me couldn't resist converting it to ascii. RUN FunnySignatureMessage
  9. nexcar

    A Common trend?

    Its kinda like finding a chick that likes football or stockcars. They are one in a million! RUN FunnySignatureMessage
  10. nexcar

    Query by day of the week

    You can. Here is a SQL code example: SELECT * FROM [yourTable] WHERE weekday([dateField] = 3 RUN FunnySignatureMessage
  11. nexcar

    Query by day of the week

    There is a function that you can use to enter a date and it will return the day of the week example: Dim MyDate, MyWeekDay MyDate = #February 12, 1969# ' Assign a date. MyWeekDay = Weekday(MyDate) ' MyWeekDay contains 4 because ' MyDate represents a Wednesday. Here is the syntax...
  12. nexcar

    Text field must only contain numbers/dashes

    If you are in Access, just use an Input Mask. Input masks allow you to pre-determine what is a valid text box entry without using any run-time code. Refer to the MS Help document. It has all you need for creating input mask and even how to change the mask during run-time if needed. RUN...
  13. nexcar

    Job Recruiter nightmare! -A warning!

    From what I've read, the benefits seem pretty good, but I don't think they are work 7k a year! RUN FunnySignatureMessage
  14. nexcar

    Job Recruiter nightmare! -A warning!

    From now own, I'm gonna have somebody to write down every thing that is said at all times! -lol &quot;I'm not Barky the Dog, kid. I'm just a man whose made a lot of mistakes.&quot;
  15. nexcar

    Job Recruiter nightmare! -A warning!

    See there, this is why I'm mentally challenged. He told me over the phone, the only salary in writing was what they paid me while contract working. I'm currently scouring my email logs for any mention in an email message. This was my first job change in 5 1/2 years! I didn't go through one...
  16. nexcar

    Job Recruiter nightmare! -A warning!

    I hate to bring up something like this on this forum but I feel that you guys are my peers in the field. I've recently been screwed by my recuiter. I've been working under contract (read: no benefits) for 2 months now for a recruiting company. I've been doing work for a major company in the...
  17. nexcar

    A Common trend?

    benlinkknilneb: I wish I could go that route, but my programs control production testing in an industrial, electronic manufacturing environment and, by some strange fate, could possibly injure someone. RUN FunnySignatureMessage
  18. nexcar

    A Common trend?

    sleipnir214: Wow! Now that's an original thought on this subject. I like that. RUN FunnySignatureMessage
  19. nexcar

    Comments in code

    CCLint: That was the answer to my question. I've never seend that toolbar before. Just never toyed around with the IDE enough to know. Thanks! But I do suggest that VB programmers check out the mztools! RUN FunnySignatureMessage
  20. nexcar

    How do you get the names of the computers, swiched on, on the network

    Quick steps to test function: 1 Create a new form - (Make sure you have the module I supplied as part of the project) 2 Add a command button and 2 text boxes DO NOT RENAME THEM OR COPY ONE FROM ANOTHER. 3 Copy this code and paste it into your form. Private Sub Command1_Click() text2.text =...

Part and Inventory Search

Back
Top