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 gkittelson 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: *

  1. Nejibg

    DataGridView & DataGridViewComboBoxCell

    Hi all, I'm populating my DataGridView from database without any problems. But cells in 1 of the columns can have 1 of 3 possible values. How can I display the current values in the cell and allow the user to amend it by selecting 1 of the 3 possible values? (When the user wants to amend the...
  2. Nejibg

    fileSystemWatcher problem

    I also found this thread: http://www.eggheadcafe.com/forumpost.aspx?topicid=2&forumpostid=10094208
  3. Nejibg

    fileSystemWatcher problem

    Hi, Thanks for your reply. How are you polling the share? This code below would be ideal if the onError event would fire when the connection with the shared folder is lost. I'll post here again if I find anymore info, I hope you'll do the same. Thanks. ======================= using System...
  4. Nejibg

    fileSystemWatcher problem

    Hi, I worte a Csharp application that monitors a shared folder on our network using fileSystemWatcher component, the problem is that if the network connection is lost for few seconds fileSystemWatcher stops monitoring without raising any errors at all! And it doesn't start monitoring when...
  5. Nejibg

    + sign trigers another query depending on user selection

    Hi, Is it possible to create a report where after the user runs it, they can click on a plus sign on the report which will trigger another query and display further results? This is to avoid user having to wait a long time for the whole report of finish running. Thanks, N.
  6. Nejibg

    c# NetworkBrowser() in Delphi

    Hi all, Does anyone know the equivalent to this c# code in Delphi? Thanks in advance. N. private void frmMain_Load(object sender, EventArgs e) { //create a new NetworkBrowser object, and get the //list of network computers it found, and add each...
  7. Nejibg

    Programatically recycle an application in "Application Pools"

    Hi All, Does anyone know how to recycle an application in "Application Pools" programatically in Delphi ? Normally I do this by: Right click on my Computer Expand Services and applications Expand Internet Information Service Expand Application pools Right click my application then left click on...
  8. Nejibg

    dropdownlist as a parameter

    Thanks for your reply. I'm not writing any .Net code. I just created an SSRS report which has report params. One of them is a dropdownlist, which I'd like to pass its selected items to my sql function in a comma delimited format (UserSelectedCountries). My code is: SELECT companies,Countries...
  9. Nejibg

    dropdownlist as a parameter

    Hi, Thanks for your reply. I'm using the Visual Studio .NET integrated Report Designer.
  10. Nejibg

    dropdownlist as a parameter

    Hi All, I have a dropdownlist which contains different ProdutIds. I have to use the values from the dropdownlist as a parameter to the report. How to use the dropdownlist to the Report? Thanks for your help. N.
  11. Nejibg

    textbox as a param

    Hi All One of my report parameters allows users to select a list of countries from a dropdown list, and I'd like to pass the selected countries to one of sql functions in my query. I created a textbox to hold a list of the selected countries this way: =split(parameters!Countries.Value,",")...
  12. Nejibg

    Rows into Coumns

    Thanks for your reply. I have to admit my SQL skills is not that good. I'll give it a test. Cheers.
  13. Nejibg

    Rows into Coumns

    I'm not sure if this will work either. I know I should have stated in my orignal post that my clientID is alphanumeric AB01...ZZ99 Thanks anyway.
  14. Nejibg

    Rows into Coumns

    Thanks for your reply. That won't work as my clientid is alphanumric so it can be ab12 ... az20,... Thanks again.
  15. Nejibg

    Rows into Columns

    I've a table that displays something like this: clientid order OrderDate -------- ------ --------- 1 Printer 2 mouse 1 monitor 3 printer 4 keyboard 2 keyboard But I'd like to get this result: Where I display the latest 4 orders in the same row...
  16. Nejibg

    Rows into Coumns

    Hi All, I've a table that displays something like this: clientid order OrderDate -------- ------ --------- 1 Printer 2 mouse 1 monitor 3 printer 4 keyboard 2 keyboard But I'd like to get this result: Where I display the latest 4 orders in the same...

Part and Inventory Search

Back
Top