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
  • Order by date
  1. ushtabalakh

    .htaccess to redirect

    can anyone else help?
  2. ushtabalakh

    Weird stack overflow error

    I had a recursive function in my program, that was running indefinitely, that was the problem
  3. 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...
  4. ushtabalakh

    .htaccess to redirect

    didn't work, shows 404 error
  5. 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...
  6. ushtabalakh

    Can I start a console window from a winforms?

    That would be what I'm looking for if I had two seperate .exe files, but I don't wanna have two seperate files I wanna have one .exe file with two projects in it, a console application and a winform.
  7. ushtabalakh

    Flash voice chat

    very interesting, never thought of googling what I'm searching for
  8. 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?
  9. ushtabalakh

    Flash voice chat

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

    UML diagrams for dot net

    meanwhile I worked with vs.net's class diagram, it seems to have whatever I need. However it doesn't seem to understand aggregation (implementing an interface), because it doesn't draw a line there
  11. ushtabalakh

    UML diagrams for dot net

    Open a window in VS.NET. Go to Project—>Visio UML—>Reverse Engineer. This automatically shows you the class diagrams with perfect relationships. Note: This tip will work with VS.NET Version 1.0.0 and higher. " Thanks for the link RvierGuy, but I don't seem to have Visio UML in my project menu...
  12. ushtabalakh

    UML diagrams for dot net

    I suggest you understand what a class diagram is before trying to do the rest." I know what a class diagram is in UML, I'm not sure however if in vs.net it is meant to be the same thing. is it?
  13. 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?
  14. ushtabalakh

    Exchange value between a thread and a class

    for both actually
  15. ushtabalakh

    Import from ms sql

    I have no access to ms sql, I only can work with my mysql server, I doubt that it does any of such things
  16. ushtabalakh

    Import from ms sql

    I was hoping to find a way to do it through mysql independently of any programming language, do you think there is a chance?
  17. ushtabalakh

    Ms sql to mysql

    >why are you not using native mssql calls? I'm not sure where they can be used in my case, can you please elaborate? >what does the featQuery() function look like? is there inefficiency in that? It's a function written by someone else, I don't think it's slow, here is how it looks like...
  18. ushtabalakh

    Ms sql to mysql

    This is the way I'm currently doing it while (($line = odbc_fetch_array($result, $i))) { $values = "'".join("', '", $line)."'"; $myQuery = "INSERT INTO temptable VALUES('1', ".featQuery($myLine)."'0', $values)"; $myResult = mysql_query($myQuery, $myLink); } featquery turnes values of...
  19. ushtabalakh

    Ms sql to mysql

    thanks for your response, 1- Doing it in a loop is the last option that I would use, I wish there was a way that you can assign all the data of a table into one variable, and then insert them into another database without having to enumerate the database. I've got about 13,000 records, I...
  20. 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?

Part and Inventory Search

Back
Top