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 Wanet Telecoms Ltd 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. salooo

    C#: How to create report using a data table

    ...of what I am looking for. Here is a VB example of similar process to update a ListView item. But I am using C# so please give me examples in C#. ******************* Dim dr As DataRow cn = New SqlConnection("Server = Saloo\VsDotNET;database=Test_DB;trusted_connection = yes") ds...
  2. salooo

    C#: How to create report using a data table

    i, I am using VS.NET 2003 and using the C# language to deploy crystal reports for .NET. I want to create a report using a dataset by deploying the push model, also I want to know how I can create this report using a data table ?? I want to know how to implement the use of a "data...
  3. salooo

    How to create report using a data table

    Hi, I am using VS.NET 2003 and using the C# language to deploy crystal reports for .NET. I want to create a report using a dataset by deploying the push model. Also I want to know how I can create this report using a data table ?? I would really appreciate if anyone can provide me the steps...
  4. salooo

    C#: Need help with reading connection string from file

    ...or by editing in a text editor. I have found the aolution. I am pasting it here for future reference. Thanks a lot all you guys for the help. ****************************** FileStream fs = new FileStream(@"C:\connPath.fil" , FileMode.Open, FileAccess.Read); StreamReader...
  5. salooo

    C#: Need help with reading connection string from file

    Hi, The file opens just fine in notepad without any garbage caharcters. The information in the file is exactly the way it is in the text file that I was using earlier. This means that the file is in ASCII format right ? So in that case it makes perfect sense it should open just as the text file...
  6. salooo

    C#: Need help with reading connection string from file

    Hi again, I have a related question if you could please help me out. I am trying to read from a file that has a type of ".fil" I am unable to read this file through the stream reader. Can anyone please tell me how I have to cahnge my code in order to be able to read from a...
  7. salooo

    C#: Need help with reading connection string from file

    Hi guys, I would like to thank you all for your kind feedback on the issue. I have found the problem...its very simple. I was using 2 slashes in my data saource's name and that is what caused the problem. We only need 1 slash when we are reading from file. Everything is working fine now...
  8. salooo

    C#: Need help with reading connection string from file

    ...after reading from a file I cant get it to work, but if I pass the same value by assigning it to the string variable it works just fine i.e. ******* If I use the following it works just fine: path = "data source = Saloo\\VSdotNET;database=Test_DB;trusted_connection=yes&quot...
  9. salooo

    C#: Need help with reading connection string from file

    Hi obislavu, Thank you for your quick response but alas the solution you provided still does not work I get the message saying the SQL Server does not exist or access denied. This is the same thing that I saw previously. I looked at the contents of the string variable before it went into the...
  10. salooo

    C#: Need help with reading connection string from file

    ...StreamReader m_streamReader = new StreamReader(fs); path = m_streamReader.ReadLine(); SqlConnection sqlConn = new SqlConnection(path); ******* If I use the following it works just fine: path = "data source = Saloo\\VSdotNET;database=Test_DB;trusted_connection=yes&quot...
  11. salooo

    C#: How to control the behavior of the TAB Key ???

    Hello Steve, Yeah man this issue is a real pain in the butt. I tried to change the "tab stop" property of every control on my form to False, that's the only way your IsInputChar will produce a result telling you that the tab key was pressed. For now I have changed this property for...
  12. salooo

    need help with crystal reports

    Hi obislavu, Thanks a lot for your kind help buddy. I really do appreciate your help for taking out the time to develop these steps. Thanks a bunch....I posted the same question on another forum and someone mentioned the following solution. May be you can use it in the future...
  13. salooo

    need help with crystal reports

    Thanks a lot buddy. This is exactly what I wanted to know. I really do appreciate your help. Thanks. Chow. Salmaan.
  14. salooo

    need help with crystal reports

    Hi obislavu, Thank you for your quick response. Yes I am getting all the info from a DB, you mentioned " If your data to is from a DB you have to create an intermediate table with the structure as you described and generate a .rpt file from this table." How do I actually come about...
  15. salooo

    need help with crystal reports

    Hi, I am using Visual Studio.NET and deploying crystal reports using the C# language. I would like to create a report to that would help save paper. I need to know how I can create a report that would display the data in the following fashion: order # Order Date Amount order # Order Date...
  16. salooo

    need help with crystal reports

    Hi, I am using Visual Studio.NET and deploying crystal reports using the C# language. I would like to create a report to that would help save paper. I need to know how I can create a report that would display the data in the following fashion: order # Order Date Amount order # Order Date...
  17. salooo

    C# & Crystal Reports: Enforce column headings....

    Hi, I am using C# with MS VS.NET and deploying reports in Crystal. I want to know if there is a way to enforce the column header (by this I mean the column headings/labels) to continiously stay visible in the report viewer. The thing is that I have a couple of reports that are displayed in a...
  18. salooo

    C# & Crystal Reports....

    Hi, I am using C# with MS VS.NET and deploying reports in Crystal. I want to know if there is a way to enforce the column header (by this I mean the column headings/labels) to continiously stay visible in the report viewer. The thing is that I have a couple of reports that are displayed in a...
  19. salooo

    Need Recommendation: Help Authoring Software

    Hi, I would really appreciate if someone can recommend a help authoring software to be used with WinXP & Win 2003 Server. It is very critical that this software allows for the use of an "Answer Wizard." The one that you must have seen in MS Viso. Any help would be greatly...
  20. salooo

    C#: How to control the behavior of the TAB Key ???

    Hello, I am using C# on the VS.NET platform. I have this application that requires the TAB key to function in a different manner. I want to know how I can control the behavior of the TAB key in my Application??? If there is no way to control the TAB key, is it possible to disable it...

Part and Inventory Search

Back
Top