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 SkipVought 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: nphani
  • Order by date
  1. nphani

    DataGrid up and down

    Hello Friends, I am writing a Windows Form which contains a DataGrid bound to a DataSet. The requirement has come up asking me to implement 2 buttons (Up and Down). If a user clicks on the Up button, the currently selected row in the datagrid should go up and same with down. Say initially the...
  2. nphani

    C# and MS Excel

    Thanks Satish, The links were really helpful.
  3. nphani

    C# and MS Excel

    Any suggestions please?
  4. nphani

    C# and MS Excel

    The problem is the formula being used in Excel is like a external system's formula and we are not given rights to know it. So the only way (actually a quick fix for now) is to read the value from the excel file. I know it sounds a little stupid, but i guess thats how quick fixes are :)
  5. nphani

    C# and MS Excel

    Hello Friends, I have an excel file that contains 3 columns like this: A B C ------------------ <num1> <num2> $A * $B So, basically columns A and B contain some numbers. Column C contains the product of the numbers in A and B, per row. I want to write a C# code that writes into columns A and...
  6. nphani

    VB 6.0 Internet Explorer Printing Error

    I finally get it running like this: Dim WithEvents iSHDocIE As SHDocVw.InternetExplorer Dim WithEvents iSHDocWebBrowser As SHDocVw.WebBrowser Public Sub PrintPDF(FileName As String) Set iSHDocIE = New SHDocVw.InternetExplorer Set iSHDocWebBrowser = New SHDocVw.WebBrowser Set iSHDocWebBrowser...
  7. nphani

    VB 6.0 Internet Explorer Printing Error

    I have changed the permissions and rebooted, as mentioned in the following URL: http://www.mcse.ms/message130209.html But no change... I never had any issues with IE (as those mentioned in the above hyperlink). Should I add any other user to that list also? I am relatively new to VB. Does VB...
  8. nphani

    VB 6.0 Internet Explorer Printing Error

    Hello Friends, I use the following code to print HTML files using the SHDOCVW.DLL (By adding a reference to it): Dim iSHDocIE As SHDocVw.InternetExplorer Dim iSHDocWebBrowser As SHDocVw.WebBrowser Set iSHDocIE = New SHDocVw.InternetExplorer Set iSHDocWebBrowser = New SHDocVw.WebBrowser Set...
  9. nphani

    On Error GoTo statement

    Hi Friends, I am actually coding in VBA and could not find a better forum that could answer my question... I have 3 functions, one calling other and each call being handled by an error handler: Function A: _________ Top_A: On Error Goto ErrHndl_A B() ' call to function B() ErrHndl_A...
  10. nphani

    ODBC call failed on concurrent queries

    Hey Friends, I have an application written in VBA with Oracle backend. You can add a record in Oracle through VBA frontend. This addition of record involves querying for new record's number and then inserting etc. Everything works fine if only one user is creating a new record. But if 2 or more...
  11. nphani

    &lt;!-- #include file=... Name redefined...

    I finally sorta cleared the problem... I am now using a callChildFile.asp which includes the incFile.asp and childFile.asp. So any file that wants to use ChildFile.asp (and doesnot contain incFile in it) will use callChildFile.asp. Files like parentFile.asp (which have incFile included) will...
  12. nphani

    &lt;!-- #include file=... Name redefined...

    Great baddos, That works fine.. but for one thing thou.. I want to send a variable to the childFile, saying if you are being server.executed, then finally redirect to one page, else go to other. I am trying to use query strings, but they don't seem to work. any other way out? Phani
  13. nphani

    &lt;!-- #include file=... Name redefined...

    This must be a very simple question for most of you, but is important to me becos of the time constraint... I have a file say incFile.asp which declares variable as: Dim strConnection I include this asp in every file that needs a database connection (I should have used Application variable...
  14. nphani

    Load DropDown Box according to radio button selected...

    I have an ASP file with a set of radio buttons followed by drop down list... The requirement is that the contents in the drop down list should change according to the radio button selected. I can think of using 2 drop down lists and alternately showing one of them (while hiding the other). But...
  15. nphani

    2 Dimensional Array

    This question might seem too simple, but I am completely new to VBScript and am finding it difficult to declare a 2-D array. I want to declare an array as: int arr = {{1,2,3}, {4,5,6}, {7,8,9} .. and so on... } I have given the above in &quot;C&quot;. How would I do that in VBScript? And...
  16. nphani

    Tab Controls

    Guys, this is a real URGENT task given to me... I am not able to come up with some good looking tab control page. Please please please help me... Thanx in advance, Phani
  17. nphani

    Tab Controls

    I have a real lengthy page and we have decided to shorten it using Tab Controls. Can someone guide me to a good tab code with decent look. Thanx, Phani
  18. nphani

    SQL Queries with Quotes for non-existent columns

    I have come across VIEWs given as : SELECT Name, 'Non-existent-field-with-quotes' AS Something FROM myTable; But I donot understand why would I need that &quot;Something&quot; when it is not present at all? For example: this is a sample VIEW SELECT myID, myName, myCity, myState, 'a' as a...
  19. nphani

    Crystal Reports Evaluation Download

    I want to work on Crystal Reports (preferably version 8.5) and am looking for a evaluation download of the same. I am not able to find any on the internet. Can somebody help me with a link. Thanx in advance, Phani
  20. nphani

    SQL Server on Windows XP Pro

    I am trying to install SQL Server 2000 on Win XP Professional and it says that XP Pro OS doesnot support Server and therefore only client tools will be installed. But I remember installing the server on winxp pro earlier and it worked fine then. Should I install something more too to make SQL...

Part and Inventory Search

Back
Top