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

    Create an instance from assembly in the GAC...

    This is in regards to .NET 2.0 framework..
  2. Programmer76

    Create an instance from assembly in the GAC...

    Hi, I am having a difficult time with referencing a dll in the GAC. I have signed and deployed the dll to the GAC and I can see it in there. What I would like to do is create and instance of the class that is inside the dll. During developing I have just had a refernce to the dll in my...
  3. Programmer76

    Simple write to file with smart device...

    Hi, I am learing smart device programming and can't seem to do a simple open and create a file... Dim fs As FileStream = File.Open(System.IO.Directory.GetCurrentDirectory + Me.sFileName, FileMode.Create, FileAccess.Write) Dim sw As New StreamWriter(fs) 'Serialize the...
  4. Programmer76

    Should be simple...Picturebox on Poclet PC...

    Hi, I am starting to to some stuff with Pocket PCs and I am stumped at how to go about changing an image in a picturebox...any ideas??
  5. Programmer76

    wrong directory...

    Thanks that is what I was thinking...thanks for the suggestions! CES
  6. Programmer76

    wrong directory...

    Thanks for the explanation jpadie, gotta get a star for that solid explanation. However, I don't think I mentioned enough details. I do understand the different was to move around directories but here is my problem. Currently the files are not actually in the root. They are actually in...
  7. Programmer76

    wrong directory...

    The error is: print_header(includes/inc/admin.inc): failed to open stream: No such file or directory in...
  8. Programmer76

    wrong directory...

    Hi, Can someone tell me how to best handle requiring files with the require_once function. I have a files structure like this: WebsiteRoot admin - myadminpage.php includes inc - admin.inc - index.php That is the basic directoyr structure. myadminpage.php includes the...
  9. Programmer76

    Static Functions error??

    It is definatley a problem trying to create the static function. It does not get far enough to instantiate the object.
  10. Programmer76

    Static Functions error??

    Thanks for the link! Answers that question. Now does anyone know of a workaround for this instead of a file of functions? I would like to have a class that a can use and not have to instaniate it.
  11. Programmer76

    Static Functions error??

    Maybe I just got a little confused with this link... http://ca.php.net/manual/en/language.oop5.static.php It says: The static declaration must be after the visibility declaration. For compatibility with PHP 4, if no visibility declaration is used, then the member or method will be treated as...
  12. Programmer76

    Static Functions error??

    I just read shomething that said the static keyword was introduced in php 5...is that really the case? Any ideas?
  13. Programmer76

    Static Functions error??

    Hi, I am trying to create a static class but I cannot seem to do so...here is the code: class Validate { public static function test(){ echo '<br>TESTING<br>'; } } I get an erro on the declaretion of the function test... Parse error: parse error, expecting `T_OLD_FUNCTION' or...
  14. Programmer76

    Performance...

    Thanks for the opinions! In reagrds to the pointer thing...this is sort of what I was thinking...I had made the function take the string parameters by ref (just t use the pointer)... function myFunction(&$myRef){ //STUFF } just to make sure though when I call the function do not use the...
  15. Programmer76

    Performance...

    Hi, Does anyone know how I can figure out the performace draw backs of the number of paramerters you send to a function I have created? For example I would like to make a funtion that takes 4 parameters. The parameters will contain the following: 1. Approx 15 characters 2. Maybe 75 characters...
  16. Programmer76

    Download into outlook...

    Thanks. The vCal is essentially the way that I had decided to do it. I had found the iCalendar file which is supposed to be a newer Internet Calendar file. Testing so far looks good for Outlook. CES
  17. Programmer76

    syntax error.. please help

    Are you sure that you can put JS in the URL?
  18. Programmer76

    Download into outlook...

    Hi, Can onyone offer any suggestions or a start point to find out out to download an event into Outlook? May need a suggestion on the calendar as well, I would guess that they sorta go hand in hand. Any suggestions? CES
  19. Programmer76

    Naming Convention...

    I will have to agree with r937.
  20. Programmer76

    Naming Convention...

    Great suggestions so far, thanks. Anymore?

Part and Inventory Search

Back
Top