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 Mike Lewis 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
  • Order by date
  1. onressy

    1 hour server time difference

    Thanks gmmastros, onpnt thanks!... nifty info
  2. onressy

    objRS.moveNext issues

    Thanks!!! Helpfull it was
  3. 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...
  4. 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...
  5. onressy

    mime types

    Thanks that article uses a software of harware solution to covert the signal to t.38 protocal, i was hoping for more a .net activeX type library/solution. Reagrds
  6. 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
  7. onressy

    converting vb to vb.net

    Thanks onpnt, i understand that all var need to have declaration types associated, including arrays. So with that in mind and using the regex snippet, could you give a simple example for me, lets say i have a string like: Dim s As String s="<br /><tr><td><font>thisText</font></td></tr>" and to...
  8. onressy

    converting vb to vb.net

    Any thoughts on this...I have revised the code and now omly get 1 error Variable 'x' hides a variable in an enclosing block. for x AS int32 = 17 To 31 Step 2 ~ End of statement expected. rx.Regex("^((.|\s)*?\>){") & x & ("}((.|\s)*?)\<")...
  9. 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...
  10. onressy

    reverse order of a parsed string

    sorry, this is what I ment, Is it correct? string[] ar = Regex.Split(text, "#$%@&"); Array.Reverse(ar); foreach (string strAr in ar) { fullString = fullString + strAr + "#$%@&"); } // then remove the last #$%@& fullString = Left(fullString,Len(fullString)-5)...
  11. onressy

    reverse order of a parsed string

    OK am i getting closer to reversing the substrings of the array: Token A#$%@&Token B#$%@&Token C#$%@&Token D#$%@&Token E so the result is: Token E#$%@&Token D#$%@&Token C#$%@&Token B#$%@&Token A ----- string[] ar = Regex.Split(text, "#$%@"); Array.Reverse(ar); foreach (string strAr in...
  12. onressy

    reverse order of a parsed string

    Thanks, ok i getting the hang of this, if i have to put the substrings in reverse order would i do something like: string[] ar = Regex.Split(text, "#$%@"); for (int a=0; a<ar.Length; a--) { System.Console.WriteLine(ar); }
  13. 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...
  14. onressy

    1 hour server time difference

    aligning the time is not the issue, i have teh time correct in setting it -1 from server time. When a user goes to the website for a city, i want to display the city time and date. My issue is with the date, i'm grabbing the date from the server but when 12:00 hits in the city, the <%=...
  15. onressy

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

    Thanks for the suggestions
  16. 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
  17. 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...

Part and Inventory Search

Back
Top