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 Chriss Miller 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. christheprogrammer

    I want to pass an array of user defined types but can't

    Hi all, I want to return an array of my Line_Segments from a function with the types as follows: Private Type Coord e As Double 'Easting n As Double 'Northing End Type Private Type Line_Segment start As Coord end As Coord mid As Coord length As Double End Type Function...
  2. christheprogrammer

    Can I use Premier software objects from my own apps?

    Hi all, I want to control my external DV player from my own application using the Premier objects. I assume these are registered in the registry, and the bugs have all been worked out, is this possible or has anyone tried something like this? Thanks Chris Later
  3. christheprogrammer

    Finding a list based on 95% of a number

    Hey all, I have a table with two fields, one is a species code and another is the weight of that species that has been caught (fish). I also have a total weight of all species of fish caught and I need to determine the species which make up 95% of the catch... Table: species_code weight 111...
  4. christheprogrammer

    how to sum a field if others are the same

    Ok I feel like an idiot. How do you do this simple thing - Here is an example of the fields: Field1 Field2 Field3 Weight apple sweet red 2 apple sweet red 3 orange sour orange 1 orange sour orange 3 orange sweet orange 6 And I want this: apple sweet red 5 orange sour...
  5. christheprogrammer

    ridiculously easy? - counting unique pairs...

    OK, this shouls be easy. I am terrible with queries as I am a programmer and my mind works in loops much better. Anyway, say I have 2 columns in a table (obviously hypothetical): monkey blue chicken red chicken blue turtle green chicken blue monkey red monkey blue Now, I want the output to...
  6. christheprogrammer

    Embedded video all in first frame

    Hi all, - Flash MX question- I have some large embedded quicktime video files (~4mb). I noticed that using the bandwidth profiler, all the video content is in the first frame if the video is part of a symbol. So, streaming is totally out?! This makes no sense, there must be a way to stream the...
  7. christheprogrammer

    all WACK instances disappear after 10 seconds...

    Weird... Anyone heard of this - My flash swf seemed to be running just fine until the file size went over 15MB - I am using WACK component windowing system, and inside the windows I have embedded video (which is what makes the file size so big). All the windows vanish after 10 seconds regardless...
  8. christheprogrammer

    lock two frames together - 1 is cutoff on the bottom

    Hey all, anyone know how to lock two (vertical) frames together for scrolling? I want to do this because my site has a left column frame which holds the menu items and a right, or main frame which holds the content. On lower screen resolutions, the bottom of the non-scrollable left frame is cut...
  9. christheprogrammer

    mscoree.dll missing on non-.NET machine

    Hey everyone, I am compiling a vb app (release compilation) and my executable runs fine on my development machine, but on a machine without .NET platform installed it comes up with "Could not find msscoree.dll" and dies. I figured out that I must change the platform under which to...
  10. christheprogrammer

    Where can I find a decent 3rd party graph control?

    Hey all, I need a decent free 3rd party graph control, one that will graph an xyz scatter. Anyone know of such a thing? I have searched in vain on the net and found one at halloran and couldn't believe my eyes to see that they are asking $395 for it! Thanks a million Life is like a box of...
  11. christheprogrammer

    How do we tell if client browser has quicktime plugin?

    Anyone know how to tell if the client browser has the quicktime plugin installed? If they don't I want to redirect to a page explaining that they need it and a link to Apple's site to get it... Any info would help tremendously! Cheers Life is like a box of chocolates, sweet
  12. christheprogrammer

    I have a set of coordinates and a video - how do I combine them?

    Hey All! I have a set of latitude/longitudes and time which were recorded by a GPS device at the same time an ROV was taking video. So now I have the video and the text file with lat/long/timeIndex here in front of me. What I want to do, is create a graph of position and then have the screen...
  13. christheprogrammer

    Anyone can see my Password.xml file without being authenticated!

    Hey everyone I just tried typing in the address to my passwords.xml file in the browser, and even though I implemented Forms Authentication, anyone can view it (they are not automatically redirected to the login screen). Do I need to create another directory with only the passwords.xml file in...
  14. christheprogrammer

    Where's the list of button.Attributes as used in this previous thread?

    See this thread below: thread855-296976 It was the one about turning the mouse pointer into an hourglass. The solution was to access the Attributes of the button, so that when it was clicked ("onclick"), an hourglass would appear. Like this: myButton.Attributes("onclick")...
  15. christheprogrammer

    Powerpoint file saved as web page doesn't allow saving of pictures.

    Hi all, I have created a powerpoint presentation which contains many jpeg images. I then did a "Save As Web Page.." to create an htm version. When the user looks at this page, however, he/she cannot right click on a picture and select "Save Picture As..." in the typical...
  16. christheprogrammer

    Right-click "Save picture As.." saves aspx file instead of jpeg

    Hi again everyone, I am using the following code to send a jpeg out thru HTTP: Response.ClearContent() Response.ClearHeaders() Response.ContentType = "image/jpeg" Response.WriteFile(relativeJpegPath) Response.Flush() Response.Close() where relativeJpegPath is the path including the...
  17. christheprogrammer

    What's wrong with this simple code?

    Hi, this is the code for an ASP.NET page (aspx extension) but I have also tried to change the extension to .htm and I get the same browser error (Error - Page cannot be displayed) The file exists and has the right permissions. Am I missing something syntactical or what? <HTML> <HEAD>...
  18. christheprogrammer

    Trying to redirect to a PDF file

    Good day everyone - I am trying to display a PDF document on a web page by using Response.Redirect(&quot;somefile.pdf&quot;) and I have the required plugin. Now, when the redirection happens, the browser displays a completely white screen with nothing on it (it appears the PDF didn't load)...
  19. christheprogrammer

    Server timeout/not responsive when running St. Proc.

    Hi, I am running a stored procedure which itself calls about 10 other stored procedures. Approximately 75% of the time, I get the error 'Server timed out or is not responding'. The other 25% of the time the data I want is returned perfectly. I figured it was an issue of how busy the server...
  20. christheprogrammer

    Why can't I use MapPath() from a vb class?

    Hi, I hava a standalone class (it is not a codebehind class) that I wish to use MapPath in. The reason is that I have user directories stored in an XML file along with passwords, etc. and I want to be able to access them from whatever location the pages will actually reside.. I want to do this...

Part and Inventory Search

Back
Top