| |
| |
| |
|
Page: 1 2
Comments:
<0> selam <1> hi <1> say, I have a searchengine which searches in the fields of a database. I also have one that searches IN the text of documents (with indexing services). Now is it possible to combine these two ? <2> make two queries <2> one to the database, the other to indexing service <1> you always make it sound so easy <1> :) <2> That's because I'M not doing the work :) <1> ah <1> too bad :) <1> who has ever made a search-engine which searches in the document itself and how have you done it ? <3> Open file, search (perhaps Instr), and save result (in any way) in the buffer, before displaying it to the user. <1> no I have a formfield and it should search for a certain word in all the documents, but if you have 1000 documents or more it would not be good to open them all one by one and search for some text. <3> Well, that is what you would do, if you want to search the actual files. <3> As far as I know.
<1> well there is a "indexing service" in iis or such which makes a index of all the words of the files, but the whole search method is so different from database searching, I find it hard to combine the two <3> Oh, ok. <3> Combine? If you can do one of them, you can do both. <3> One sub for each one, and just return results. <1> I do now each one of them in separate pages but combining the two is some real pro-**** I think <3> mhm. <4> BlackWand!!!! <3> Dude! <3> !!! <4> BOMBASTIC!!! Mr Lova Lova!! <3> Heads to the bathroom to unload. <3> . <4> 8 <2> tadah <4> boyashaka <2> D^D[w]: You momma so fat, when she volunteered to clean out the cages at the zoo, people walk by and say "look at dat hippopotamus" <4> okey <2> k <2> ya bastid <2> in the two weeks the ****stick has been here development, he's only designed 6 pages. and by that, I mean has just drawn the controls for 6 pages <2> And written the SQL for 7 tables. not DESIGNED the tables. hand-written CREATE TABLE statements <5> Teycho, what if i use an ADO stream, set the timeout for the script to very long? <4> LOL <4> I think that dothead is growing on ya :) <2> I have a feeling that scmuchk is getting canned tomorrow <2> Magnus_RM: Those two things are completely unrelated <5> Teycho, what two things? <2> ADO Stream, and Timeout <2> There's no direct correlation there <5> Teycho, i know that <2> in other words: what the crap ya talking about? <5> Teycho, well if the stream takes long the time out needs to be set to long too <2> What is 'the stream'? <5> Teycho, i am refering to what i started to talk about in asp.net, the midi thing <2> ooooh, right <2> context helps :) <2> mms, I doubt, works like response.binarywriting a stream of data <2> but I could be mistaken <2> Also ,you have to find out if mediaplayer can play a partially downloaded MIDI file <5> Teycho, i think it can, since it can do that with other media like sound, movies, etc. but i have not checked <2> yet, formats differ <2> certain types of AVI files need the beginning and end of the file <5> yes, but technically there is nothing that would prevent it, if you look inside a midi stream <2> or it won't play <5> well, not in this case, technically speaking <5> but if i "solve" it like this i also need to have a "sleep" method <5> but i know how to fix that <2> I'd imagine each request for a note would be a roundtrip to the server <2> that might be a ****ton easier <5> who requests tones you mean? <5> (or notes) <2> sure, why not <5> no i mean who? the client? <2> Yes, the client <5> the client should not request every note, it just requests the stream and then it streams, just like any other stream <2> requests what stream? <5> the stream of midi data <2> Are you having the server process notes to create a sound? <5> my script on the server will create the stream on the fly, continuously <5> (stream of midi data)
<2> From what input? <2> whenever the user hits a key? <5> the input is various parameters received from the client, like from sliders on the user interface or so <2> I don't think this is going to work the way you want <5> you can see the present userinterface on the screen shot on that site i gave the url for <5> Teycho, why not? <2> ***uming you can do a .binarywrite or similar to send the data to the client, you're going to have to somehow interface with the values from the client, which means a trip to the server. <2> And what is that other URL? <5> here are some samples of the music and a link to the screen shot --> http://www.randomusic.com/samples/ <2> So anytime any one of those values change, you need to make a roundtrip to the server <5> regarding the parameters i am thinking of having them in a different frame, so in reality there are two windos (frames) one that takes in-parameters, and one that receives the resulting stream <5> Teycho, yes <2> Why not just have the stream created and processed, then sent back to the user as a chunk? <5> those parameters dont change very often <2> no need to keep it open and streaming when nothing changes <2> 'very often' is of no concern. if they do once, that's enough to take it into account <2> and by parameters, also the keys and key lengths (the red crap under the keyboard) <5> Teycho, the parameter frame (if we call it that) will only communicate (roundtrip) with the server when a change is made <2> Basically, every time they hit "Play", a roundtrip needs to be made to the server <2> And the sliders can be changed on the fly as the music is playing? <5> Teycho, play is pressed to start the music, then the parameters can be changed now and then as the music plays, and that modifies the music <5> yes, on the fly <2> then yes, it's going to be a whore <5> why? <2> First, find more information on HOW you plan to stream <2> what format, what type, <2> get THAT working with a static stream of music <5> midi data into an ADO stream <5> i have done that <2> right, so that doesn't so much do it in real time <5> it is actually the way i send the sound files on that site i gave the url too <5> to <5> can you say that last thing again? <2> because if I change the instrument, it needs to be reflected almost immediately <2> say, the music is playing. halfway through, I want to go from Piano to Organ <2> when i Change that box, the resulting sound needs to be changed in realtime <2> yes? <5> Teycho, yes <2> So, your script is going to have to process in realtime <5> yes <2> not as fast as it can, then spit out a midi <2> How do you propose to send new variables to the processing script? <5> no, it will wait and spit out midi only at the time it is time to process that midi data at the client end, or a few seconds before <5> new variables is sent to the server by the other frame, the parameter frame <2> so it's going to process in 'chunks'? <2> Yes, but those other variables have to get TO the processing script <2> which is continiously running <5> yes, the parameters are stored in a database or as application variables, and read by the streaming script <5> so two scripts that cooperates <2> so like I was saying, 'tis going to be a whore <5> but why? <2> Why? ****sake, it's an easy answer: "Because this will not be easy to do" <2> simple as that <2> no specific bulleted list <2> it just will not be especially easy <5> Teycho, yes, i know that, but i can not see any big question marks so to say, it seems it should be possible to solve it like this, and of course to make it working needs some work. it is definitely not a normal asp application, but it is an idea that should work <2> at a high level, it sounds plausable <2> but that's all I could say <2> and why are you doing this, anyhow? <4> yes yes my head is spning. <5> yes, well, thats good enough for me <5> Teycho, i do it because i like it <4> I do it because she likes it. <5> Teycho, and i want to give people access to this program over the net <5> Teycho, i like web based applications <2> You know, you're talking specifically to me <2> and have been for 15 minutes <4> Ohh ****.... step typing his name in every line. <2> There's no need to prefix every sentence with my name <5> that is just habit <4> Teycho, why is he typing your name in every line? <4> Teycho, you do know I was asking you? <5> and i always start doing it when another person pops up in the conversation
Return to
#asp or Go to some related
logs:
#chat-world linpus startx #chat-world #india #india scimitar mercury #india #allnitecafe honey romenia
#php
|
|