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 dencom 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: onressy
  • Content: Threads
  • Order by date
  1. onressy

    objRS.moveNext issues

    Hi, I have a: Do Until objRS.EOF .... ..... objRS.moveNext Loop I would like to skip the records if a condition is met, something like so: Do Until objRS.EOF If portal=1000 Then Dim names names = names & "|" & objRS("ProductName") ' below I would like to skip the look to the next...
  2. onressy

    bandwidth solution for workstations

    Hi I was wondering if someone can point me in teh right direction, sometimes coworkers stream at work. Being an application developer who remotes into the server farm, streaming can slow me down. I walk around to see who i sstreaming and no one admits to it, and when i return to my workstation...
  3. onressy

    mime types

    Hi I have a voip provider that understands T.38, and G11 protocals, which are used to send faxes. currently send an email from an application, I was wondring if there would be a certain mime type i would require to send to the voip provider to fax? any thoughts, suggestions? Thanks
  4. onressy

    converting vb to vb.net

    Hi i'm converting pages from classic to .net, I'm having issues with this regex aspect and was wondering if someone could help with the compliation error, this is what i have transformed to .net, it starting to faile here: rx=new regexp Thanks for the pointers! <%@ Import...
  5. onressy

    reverse order of a parsed string

    Hi, I was wondering if someone could give me a hand, I'm not a C# programmer, but an ASP/VB programmer. I need to do one thing in C#, I have a string like so: Token A#$%@&Token B#$%@&Token C#$%@&Token D#$%@&Token E I need to to split the string at #$%@ and then reassemble the strings and...
  6. onressy

    1 hour server time difference

    Hi i'm display the day and time on a home page like so: <%= FormatDateTime(Date, 1)%>&nbsp;<%=DateAdd("h",-1,time())%> I'm using -1 for the time because the server location is 1 hour off homepage location. How can i format the date so that it reflects this 1 hour difference as well? Thanks
  7. onressy

    timing issue with displaying data (ajax &amp; json)

    Hi, I'm trying something and it only works if i refresh the page, no errors. so i think there is a timing issue, i've been playing with it for a while trying to fix the timing issue with delays here or there but nothing seems to work. I'm trying to put together a drop box from a remote server...
  8. onressy

    determin hours gone buy from now()

    Hi i'm having a simple issue (for some) trying to determine how many hours have gone by, any suggestions? Thanks Dim timeGone : timeGone = DateDiff("h","1/20/2007 1:36:09 PM",now()) response.write timeGone
  9. onressy

    switching values with 3rd variable

    Hi i'm trying something and am wonder what the most effecient way to switch the value of two variables without creating a third variable, and also so that its dynamic, meaning what ever the values or a or b are it will work: var a = 3; var b = 5; // so the result will be b=3 and a=5, again...
  10. onressy

    remote desktop into

    Hi I have a webserver and sql2005 on a 10.10. backbone. The sql server is not connect to the net. Normally i don't need to get into the db server as i can see data using serverSide coding on a web page. but sometimes i need to get into it. Normally i remote desktop into the webserver (since...
  11. onressy

    with response .write and end with

    I thought one could response.write a few things like below, am i missing something? With response .write "dasdf" .write "dasdf" .write "dasdf" .write "dasdf" .write "dasdf" End With
  12. onressy

    trace variable in movie ?

    Hi i have a MC (mc1) on the main stage and embeded in that MC is another movie clip mc1 contains 2 frames. First frame has this: var dddd = "aaaa"; //trace(dddd); Second frame contains a movie clip called 'redd' an on its first frame i have (which isn't working?): stop(); trace(dddd); if...
  13. onressy

    schedualed task

    How would i schedual a task (in baby steps please) to go off every 10 minutes, its a .vbs file that i would like to instantiate. Or any link references? Thanks
  14. onressy

    loop thru to not find anything

    Hi, in a table column "ChildProperties" the value is: 314|355|854|111 Dim Vid : Vid = Request.QueryString("id") ' let say Vid is 444, I would like to determine if 444 is in the CParr array: If NOT RS.EOF Then Dim CParr,j : CParr = Split(RS("ChildProperties"), "|") For j = 0 to...
  15. onressy

    Date Modified

    Hi, when i view details on a folder of some txt files, or asp files id get the date modified, where in teh systems is this log, or this info kept? is it info in the file itself or goes windows keep this info somewhere? THanks
  16. onressy

    insert trigger - sql2005

    Hi i'm creating my first 'after update' trigger. SQl server has two dbs that the trigger will be used against. The purpose of the trigger is when a table (10 columns) in db1 has an update the updated values are also updated a table in db2. I've been looking thru msdn articles and other...
  17. onressy

    three tables with identity seed

    Hi, I wondering in sql2005 how i can configure two tables to take on the primary key/non duplicating value from another table. I have three table set up like this, Table1: appID - primary key/incrementing/non duplicate fName Table2: appID lName Table3: appID gradYear When an insert is done...
  18. onressy

    cross matching two tables

    Hi i have two table with the same column names, columns such as memberID, firstName, LastName, Zip, country, state Table 1 has a list of information derived from clients signing up, list two is derived from another company. I need to count memberIDs that match in both lists. Because of those...
  19. onressy

    insert help

    Hi, I have a table that has the following columns: surveyid = int, memberid = int started = int StartedOnDate = samllDateTime Completed = int I would like to copy the records from memberID 2215 to memberID 1323 where surveyID in 2215 does not exist where memberID=1323. any thoughts on how to...
  20. onressy

    strange connection issues

    Hi, using iis6 I installed TCPView from sysinternats, for those not familiar with TCP view it all ow one to see all connection TCP and UPD points for the server, im my case the web server. I've run TCP View a number of times in the past on the same server, but today i noticed that there were...

Part and Inventory Search

Back
Top