User Coder - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T09:54:03Z http://stackoverflow.com/feeds/user/79358 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1334480/how-to-import-data-from-excel-file-to-teradata-table-using-bteq-scripts 0 How to import data from excel file to Teradata table using BTEQ scripts? Coder 2009-08-26T12:55:04Z 2009-11-27T14:00:03Z <p>Hi gurus, <p>I was able to do fill tables with data from Excel file or text files using GUI utility Teradata Sql assistant. But now I have a requirement to import data into teradata tables from excel file using a bteq script. I have been trying to do that using <p>.IMPORT REPORT <P>.IMPORT DATA <P>.IMPORT VARTEXT and I have tried other things also, but of no use. I have referred to some answers in teradataforum and googled for the same but my script is not working. Please help me with a script which will import data from excel file or atleast text file using BTEQ script.My script is as follows... <p></p> <pre><code>.LOGON XXXX/XXXXXX,XXXX .import data FILE = D:\XX\XXXX.xls ; .QUIET ON .REPEAT * USING COL1 (CHAR(1)) ,COL2 (CHAR(1)) ,COL3 (VARCHAR(100)) INSERT INTO DATABASE.TABLE ( COL1 ,COL2 ,COL3) VALUES ( :COL1 ,:COL2 ,:COL3); .QUIT </code></pre> <p>Thanks in advance. <p><strong>EDIT:</strong> <p>Till now I came this long. I have successfully loaded data from comma separated text file using the following code. But how to do it in excel?</p> <pre><code>.LOGON xxxx/xxxx,xxxx .IMPORT VARTEXT ',' FILE=xxxxx.TXT; .QUIET ON .REPEAT * USING ( col1 VARCHAR(2) ,col2 VARCHAR(1) ,col3 VARCHAR(60) ) INSERT INTO database.table ( col1 ,col2 ,col3) VALUES ( :col1 ,:col2 ,:col3); .QUIT </code></pre> <p>Sample comma separated text file being</p> <pre><code>1,B,status1 2,B,status2 3,B,status3 </code></pre> <p><hr /></p> <p>etc. Please help me if possible to load the same with excel file. Thanks.</p> http://stackoverflow.com/questions/1699869/coding-realtime-clock-for-for-arm-architecture-based-microcontroller/1699988#1699988 1 Answer by Coder for Coding realtime clock for for ARM architecture based microcontroller Coder 2009-11-09T09:31:24Z 2009-11-09T09:37:55Z <p>If you need information about ARM then this <a href="http://books.google.com/books?id=HKKUkDQE17QC&amp;printsec=frontcover&amp;dq=ARM+System+Developer%27s+Guide:+Designing+and+Optimizing+System+Software&amp;ei=HeH3Sqm9D6eKlQTpvN3nBQ#v=onepage&amp;q=&amp;f=false" rel="nofollow">ARM System Developer's Guide: Designing and Optimizing System Software</a> may help you. <p>We used to do some thing like this for ARM.</p> <pre><code> #include "LPC21xx.h" void rtc() { *IODIR1 = 0x00FF0000; // Set LED ports to output *IOSET1 = 0x00020000; *PREINT = 0x000001C8; // Set RTC prescaler for 12.000Mhz Xtal *PREFRAC = 0x000061C0; *CCR = 0x01; *SEC = 0; *MIN = 0; *HOUR= 0; } </code></pre> http://stackoverflow.com/questions/1628646/calling-a-system-command-and-bringing-back-the-results/1628710#1628710 0 Answer by Coder for Calling a system() command and bringing back the results Coder 2009-10-27T04:02:32Z 2009-10-27T04:02:32Z <p>Yes may be popen() is useful. You can get the output and parse it to get the results.</p> http://stackoverflow.com/questions/1599675/how-to-pass-value-from-javascript-to-php-and-get-return-of-php-back-to-javascript/1599901#1599901 0 Answer by Coder for How to pass value from Javascript to PHP and get return of PHP back to Javascript Coder 2009-10-21T10:17:48Z 2009-10-21T10:24:27Z <p>You can get it easily by ajax. Even you can use Jquery to post the value to php and get the ajax response within a single line of code like below. </p> <pre><code>p['value']=2;//some input value to be posted $('#data').load('http://example.com/validator.php',p,function(str){} ); </code></pre> <p>html:</p> <pre><code>&lt;div id="data"&gt; &lt;/div&gt; </code></pre> <p>In this piece of code you are posting p['value'] as 2 to the validator.php and getting the response and load that value to data div in the same page. <p>In our php code //get the posted value into some $value and </p> <pre><code>if($value==2) echo 'true I got 2' else echo 'I didnot got 2 You posted wrong value'; </code></pre> <p>This will print true I got 2 in the div #data. This may not be your exact requirement but its very helpful.</p> http://stackoverflow.com/questions/1576928/jquery-datepicker-loading-in-the-back-side-of-the-textbox-css-problem 0 Jquery DatePicker loading in the back side of the textbox - css problem Coder 2009-10-16T08:52:28Z 2009-10-20T04:13:14Z <p>Hi gurus, I am actually having a list of text boxes. I am using below code to load a date picker at each text box location when the text box is in focus. But If I click on top text boxes the date picker is loading at the background of the below text boxes even though it is starting at the clicked text box. I think this is css conflict of my css and ui's. <p>Javascript:<p></p> <pre><code>&lt;link type="text/css" href="JQUERY/development-bundle/themes/base/ui.all.css" rel="stylesheet" /&gt; function pickdate(dateflag,val) { $("#stdatepicker").datepicker({ dateFormat: 'yy-mm-dd' }); } </code></pre> <p>HTML:</p> <pre><code>&lt;div id="centrecontent"&gt; &lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;input type="text" id="enddatepicker0" name="Workeddate0" onfocus="pickdate(2,0)" /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; </code></pre> <p>This I am repeating in a table rows format. These rows are loaded into a div along with some other text. So what am I missing here. How can I load the date picker above all divs and above all textboxes. Thanks in advance. <p>Edit: <p>CSS:</p> <pre><code> div.#centrecontent { background-image:url("/images/bluecyan3.gif"); background-repeat:no-repeat; } table { font-size:13px; font-family:arial; } div,p {margin-top:0}/*clear top margin for mozilla*/ * html #centrecontent {height:1%;margin-bottom:12px}/* combat IE's 3 pixel jog */ #centrecontent {position:relative; `**EDIT** /*this is the culprit*//*z-index:1*/`} } th { background:url("/images/menubutton.jpg"); } </code></pre> http://stackoverflow.com/questions/1559529/ajax-history-remote-usage-enabling-back-button-and-loading-old-page-position-in-d 0 AJAX history remote usage enabling back button and loading old page position in divs Coder 2009-10-13T11:00:08Z 2009-10-14T15:19:20Z <p>Hi gurus, Thanks again for helping me <a href="http://stackoverflow.com/questions/1555019/move-browser-window-down-to-the-position-of-a-div-when-it-is-loaded-by-ajax-jqu">with this simple solution</a> <p>My scenario is: <p>I have a Jquery + AJAX + CodeIgniter web page where I have many divs like</p> <pre><code>&lt;div id="team"&gt; &lt;/div&gt; &lt;div id="wp"&gt; &lt;/div&gt; &lt;div id="phase"&gt; &lt;/div&gt; &lt;div id="tasks"&gt; &lt;/div&gt; </code></pre> <p>On opening the page the page will contain a table with some links in div team. When I click on any link in div team it will load new data in div wp by jquery ajax load. Similarly if I click on any link in wp div it will load data in phase div without removing data in above divs. But if any of the above divs are loaded with the data when below divs are already loaded with data then it will clear the below divs data and load new data into the clicked one's below div. I hope you understood this. <p> Now I want to keep the history of these loadings and when user clicks browser back button then I need to show last page displayed with the last loaded divs. I am using history remote plugin of java script for doing this after seeing some of the old questions on stackoverflow. But some how I am not getting what I needed. I am using the below code snippet to work</p> <pre><code>$(function() { $('a.remote').remote('#phase', function() { if (window.console &amp;&amp; window.console.info) { console.info('content loaded'); } }); $('a.history:eq(0)').history(function() { $('#wp').hide(); }); $('a.history:eq(1)').history(function() { $('#wp').show(); }); $.ajaxHistory.initialize(); }); </code></pre> <p>I am not able to do the necessary modifications for this one to get my requirements. It is also giving an error like Object doesnt support this property. Can any body please help me on this with any modifications or any tutorials needed or any other easy way of doing it. Thanks in advance.</p> http://stackoverflow.com/questions/1555019/move-browser-window-down-to-the-position-of-a-div-when-it-is-loaded-by-ajax-jqu 2 Move Browser window down to the position of a div when it is loaded by ajax & Jquery Coder 2009-10-12T14:49:45Z 2009-10-12T17:05:26Z <p>Hi gurus, <p>I have a div into which I am loading data dynamically by ajax, jquery. like</p> <pre><code>$('#wp').load('http://someurl.com/getit',p,function(str){} ); </code></pre> <p>Now because I am having page full of data before that div I need to move the browser window down to that div's location after it is loaded with slow motion like the similar effects in stackoverflow. Please help me.Thanks in advance.</p> http://stackoverflow.com/questions/1388566/repeat-a-task-using-schtasks-exe-in-windows-xp 0 Repeat a task using schtasks.exe in windows xp? Coder 2009-09-07T10:06:13Z 2009-10-12T09:59:08Z <p>Hi gurus, <p>I need to run a task every 10 mins from morning 9 AM to Evening 3 PM every weekday on my Windows XP. I have used the following command to do that but on Windows XP SP3 I think /RI option is unavailable. <p><code>schtasks /Create /RU HS77 /RP /SC DAILY /TN taskname /TR C:\Windows\System32\calc.exe /ST 15:10 /RI 10 /ET 15:31 /K /SD 09/07/2009 /ED 09/07/2009 /F</code> </p> <p>Is there any way of doing it with command line (only command line).Please help me..Thanks in advance. <p><strong>My Requirement:</strong>Run an exe every week day morning 9:00 am to 3:00 pm every 10 mins. Schedule it using a program or from bat file or command line only once. <p><strong>EDIT:</strong>Ok Looks like I need to figure out a way. My main problem is the /ET option (End Time) is disabled in XP. So I am trying it through a batch file which will create scheduled task for tomorrow morning starting at 9:00 AM and a c program which will delete it when it is 3:00 PM and recreate the scheduled task at next day morning 9:00 am. And this process repeats. But here also System date format is spoiling the plot. I need to figure out a way. <p> Am I missing an easy way?(angry..haa). <p>Or else throw out the windows scheduler in dust bin and use any open source small foot print schedulers which can do the required work for me and we can package it with our application?Or do I need to write my own custom scheduler which can run in background? (this is a whole new question). If I need to write a command line custom scheduler how can I run it in background in XP. Or How can I run a scheduled task in background(I mean cmd.exe should not popup when it is running). <p>Sorry for too many questions. I am a bit frustrated. Please Understand.</p> http://stackoverflow.com/questions/1544058/how-to-replace-a-line-in-the-same-file-by-sed-in-unix-shell-scripting 0 How to Replace a line in the same file by SED in Unix Shell scripting? Coder 2009-10-09T14:16:19Z 2009-10-12T08:51:10Z <p>Hi In Reference to <a href="http://stackoverflow.com/questions/1543422/how-to-compare-two-files-in-shell-script">this question</a> After getting the line identifier matching in first and second file I need to replace the line in first file with the line of second file.For that I am using SED as below. But Sed only replaces that line in a new file. How can I achieve the updation in same file without temporary file.(Because those are very huge files)</p> <pre><code>#!/bin/ksh while read line do var=`echo $line|cut -c 3-25` while read i do var1=`echo $i|cut -c 3-25` if [ $var == $var1 ]; then sed -i s/$line/$i/ t1 else echo "not matched" fi done &lt; t2 done &lt; t1 </code></pre> <p>Even without -i option also I am not getting the result.Please help me.Thanks in advance <p><strong>Edit</strong>:Or else suggest me any other optimal way of doing without temporary files or with any scripting languages(less preferred).Thanks</p> http://stackoverflow.com/questions/1537324/is-there-any-table-changes-tracking-tool-for-mysql-which-will-log-all-changes-int 0 Is there any table changes tracking tool for mysql which will log all changes into other table? Coder 2009-10-08T11:46:09Z 2009-10-08T12:12:03Z <p>Hi,</p> <p>I am working on a Project management system on PHP (CodeIgniter framework), Mysql, AJAX, XAMPP, JQUERY. I need a customizable table changes tracking tool which will log all changes into another table in same database for mysql. Basically I need to have a table which will have log details of updates, inserts and deletes on a database tables with what column has changed to what (summary). So that I can create a report from that table with changes to any particular table. <p>If there is no tool, I have already started working on my own solution where I am looking at two options. <p><strong>One</strong> is having triggers on all tables which will create a row for each update and inserts with old data and new changed data. But here I need external user input as update comments from the user. How can I insert that data from a trigger. This is some what complex. Please suggest me any solution. <p><strong>Second</strong> one is I will track the changes from PHP and insert every time when I do update and Insert which is more work but easier to implement. <p>Which one do you prefer? If not suggest me a tool which will take care of all this and insert into a new table in the same database. Or am I missing any thing simpler?</p> http://stackoverflow.com/questions/1271643/what-is-the-difference-between-group-by-distinct-union-for-selecting-distinct-v 1 What is the difference between group by, distinct, Union for selecting distinct values for multiple columns? Coder 2009-08-13T12:28:53Z 2009-08-14T03:50:07Z <p>Hi gurus, <a href="http://stackoverflow.com/questions/546804/select-distinct-from-multiple-fields-using-sql">This question </a>explained about a way of getting distinct combination of multiple columns. But I want to know the difference between the methods of DISTINCT, UNION, GROUP BY keyword method for this purpose. I am getting different results when using them. My queries are like this Query 1.<p></p> <pre><code>select column1, column2, column3 from table group by 1,2,3 </code></pre> <p>Query 2.<p></p> <pre><code>select distinct column1, column2, column3 from table </code></pre> <p>Query 3.<p></p> <pre><code>SELECT DISTINCT(ans) FROM ( SELECT column1 AS ans FROM sametable UNION SELECT column2 AS ans FROM sametable UNION SELECT column3 AS ans FROM sametable ) AS Temp </code></pre> <p>I am getting different number of rows for above queries(Edit: The first two are giving equal number of rows but last one is giving differnetly). Can any body explain what the above queries are doing? Especially the third one? <b><p>EDIT:</b> Note that I am doing UNION on same table. In that case what will happen?</p> http://stackoverflow.com/questions/838341/how-to-execute-sql-statements-from-a-c-program/1270095#1270095 0 Answer by Coder for How to execute sql statements from a C program? Coder 2009-08-13T04:58:54Z 2009-08-13T04:58:54Z <p>I am now using the following method explained <a href="http://stackoverflow.com/questions/1259462/is-it-a-good-way-to-use-system-for-database-scripts-from-c">in this question by me.</a>It is satisfying my requirements.</p> http://stackoverflow.com/questions/838341/how-to-execute-sql-statements-from-a-c-program 0 How to execute sql statements from a C program? Coder 2009-05-08T05:18:23Z 2009-08-13T04:58:54Z <p>How can I execute SQL statements from a C program. For example I want to display the output of <p><code>select * from EMP</code><p>from a c program. Do I need to do it using Stored Procedures? Do I need any library files to do it. My C compiler is Tiny C Compiler and I am currently having SQL server studio 2005. Suggestions for Unix/AIX platform + GCC are also invited. <p>Thanks in advance..</p> http://stackoverflow.com/questions/949016/good-resources-for-teradata-business-objects 0 Good Resources for Teradata & Business Objects? Coder 2009-06-04T07:09:52Z 2009-08-12T23:02:43Z <p>Can any one suggest good resources and practice exercises for Teradata and Business Objects and their combination. I have no idea on where to start..<p>I am aware of SQL, database concepts and programming languages like c, php, c++, C#. I need to learn teradata, BO practically. I need to develop applications for reporting data from Teradata on a website using Business objects. Any suggestions, links, books are welcome. Thanks in advance..</p> http://stackoverflow.com/questions/1264190/ping-servers-and-check-the-result-from-c-program 1 Ping servers and check the result from C program? Coder 2009-08-12T04:20:13Z 2009-08-12T04:37:58Z <p>Hi <a href="http://stackoverflow.com/questions/1259462/is-it-a-good-way-to-use-system-for-database-scripts-from-c">This is My last question</a>. Now my new requirement is to ping some set of servers and check if they are replying or not. I am trying my way of </p> <pre><code>system("ping xxx.xx.xx.xx &gt;out.txt"); </code></pre> <p>And then parsing the out.txt for a string "Request timed out.". This is yielding me good results. But is there any better way to do from c program. Non programmatic ways are also welcome. But mostly I want to go by C program. If the request is timed out I will send a mail through same my way by php. Thanks in advance. <p>My environment : windows, Tiny C Compiler</p> http://stackoverflow.com/questions/1259462/is-it-a-good-way-to-use-system-for-database-scripts-from-c 1 Is it a good way to use system() for database scripts from C? Coder 2009-08-11T10:06:50Z 2009-08-11T20:59:17Z <p>Hi Gurus, I was searching for connecting to database from C program. But I thought the ODBC connections, logon and all need some libraries. Also I am having a minimal compiler like Tiny C Compiler which is very fast. I do not want to use any ODBC logic etc which is needed to connect and query the database. <p>So I am using a method which is as follows. <p>I use a bteq script (teradata) which will have login, query, logoff commands in that. (FYI bteq is a command line database utility. You can use it similar to mysql.exe in command prompt by going to the path of the exe. You can replace bteq with mysql.exe etc). And I use </p> <pre><code>system("bteq &lt;myscript.txt &gt;out.txt"); </code></pre> <p>myscript.txt will be like the following..</p> <pre><code>.logon boxname/user,password; select date; .logoff; </code></pre> <p>The above script will logon to the database and query date (you can change the query and write script according to your database engine and your needs) and give output into out.txt. <p>Now I will parse the out.txt for the row X column I want using fgetc,fscanf or fgets. And use the data for checking and send a mail using PHP on any server<p> <code>system("c:/server/php/php.exe sendmail.php");</code>. <p>We can do the same for many a database engines like mysql, .. etc through a simple C program. <p>Now my question is Is there any flaw in the above method. If it is then how can I overcome it. I am asking this question because I think this method is unconventional. Please give your opinions on this method. I don't bother about time needed for execution, RAM used, performance issues etc.I know system() fuction is time consuming which is not my concern anyway. I also developed specific functions to access query results (similar to accessing a flat file). Please tell me if you have any improvements to this method. If you get to know of any flaws in this please let me know. All kinds of suggestions are welcome. <p>My environment is : teradata bteq on windows with Tiny C Compiler </p> http://stackoverflow.com/questions/1226630/how-to-know-new-line-character-in-fscanf 0 How to know new line character in fscanf? Coder 2009-08-04T09:56:45Z 2009-08-06T04:37:29Z <p>Hi gurus,</p> <p>How to know that fscanf reached a new line \n in a file. I have been using my own functions for doing that. I know I can use fgets and then sscanf for my required pattern. But my requirements are not stable, some times I want to get TAB separated strings, some times new line separated strings and some times some special character separated strings. So if there is any way to know of new line from fscanf please help me. Or else any alternative ways are also welcome.<p> Thanks in advance.</p> http://stackoverflow.com/questions/1147587/games-for-learning/1148072#1148072 1 Answer by Coder for Games for learning Coder 2009-07-18T17:28:07Z 2009-07-18T17:28:07Z <p>Hi you can write small programs to exercise your logical thinking skills on this site <a href="http://www.codechef.com" rel="nofollow">http://www.codechef.com</a></p> http://stackoverflow.com/questions/1048559/how-to-insert-email-id-field-with-from-a-stored-procedure-in-mysql 0 How to insert email ID field with @ from a stored procedure in mysql? Coder 2009-06-26T11:13:56Z 2009-07-10T16:52:33Z <p>I am having a basic mysql stored procedure for inserting user data along with email id. For example </p> <pre><code>CALL INSERTUSER( 'Someone', 'someone@email.com' ); </code></pre> <p>My problem is that the stored procedure is taking @ as special character.I am new to mysql. How can I insert this? Is there any escape character?Please help.</p> http://stackoverflow.com/questions/1066971/is-c-or-c-better-for-making-portable-code/1067076#1067076 1 Answer by Coder for Is C or C++ better for making portable code? Coder 2009-07-01T02:57:05Z 2009-07-01T02:57:05Z <p>I think it is better to write in C.Because C will provide you more ways of producing optimized and portable code than C++.If you do it in C then it will be easier to integrate with python.</p> http://stackoverflow.com/questions/857670/how-to-connect-to-sql-server-database-from-javascript 3 How to connect to SQL server database from javascript? Coder 2009-05-13T12:26:07Z 2009-06-24T13:27:09Z <p>Can any body give me some sample source code showing how to connect to a SQL server 2005 database from javascript locally.I am learning web programming on my desktop.Or do I need to use any other scripting language. Suggest me some alternatives if u have. (but I am now trying to do it with javascript).Thanks in advance.My sql server is locally installed on my desktop -SQL Server Management Studio 2005 and IE7 browser..</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/964149#964149 0 Answer by Coder for What real life bad habits has programming given you? Coder 2009-06-08T09:58:42Z 2009-06-08T09:58:42Z <p>I start analysing human behavior as Brain = Processor, and I tell out my plans </p> <pre><code>if(some thing happens) do it else do other </code></pre> <p><code>Ctrl + F</code> a book</p> http://stackoverflow.com/questions/950265/how-to-give-input-to-a-windows-application-programmatically 0 How to give input to a windows application programmatically? Coder 2009-06-04T12:33:16Z 2009-06-04T13:55:45Z <p>Hi Gurus,</p> <p>This is with reference to the below question</p> <p><a href="http://stackoverflow.com/questions/924289/how-to-read-output-and-give-input-to-a-program-from-c-program">http://stackoverflow.com/questions/924289/how-to-read-output-and-give-input-to-a-program-from-c-program</a></p> <p>I found the answer to the above question very usefull. In the same way can I do it for windows applications. Like can I give input into a windows form(like .net, C# applications) application's text box programmatically? Can I do the action of button click from a program. If so can I do it from a C program (with Tiny C compiler or any other on windows platform)?. If not how and in which language can I do it? Please dont take it as a silly question. Any example codes will be very much usefull. Thanks in advance. edit: can I do the same with web applications and web pages?</p> http://stackoverflow.com/questions/33897/online-php-ide/939670#939670 2 Answer by Coder for Online PHP IDE Coder 2009-06-02T13:49:15Z 2009-06-02T13:49:15Z <p>May be this could help you to execute sample php code and see output </p> <p><a href="http://codepad.org" rel="nofollow">http://codepad.org</a></p> http://stackoverflow.com/questions/924289/how-to-read-output-and-give-input-to-a-program-from-c-program 0 How to read output and give input to a program from c program? Coder 2009-05-29T03:41:27Z 2009-05-29T15:42:45Z <p>This is with reference to the below question<p> <a href="http://stackoverflow.com/questions/70842/execute-program-from-within-a-c-program">http://stackoverflow.com/questions/70842/execute-program-from-within-a-c-program</a> <p>How do I do the same on windows with Tiny C Compiler? I need to execute a .exe fro c program and give input to it from within the same C program by using a file or string as source and read the output from it into a string or file.I have been using system() frunction. Any suggesstions or examples are welcome..Thanks in advance</p> http://stackoverflow.com/questions/649197/suggestions-for-the-most-appropriate-best-embedded-language/828188#828188 0 Answer by Coder for Suggestions for the most appropriate (best) embedded language? Coder 2009-05-06T05:41:04Z 2009-05-06T05:41:04Z <p>C the best</p> http://stackoverflow.com/questions/771059/how-to-suspend-a-button-event-in-c 0 How to Suspend a button event in C#? Coder 2009-04-21T04:39:28Z 2009-04-21T12:10:03Z <p>In my application I want to suspend a button event for some time so that I can fire another event after which the first button event will resume. In c# I am not getting how do I perform it using threads asynchronously. Please help. Thanks in advance..</p> http://stackoverflow.com/questions/720644/disposing-a-form-from-parent-form-in-c 0 Disposing a form from parent form in C#? Coder 2009-04-06T08:45:58Z 2009-04-06T12:00:07Z <p>I have a form which will open a new form when one button (form1button) is clicked. And on the child form there will be another button 'form2button'. Now if I click this form2button the new form2 should be disposed. But because the form2 object is created here in form1 class method, I cannot dispose that object in form2 class method (fom2buttonclick). So I used static to get my work done as in the following psuedo code.</p> <p>Form1: <p></p> <pre><code>class form1:form { static form2 f2; public form1_buttonclick() { f2=new form2(); } public disposef2() { f2.dispose(); } } </code></pre> <p><p> Form2: <p></p> <pre><code>class form2:form { public form2_buttonclick() { form1 f1 = new form1(); f1.disposef2(); } } </code></pre> <p>Is there any other better way to do it. Or C# design itself doesnot provide an alternative mechanism. I am new to C#.Please help me out.. Thanks in advance <p><b>Edit</b> I want to close(dispose explicitely) form2 object which is created in form1 class when button on form2 is clicked. This edit is to give some more clarity.</p> http://stackoverflow.com/questions/657299/is-there-a-better-way-to-use-search-in-two-dimensional-arrays-of-cobol 1 Is there a better way to use SEARCH in two-dimensional arrays of COBOL? Coder 2009-03-18T07:58:43Z 2009-04-03T13:02:49Z <p>The Cobol's SEARCH keyword can be used to search one dimensional arrays indexed. <p>But I think this SEARCH is having some disadvantages when used for searching 2-d arrays. We can search using PERFORM loop also but is there a better way of utilizing SEARCH for 2-d arrays. Which one do you propose? </p> http://stackoverflow.com/questions/689412/source-code-viewers-to-display-parts-of-the-same-file-side-by-side/689475#689475 0 Answer by Coder for Source code viewers to display parts of the same file side by side Coder 2009-03-27T11:53:54Z 2009-03-27T11:53:54Z <p>notepad++ ... <p>its free and easy to use</p> http://stackoverflow.com/questions/1715025/function-to-read-files-one-by-one-in-a-directory Comment by Coder on Function to read files one by one in a directory Coder 2009-11-12T06:37:45Z 2009-11-12T06:37:45Z Hi Alex, I have been following your questions. They are really interesting. I appreciate your enthusiasm. I have one doubt. Are you doing any thing bigger with C? or Are you just practicing every task that can be done by C based on your interests. Please let me know if you do not mind. Any ways.. Good enthusiasm. http://stackoverflow.com/questions/1699766/what-happens-to-older-software-engineers/1699800#1699800 Comment by Coder on what happens to older software engineers? Coder 2009-11-09T09:15:11Z 2009-11-09T09:15:11Z Programmers are the main resources and managers are overheads to a company. What would you like to be. Driving force or a burden? http://stackoverflow.com/questions/1576928/jquery-datepicker-loading-in-the-back-side-of-the-textbox-css-problem/1577457#1577457 Comment by Coder on Jquery DatePicker loading in the back side of the textbox - css problem Coder 2009-10-20T04:11:31Z 2009-10-20T04:11:31Z Thanks for that. It solved my problem. In the div #centercontent I removed z-index. This solved my problem.Thanks a ton for helping me out. http://stackoverflow.com/questions/1576928/jquery-datepicker-loading-in-the-back-side-of-the-textbox-css-problem/1577457#1577457 Comment by Coder on Jquery DatePicker loading in the back side of the textbox - css problem Coder 2009-10-20T03:49:50Z 2009-10-20T03:49:50Z Thanks for that. Do you want me to put that piece of code in jquery-ui css or in my own css. I have tried putting that into my own css. But its not working. Even I made that value 0 then also its not working. http://stackoverflow.com/questions/1576928/jquery-datepicker-loading-in-the-back-side-of-the-textbox-css-problem Comment by Coder on Jquery DatePicker loading in the back side of the textbox - css problem Coder 2009-10-16T09:08:36Z 2009-10-16T09:08:36Z Hi Russ Cam I have posted the css now. My doubt is how can I bring the date picker on top of every thing http://stackoverflow.com/questions/1555019/move-browser-window-down-to-the-position-of-a-div-when-it-is-loaded-by-ajax-jqu/1555756#1555756 Comment by Coder on Move Browser window down to the position of a div when it is loaded by ajax & Jquery Coder 2009-10-13T07:32:23Z 2009-10-13T07:32:23Z Thanks for that. I am really able to use that with hell lot of ease. Thanks again http://stackoverflow.com/questions/1388566/repeat-a-task-using-schtasks-exe-in-windows-xp/1553702#1553702 Comment by Coder on Repeat a task using schtasks.exe in windows xp? Coder 2009-10-12T14:35:21Z 2009-10-12T14:35:21Z Thanks for that. http://stackoverflow.com/questions/1544058/how-to-replace-a-line-in-the-same-file-by-sed-in-unix-shell-scripting/1547038#1547038 Comment by Coder on How to Replace a line in the same file by SED in Unix Shell scripting? Coder 2009-10-12T07:35:27Z 2009-10-12T07:35:27Z Thanks for that. I am looking into that. http://stackoverflow.com/questions/1537324/is-there-any-table-changes-tracking-tool-for-mysql-which-will-log-all-changes-int/1537428#1537428 Comment by Coder on Is there any table changes tracking tool for mysql which will log all changes into other table? Coder 2009-10-08T13:11:50Z 2009-10-08T13:11:50Z I think PhpMyAdmin logs only the requests done through itself. In that case I need other solution. http://stackoverflow.com/questions/1537324/is-there-any-table-changes-tracking-tool-for-mysql-which-will-log-all-changes-int/1537428#1537428 Comment by Coder on Is there any table changes tracking tool for mysql which will log all changes into other table? Coder 2009-10-08T12:14:50Z 2009-10-08T12:14:50Z phpmyadmin supports that. God I did not know that. How can I use that to insert all logs into new table as per my requirement?? Please let me know as soon as possible. Thanks a lot in advance http://stackoverflow.com/questions/1537324/is-there-any-table-changes-tracking-tool-for-mysql-which-will-log-all-changes-int/1537357#1537357 Comment by Coder on Is there any table changes tracking tool for mysql which will log all changes into other table? Coder 2009-10-08T12:01:29Z 2009-10-08T12:01:29Z I am building up SQL queries by utility functions in codeigniter which will take data and give sql query string. http://stackoverflow.com/questions/1537324/is-there-any-table-changes-tracking-tool-for-mysql-which-will-log-all-changes-int/1537338#1537338 Comment by Coder on Is there any table changes tracking tool for mysql which will log all changes into other table? Coder 2009-10-08T11:53:59Z 2009-10-08T11:53:59Z Thanks a lot for your quick response. But I am not so good at stored procedures. Also I am not getting an idea of how to get only the changed columns old and new data.Can you suggest any example of such stored procedure for mysql. Thanks again http://stackoverflow.com/questions/1388566/repeat-a-task-using-schtasks-exe-in-windows-xp/1443093#1443093 Comment by Coder on Repeat a task using schtasks.exe in windows xp? Coder 2009-09-19T11:49:02Z 2009-09-19T11:49:02Z Thanks I can do this even with a c program. thank you very much for your advice http://stackoverflow.com/questions/296/should-i-learn-c/346#346 Comment by Coder on Should I learn C? Coder 2009-09-15T06:40:54Z 2009-09-15T06:40:54Z C is not legacy. You can do almost every thing through a C program in most of the cases. Try it. It will increase your knowledge of how a compiler or a programming language works. http://stackoverflow.com/questions/1334480/how-to-import-data-from-excel-file-to-teradata-table-using-bteq-scripts/1371302#1371302 Comment by Coder on How to import data from excel file to Teradata table using BTEQ scripts? Coder 2009-09-07T05:25:09Z 2009-09-07T05:25:09Z Thanks for your response. Atlast somebody from teradata's unknown land somebody responded. I will definitely look into the solution you proposed. But one thing is we can import data from excel file into teradata table using Teradata SQL assistant. Then why can't we use BTEQ for similar purpose? If it is really not possible then I will leave it. Once again thanks.