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

    Filter using RowFilter property of the DataView class

    I'm using the RowFilter property of the DataView class to filter the records of a typed dataset table. I had trouble working with date criterias. The thing is that the same criterias, ran in SQL Query Analyzer produce the results as expected. Clue, Anyone?
  2. leassaf

    opening files given their path and name

    Actually, there's something quite weird going on. My application allows launching office applications such as Word, Excel, PowerPoint. Whenever PowerPoint is launched, the focus remains at the PowerPoint app. As for Word and Excel, once their process has started, the focus is set back to my...
  3. leassaf

    opening files given their path and name

    Let me rephrase that. I need the focus to be set to the launched application (the whose process was started)...
  4. leassaf

    opening files given their path and name

    By the way, the file is opened but the focus is set back to the launching application... Is there a property that sets the focus to the application that was used to open the file?
  5. leassaf

    opening files given their path and name

    Fellows! You've been of so much help. Thanks extremely and good night...
  6. leassaf

    opening files given their path and name

    I’ve been looking for some way of opening files given their full name (path included). The only way I’ve found was the “Microsoft.VisualBasic” namespace, providing the old “Shell” function. However, this function only runs executable files. Suppose I want to open a PowerPoint or Excel document...
  7. leassaf

    Create files, but not text files

    Thanks, slighthaze! If you happen to hear anything new about other files than office, please let me know...
  8. leassaf

    Create files, but not text files

    That's an elegant way to handle new Word documents. What about Excel or PowerPoint (Or any other COM objects...Visio, Acrobat)? As far as I know, there is no general template exposed to Excel...
  9. leassaf

    Create files, but not text files

    Basically, what I need is to imitate the action of right-clicking on a folder and choosing “New”, then “Microsoft Word Document”. The I/O namespace seems to allow creating text files only. I cannot create a text file and only change its extension to “*.doc” since the file remains a text file (I...
  10. leassaf

    Create files, but not text files

    Basically, what I need is to imitate the action of right-clicking on a folder and choosing “New”, then “Microsoft Word Document”. The I/O namespace seems to allow creating text files only. I cannot create a text file and only change its extension to “*.doc” since the file remains a text file (I...
  11. leassaf

    Typed Dataset and interfaces problem

    I’m using .NET Remoting to build a distributed application. I use interfaces and the Factory design pattern to acquire remoted objects from the server to the client application. As long as I’ve used simple classes, I had no trouble in acquiring a reference to the real class via the factory...
  12. leassaf

    Typed Dataset and interfaces problem

    I’m using .NET Remoting to build a distributed application. I use interfaces and the Factory design pattern to acquire remoted objects from the server to the client application. As long as I’ve used simple classes, I had no trouble in acquiring a reference to the real class via the factory...
  13. leassaf

    Using ADO.NET from VBA

    Hi! Is it possible to manipulate a database using ADO.NET from visual basic for applications (VBA). If so, then which libraries should be referenced?
  14. leassaf

    Refresh page containing datagrid

    Hi all! Sorry for the 2 posts. Forgot the subject in the previous one. I have a page on which there’s a datagrid. One of the columns is a template column whose ItemTemplate is an “Image” control. Users can click a row which redirects them to another page in which they can upload an image. Once...
  15. leassaf

    MsgBox in ASP.NET

    Thank you so much, Mark, for the detailed guidance. It threw lots of light on the whole concept of Client/Server sides. I got it nearly done... Assaf
  16. leassaf

    MsgBox in ASP.NET

    Hi Mark! The purpose of the web form is to add a Category record to the “Categories” table in the NorthWind database. Once all the fields information was filled and the user clicks Submit (Add customer), a message box should appear asking “Add product”. If the user clicks “yes”, then the...
  17. leassaf

    MsgBox in ASP.NET

    How do I do that, Mark? Assaf
  18. leassaf

    MsgBox in ASP.NET

    How do I display a message box (Yes/No) on a web form, so that I can get a decision based on the user’s choice? Assaf
  19. leassaf

    Displaying *.jpeg pictures in a datagrid control

    Thanks Mark, Works smoothly... Assaf
  20. leassaf

    Displaying *.jpeg pictures in a datagrid control

    I’m displaying a datagrid on a web form. The grid is bound to a query in an Access 2000 database. One of the fields in that query is a relative path to *.jpeg pictures. Is there a way of displaying the picture in each row for that datagrid? I was thinking of an ItemTemplate in which I would put...

Part and Inventory Search

Back
Top