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...
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...
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
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
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...
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)*?)\<")...
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...
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)...
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...
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);
}
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...
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 <%=...
Hi i'm display the day and time on a home page like so:
<%= FormatDateTime(Date, 1)%> <%=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
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.