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

    Weird stack overflow error

    Hey I was working on my app and everything was alright, suddenly I receive this error on many lines in run time: An unhandled exception of type 'System.StackOverflowException' occurred in mscorlib.dll When I change the code in one line, the error will be shown in another line Does anyone...
  2. ushtabalakh

    .htaccess to redirect

    hi there I have two domain names I want to write a .htaccess that will redirect all my visitors from www.mywebsite1.com/folder1 to www.mywebsite2.com/folder2 so that when a user tries to visit www.mywebsite1.com/folder1/test.php?h=43432 he gets redirected to...
  3. ushtabalakh

    Can I start a console window from a winforms?

    Hey I have a console application written with vb.net and I also have an winforms application written under vb.net now I want to start the console application when a user clicks on something in my winforms application is there anyway to do that?
  4. ushtabalakh

    Flash voice chat

    Hi there I'm looking for a flash voice chat application, does anyone know one?
  5. ushtabalakh

    UML diagrams for dot net

    Are there any tools that could reverse engineer your code and make UML diagrams out of them? or vice versa? Does the class diagram of vs do it? are there any guides on what usage class diagrams could possibly have?
  6. ushtabalakh

    Import from ms sql

    hi there does mysql have any functions/methods to select data from ms sql and insert them to my sql tables?
  7. ushtabalakh

    Convert ms sql syntax to mysql

    Hi there How can I convert the syntax of the following code into mysql equivalent? SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE temptable( [mlsnumber] [varchar](11) NOT NULL, [Status] [varchar](3) NULL, [PropType] [varchar](4) NULL, [District]...
  8. ushtabalakh

    Ms sql to mysql

    Hi there I have a ms sql connection that I define this way $dsn = "Driver={SQL Server};Server=$server;Database=$database;UID=$username;PWD=$password;"; $link = odbc_connect($dsn, $username, $password); I also have a my sql connection that I define this way: $myLink =...
  9. ushtabalakh

    Exchange value between a thread and a class

    I have a variable in a thread class that is being constantly modified How can I access that variable from another class every x seconds?
  10. ushtabalakh

    Measuring time

    Hi, I have made the following functions To measure how much time it takes for apache to execute my codes, but it doesn't work properly, can someone tell me why? <?php $starttime = microtime(true); usleep(100); $starttime = ShowTime($startTime, "step 1"); usleep(400); $starttime =...
  11. ushtabalakh

    Change your IP

    Hi I wanna use internet tv which is only available in US I know I can use a proxy server to chnage my IP but I'm looking for a more effective way, such that all my internet connections over the net seem to be from an IP address in US I'm told I can buy a VPN service, is that right?
  12. ushtabalakh

    there is no attribute &quot;type&quot;

    Hey I'm trying to use Alexa.com's script on my website, but w3.org gives an error to the script that alexa.com provides Here is the line <SCRIPT type="text/javascript" src="http://xslt.alexa.com/site_stats/js/t/b?url=www.blabla.com"></SCRIPT> Tese are the three errors that w3.org's...
  13. ushtabalakh

    What is this kind of design called?

    Hey I'm looking for something like what they have here: http://www.bu.edu/ I mean that flash movie on top, what are these things called? can I get/buy them from anywhere?
  14. ushtabalakh

    An interface for all tcp servers

    Hi I have a project in which I need to develop different kinds of servers (TCP listeners). Since we are going to do it remotely I thought it's a good idea to prepare an interface that all programmers would implement when they are coding. This would help us have more unified codes. Here is the...
  15. ushtabalakh

    run an application from server

    Hi there, In windows vista when you run an application from shell command in a service project it doesn't show the application's gui to user, it rather shows a message that this service needs user reaction. I wanna know how I can run an application from a service so that the current user who...
  16. ushtabalakh

    applications vs services

    Hi there Other than a service usually runs all the time what is the major difference between an application and a server. I have an application that captures the screen and I had it programmed as a service and it used to work fine in XP but in vista it doesn't allow user interaction so it...
  17. ushtabalakh

    Remote webcam

    Hey I need to write an application to watch webcam of another computer on the net Does anyone have any samples that would help?
  18. ushtabalakh

    dll and exe file version

    Hey Dll and exe files have a version that could be found by looking at the properties of these file in windows explorer I need to know how I can retrieve that information from vb.net Any related windows command would also be very useful
  19. ushtabalakh

    Add remove refrences in runtime

    Hi there I'm want to write an application that checks for updates of its dll files from internet and downloads them and replaces them with the old ones without letting the user know about it. The problem is, while the application is running, you can't remove and replace dll files, so I'm...
  20. ushtabalakh

    How to add into windows firewall

    Is there anyway to see if windows firewall is activated? How can we add our own policies to it automaticall. I think a few programs like dc++ can add themselves to the exceptions of windows firewall automatically.

Part and Inventory Search

Back
Top