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

    Configuration file issue

    How can I make my application to expect config file under "C:\Documents and Settings\All Users\Application Data\MyApplication" folder rather install folder. My app performs read/write operation on application configuration file that gets installed under application folder "c:\program files\My...
  2. ashishraj14

    Configuration file issue

    How can I make my application to expect config file under "C:\Documents and Settings\All Users\Application Data\MyApplication" folder rather install folder. My app performs read/write operation on application configuration file that gets installed under application folder "c:\program files\My...
  3. ashishraj14

    Issue using Process.Start() to execute command line statement

    Someone mentioned a quirk of xcopy.exe on one of the MSDN forums. When we redirect output we have to redirect input too. If we don’t, it immediately and silently quits right after startup. I don’t know concrete reason for it, but does the trick. Thanks everyone for help.
  4. ashishraj14

    Issue using Process.Start() to execute command line statement

    Hi JurkMonkey I tried running cmd as process but that didn't help. I can't ignore redirecting the output because as I have to log the outcome of the xcopy process to the log file. Is there any other way to achieve that? Thanks
  5. ashishraj14

    Issue using Process.Start() to execute command line statement

    I am having issues copying files from network drive to local machine using xcopy. The following code works alright for a console application, but as soon as i call this code in Form Load event of windows application it does not work. I am confused here, it copies files in a console application...
  6. ashishraj14

    Populating word document with data in .net application?

    I need to create a Contract of Sale document in word which gets populated with client details from a .net application. How can I populate word document from a .net application and then open the document? I am using office 2003, VS2005 and SQL Server 2005 Thanks
  7. ashishraj14

    Problem with FOR XML clause

    I am trying to persist data from SQL Server 2005 table into an XML file using FOR XML clause in the SELECT statement. I have a column named “Photo” of type Image. Issue is; the FOR XML clause is returning the picture as some reference instead of binary format...
  8. ashishraj14

    Out of memory exception – reading xml file

    How can I read a large xml file containing blob fields? I have an xml file that store information about products including 5 images for each product. I am getting Out of Memory Exception when I try populate Dataset using ReadXml() method. Why am I getting this exception when I am running on...
  9. ashishraj14

    updating data on webserver from windows app?

    how can i add, modify, delete data in sql server database hosted on webserver? i have a client form that enables maintaining client information. every time a client info is added, modified or delete i want changes to be replicated in sql server database on webserver as well. please help. Thanks
  10. ashishraj14

    Reconciling changes in the DataTable

    How can I reconcile changes between two data table and create a subset of those changes. I have two data tables with same schema which gets populated from two different xml files. I want to get hold of missing & changed rows in first table from second table. Tables have ID as primary key. Thanks
  11. ashishraj14

    packaging sql server express with .net 2.0 application

    how can i include sql server express and required database in my setup project? Thanks
  12. ashishraj14

    Mater Details records in DataGridView

    Is it possible to show mater detail in DataGridView. If you bind DataSet with relationship defined to DataGrid it show records in drill down manner (+ to expand details) but DataGridView does not. Thanks
  13. ashishraj14

    VS 2005 - Collapsible property for custom control

    How can I make property for my custom control collapsible at design time? Similar to Size, Location, Padding and other properties. I want to create Dimension property for my control which has collapsible x and y element. Thanks
  14. ashishraj14

    Problem calling VB6 forms from .NET app

    I can't compile it as ActiveX DLL as it is a MDI app and contains plently of End statement. ActiveX DLL doesn't suppport either. I'll try out the other trick (shut down method)
  15. ashishraj14

    Problem calling VB6 forms from .NET app

    I have a VB6 application which I want to use in .NET application. I have created a public class in VB6 app which has following public method on it and compiled my VB6 app as ActiveX.exe Public Function GetFormFrameHwnd() As Long Dim frm As New frmCompany GetFormFrameHwnd =...
  16. ashishraj14

    Modifying data on web serve using VB.NET

    I need to modify data living in MySQL database on a web server. How can I access it using VB.NET application? Thanks
  17. ashishraj14

    Reporting DataSet Using Crystal Report in VB.NET 2005 App

    How can I report un-typed DataSet/DataTable using Crystal Reports? I can’t define a schema at design time as my DataSet/DataTable is build dynamically and number of columns varies with each run. Thanks
  18. ashishraj14

    Open VB.NET app from VB6 app & vice-versa

    How can I open VB.NET application from within VB6 application? I have a button on the toolbar for the main form of VB6, which should open VB.NET application. The main form of the VB.NET application displays set of results for various companies in a DataGrid. There is a “Open Company” button...
  19. ashishraj14

    Add password to connectionstring

    I don't want users to enter the password at runtime.
  20. ashishraj14

    Add password to connectionstring

    Creating a new typed dataset using the Data Source Configuration Wizard (and opting NOT to save the password with user settings) generates a ConnectionString setting like... Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\JB74\LISYSTEM.MDB;User ID=user;Jet OLEDB:System...

Part and Inventory Search

Back
Top