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 John Tel 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
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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??
  4. 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...
  5. 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...
  6. 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...
  7. 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
  8. Programmer76

    Naming Convention...

    Hi, Anyone have any suggestion for a good naming convention to use when naming table and columns? I was taught LikeThis. Any opinions? CES
  9. Programmer76

    Extra Line Breaks...

    Hi, I am trying to create a csv file using fwrite and the file is created no problem. I am simply looping my MySQL recordset and entering it into the file as follows: $strData = $row['MyID'] . "|" . $row['TextInfo']; fwrite($FileHandle, $strData); It looks like the field TextInfo contains...
  10. Programmer76

    Sort array of structures...

    Hi, I am new to VB.NET and am looking for a way to sort and array of structures. Example: I have a structure that contains first name, last name, and age. I would like to be able to sort on any of those propertise. Any suggestions? CES

Part and Inventory Search

Back
Top