Search results

  1. Bodisathva

    Imus

    or, as has been pointed out on numerous occasions, you operate upon stereotypes, media hype, and really have no clue about most of your drivel... more than once.
  2. Bodisathva

    Imus

    ho == shortening of *****, also slut, skank, prostitute, tramp, hooker, etc nappy-headed == while 'nappy' is technically a diaper, the term nappy-headed is usually a descriptive for a less than coiffed hairdo. Personally, I find the Reverends Sharpton and Jackson to be little more than a...
  3. Bodisathva

    Photoshop CS2

    first click = start point. second click = end point. instead of clicking the second point, click and drag to produce the desired curve
  4. Bodisathva

    The memorable car you had

    Ahhh...my first car...1986 Pontiac Fiero 2M6, 4spd, mid-mount, all black. Loved that car:D Couldn't find any on-line pictures of it's final disposition. Did a Chevy V8 conversion and applied the Testarossa side fairings.:eek: ...sadly, it lost a battle with a telephone pole:o
  5. Bodisathva

    The memorable car you had

    Thanks, Brian :) I was beginning to think all Brits were just like those two...:eek:
  6. Bodisathva

    This guy's an idiot...

    apparently it's not just the journalists (who actually train on how to spin and sensationalize), now it's the damn bloggers that think they're journalists. but to answer your question, I'd say, no...definitely not
  7. Bodisathva

    This guy's an idiot...

    We could modify that to "Journalists have the absolute responsiblity to report the truth, without spin or sensationalism"... but who'd read their stories?:D
  8. Bodisathva

    Happy Birthday FOFA

    Happy belated, FoFa
  9. Bodisathva

    Time addition with numbers

    ...make the interval portion of the DateAdd() a negative number...
  10. Bodisathva

    cant save into a specific pc from citrix

    D:\ should refer to the server's D drive. 'client' refers to the client that is currently running the application (actually, a workspace set up by Citrix for the application to run in). The application itself cannot distinguish who's actually running it, because from it's perspective, it is...
  11. Bodisathva

    Outlook Object Libraries

    Detect the outlook version on startup and establish the correct references. (you'd also need to remove all references on shutdown)
  12. Bodisathva

    Instantiate Objects on FormLoad

    you can't create objects when the form is not in design view. Best way to accomplish dynamic creation of forms is to build the entire form (in design view, of course) then switch to normal view as opposed to adding objects to an existing form. Use the acSaveNo option on close.
  13. Bodisathva

    What's your best/worst joke?

    All of these are legitimate companies that didn't spend quite enough time considering how their online names might appear ... and be misread. These are not made up. Check them out yourself! Who Represents is where you can find the name of the agent that represents any celebrity. Their Web...
  14. Bodisathva

    cant save into a specific pc from citrix

    d:\'client'\wine2.mdb denotes the "d" drive on whatever machine you are running the application on. With Citrix, the client machine is only viewing screenshots and transmitting keystroke information (hence the speed of the connection), but the application itself is running on the Server. If...
  15. Bodisathva

    Retreive the server name and share

    (extra steps for clarity) Dim fsObject As New FileSystemObject Dim file As file Dim driveLetter As String Dim actualUNC As String Set file = fsObject.GetFile(CurrentProject.FullName) driveLetter = file.Drive actualUNC = Replace(CurrentProject.Path, driveLetter...
  16. Bodisathva

    cant save into a specific pc from citrix

    you are trying to save to a mapped drive... shift your save path to UNC in the form: \\server\share...
  17. Bodisathva

    Movie name game

    Clint Eastwood -- Fist Full of Dollars You, sir, are a coward. You just shot an unarmed Man! He should'a armed himself.:cool:
  18. Bodisathva

    Customizing Autonumber

    if the prefix is irrelevant to the number, i.e. if you have AUD-001 you cannot have PAY-001, you can create the primary key simply by concatenating the pieces you require along with a record count: recNumber = DCount("*",table,"1") + 1 pKey = strPrefix & "-" & Format("000", recNumber) if you...
  19. Bodisathva

    Editing data in SQL Server

    couple of different choices, the easiest being link the tables through Access and you would reference them just as you would a local table. The second choice would be using pass through queries to allow the server to do the heavy lifting. search the forum for linked tables or pass through...
  20. Bodisathva

    Movie name game

    Tim Roth -- Pulp Fiction
Back
Top Bottom