User Profile

Collapse

Profile Sidebar

Collapse
modmans2ndcoming
modmans2ndcoming
Last Activity: Feb 11 '10, 12:06 AM
Joined: Sep 1 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • modmans2ndcoming
    replied to what is wrong with my script.
    in Perl
    Do you mean bold tags rather than breakline

    There is no breakline tag in your example and the breakline does not have a closing tag, it is self closing.... I will assume you mean the bold tag.

    The way you have written your regex, it is looking for a breakline tag so right off the bat, that needs to be fixed.

    Furthermore, the way you have it written, it will only pickup on a pattern that contains a URL...
    See more | Go to post

    Leave a comment:


  • modmans2ndcoming
    replied to C# or C++
    .net is not a disadvantage. 90% of the framework is portable. If you stick with developing to mono, and GTK# for the toolkit, then you have an application that will run on any .net 2.0 system with the addition of the gtk# libraries, but you can install those when the program is installed.
    See more | Go to post

    Leave a comment:


  • modmans2ndcoming
    replied to Creating directory/subdirectory
    in Perl
    you will need to do a regex search to parse out the different parts of the file path, then add the directory is needed (use File::Path), and then move the file into the directory.
    See more | Go to post

    Leave a comment:


  • Why not just track what day of the year it is and use offsets to discover what day of what month you are in then report that back to the system that is interested?
    See more | Go to post

    Leave a comment:


  • In the Button click event, assign an empty string to the textbox's text.value property. That will clear the text box and prep it for your next entry.

    make sure to give the textbox focus again in the click event as well so that the user can start typing as soon as he/she clicks the button.
    See more | Go to post

    Leave a comment:


  • Thanks for the help. It worked!
    See more | Go to post

    Leave a comment:


  • modmans2ndcoming
    started a topic How to get an application Icon set up
    in .NET

    How to get an application Icon set up

    I am working in VS 2008
    I have an ico file with 3 different sized images
    I have added this icon to the "Solution Items"
    I want to have this icon be the application Icon you see attached to the exe once the build is completed. How do I accomplish this? I have looked everywhere and there does not appear to be a clear explanation of this process, at least using the phrases I have been searching with.

    Thanks...
    See more | Go to post

  • I solved my problem.

    It appears DAO.OpenRecords et does not like all the stuff that Access throws around like the form hierarchy and stuff. so I replaced the [forms]!... with a variable name and concantinated it in and it worked.
    See more | Go to post

    Leave a comment:


  • DAO.OpenRecordset throws an error but SQL is good

    According to Access 2007, when I use the query builder, this sql code returns exactly what I want from my table

    Code:
    Select reports.[rptName] FROM reports WHERE (((reports.rptLable)=[Forms]![startup]![rptPicker]));
    but when I am using the DAO.OpenRecords et method to run the sql statement I get an error saying "to few parameters. Expected 1"

    Any help resolving this will be greatly appreciated.
    ...
    See more | Go to post
No activity results to display
Show More
Working...