User odiseh - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T17:31:55Z http://stackoverflow.com/feeds/user/61156 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1818029/how-to-display-a-picture-in-crystal-reports-8-5-dynamically 0 How to display a picture in crystal reports 8.5 dynamically? odiseh 2009-11-30T05:48:53Z 2009-11-30T05:48:53Z <p>Hi</p> <p>Is there any way to show an image in crystal reports 8.5 dynamically?</p> http://stackoverflow.com/questions/1789236/using-stored-procedure-in-crystal-report-8-5 0 Using stored procedure in crystal report 8.5? odiseh 2009-11-24T10:38:29Z 2009-11-25T13:31:50Z <p>I have made a new report using Crystal Reports 8.5 (report1) which uses a stored procedure as its data source. The stored procedure has 2 input parameters (@p1 and @p2) and when I enter some test data for @p1 and @p2 within crystal report IDE , every thing is all right. Then, I added the report1 in visual basic 6.0 IDE and added a new form (form1) and a crystal report viewer control on form1. Now please help me: I wanna to show the report1. What codes exactly should I write to show it?How send data user has entered to the stored procedure parameters via application? I also get this error messsage: the server has not been opened yet"</p> <p>What's wrong?</p> http://stackoverflow.com/questions/1796688/how-to-pass-stored-procedure-parameter-values-from-vb6-application-to-show-a-repo 0 How to pass stored procedure parameter values from vb6 application to show a report (made by crystal reports 8.5)? odiseh 2009-11-25T12:42:53Z 2009-11-25T12:51:13Z <p>Hi </p> <p>How Can I pass stored procedure parameter values from vb6.0 application to show a report (made by crystal reports 8.5) ?</p> <p>any help will be appreciated</p> <p>Below lines are what I have done but still have problem on showing the report:</p> <pre><code>Private Sub FeedReport() Dim mobjReport as New CrystalReport1 Dim CRXParamDefs As CRAXDDRT.ParameterFieldDefinitions Dim CRXParamDef As CRAXDDRT.ParameterFieldDefinition Set CRXParamDefs = mobjReport.ParameterFields For Each CRXParamDef In CRXParamDefs With CRXParamDef .ClearCurrentValueAndRange Select Case .ParameterFieldName Case "@ProjectCreateDateFrom": .AddCurrentValue Me.msProjectCreateDateFrom Case "@ProjectCreateDateTo" .AddCurrentValue Me.msProjectCreateDateTo End Select .ClearCurrentValueAndRange Select Case .Name Case "{?@ProjectCreateDateFrom}": .AddCurrentValue Me.msProjectCreateDateFrom Case "{?@ProjectCreateDateTo}" .AddCurrentValue Me.msProjectCreateDateTo End Select End With Next DoEvents With mobjReport .txtProjectCreateDateFrom.SetText Me.msProjectCreateDateFrom .txtProjectCreateDateTo.SetText Me.msProjectCreateDateTo .Database.Tables(1).SetLogOnInfo .Database.Tables(1).LogOnServerName, .Database.Tables(1).LogOnDatabaseName, .Database.Tables(1).LogOnUserID, strPassword .DiscardSavedData .EnableParameterPrompting = False .ReadRecords End With CRViewer1.ReportSource = mobjReport CRViewer1.ViewReport </code></pre> <p>End Sub '================================</p> http://stackoverflow.com/questions/1783808/how-to-feeding-crystal-report-8-5-parameters-from-vb6-0-application 0 How to feeding Crystal Report 8.5 parameters from VB6.0 Application? odiseh 2009-11-23T15:23:31Z 2009-11-24T04:43:00Z <p>hi How to feeding Crystal Report 8.5 parameters from VB6.0 Application?</p> http://stackoverflow.com/questions/1736894/how-to-use-a-stored-procedure-in-a-crystal-reports-8-5 0 How To use a stored procedure in a crystal reports 8.5? odiseh 2009-11-15T07:36:49Z 2009-11-16T00:09:39Z <p>Hi all.... I have to make a new report using crystal report8.5 . I have created a stored procedure in SQL Server 2005. The stored procedure has one input parameter.</p> <p>Now I wanna to know that how I can add that stored procedure and show its result in my report while designing that report?</p> <p>thank you</p> http://stackoverflow.com/questions/1584321/how-to-get-schema-of-our-table-without-filling-its-datatable-before-calling-newro 0 How to get schema of our table without filling its DataTable before calling NewRow method? odiseh 2009-10-18T08:04:26Z 2009-10-18T08:25:55Z <p>Hi all. I know that I should have schema of a table before calling NewRow method in order to add a new row to a DataTable....</p> <p>But as you know, having the schema of a table means filling its DataTable by records from DB. This means connecting to DB and fetch records.</p> <p>Is there any way to have schema without performing a select statement?</p> http://stackoverflow.com/questions/1553422/in-what-situations-is-the-prepare-method-of-a-sqlcommand-object-useful 0 In what situations is the prepare method of a SqlCommand object useful? odiseh 2009-10-12T08:45:52Z 2009-10-12T08:59:44Z <p>Does any body know that in what situations the prepare method of an ADO.NET SqlCommand Object is useful?</p> http://stackoverflow.com/questions/1091050/based-on-what-logical-reasons-virtual-and-new-modifiers-have-diffrent-results-in 0 based on what logical reasons, virtual and new modifiers have diffrent results in inheritance and polymorphism issues? odiseh 2009-07-07T08:37:02Z 2009-10-10T06:00:03Z <p>Hi ... I know that when we have a virtual function in our own base class, then by overriding it in a derived class and considering casting when variable declaration, we have different result with comparison to using new modifier in the derived class. but why? Is there any logical reason for that or we have to learn it without any reason?</p> http://stackoverflow.com/questions/1382761/why-my-computer-opens-crytal-reports-8-5-file-within-about-20-seconds 0 Why my computer opens Crytal Reports 8.5 file within about 20 seconds? odiseh 2009-09-05T08:03:04Z 2009-10-08T21:09:25Z <p>Hi I have installed Crystal Reports 8.5 on my computer recently. But When I open an existing file (.rpt), it takes about 20 seconds!</p> <p>The system O/s is : Win XP SP2.</p> <p>any help is appreciated...</p> http://stackoverflow.com/questions/1520130/relationship-between-assembly-and-namespace-in-net-framework 0 Relationship between Assembly and Namespace in .NET framework? odiseh 2009-10-05T13:38:29Z 2009-10-06T01:13:43Z <p>I know that it's possible to have many classes in a namespace. Now, is it possible to have a class in more than one assembly (.dll file)?</p> http://stackoverflow.com/questions/1515806/why-cant-i-connect-to-team-foundation-server 0 Why can't I connect to Team Foundation Server ? odiseh 2009-10-04T07:08:28Z 2009-10-05T13:35:41Z <p>I had installed VS2008 and VS2008SP1 on my machine a few month ago and today I tried to install TFC again installed VS2008SP1. </p> <p>But when I try to connect to another machine within domain which my computer belongs to, I get this error message:</p> <p>"TF31002 Unable to connect to this Team Foundation Server......" </p> <p>I should say that I use WinXP sp2 as the OS.</p> <p>what is the problem?</p> http://stackoverflow.com/questions/1515806/why-cant-i-connect-to-team-foundation-server/1520116#1520116 0 Answer by odiseh for Why can't I connect to Team Foundation Server ? odiseh 2009-10-05T13:35:41Z 2009-10-05T13:35:41Z <p>Thank you. Yeah It was because of permission...</p> http://stackoverflow.com/questions/1286587/ways-to-feed-a-report-degined-by-crystal-reports-8-5-in-vb6-0-to-show-a-special 0 Ways to feed a report (degined by crystal reports 8.5 in vb6.0) to show a special record ? odiseh 2009-08-17T07:32:38Z 2009-10-02T21:04:49Z <p>Hi I am new to Crystal reports and now I have designed a report via Crystal reports 8.5 in vb6.0 and wanna to display the report.</p> <p>I have picked up fields data from a View within my Data base but as you know Views have several records. I wanna to select a special record by a Primary key which is value of a textbox on my form.</p> <p>please help me</p> http://stackoverflow.com/questions/1481236/working-with-time-portion-of-a-datetime-column-in-sql-server2008 0 Working with Time portion of a DateTime Column in SQL Server2008 odiseh 2009-09-26T13:38:57Z 2009-09-26T15:20:41Z <p>i have a table in SQL Server 2008 which its name is Table1. Table1 has a column named CreateDate which its data type is datetime. Now, I wanna to get records that their createDate field values are more than for instance 1 hour.</p> http://stackoverflow.com/questions/1417347/how-to-store-nested-groups-of-checkboxes 0 How to Store "Nested groups of checkboxes" ? odiseh 2009-09-13T10:02:48Z 2009-09-13T10:02:48Z <p>Hi I have a form (form1) which should gather information from user and save them into DB. In form1, I have 4 different groups:</p> <pre><code>Group1: Operational Costs(Material, Salary, Maintenance) Group2: Selling Costs(Advertisement, Transport, Operational Costs) Group3: Financial Costs (Benefit, Penalty) </code></pre> <p>Every option like Material, Salary, Maintenance, Advertisement,...Penalty should have a checkbox control in order to get what the user's option.</p> <p>As you see above, Group2 contains 3 branches and the last one of them is Group1.</p> <p>Now, What is the best design for a table for saving data into DB form this form?</p> <p>I use SQL Server 2005 and Vb6.0. THANK YOU</p> http://stackoverflow.com/questions/1398853/how-to-design-a-masterpage-for-a-website-is-there-any-template 0 How to design a masterpage for a website? Is there any template? odiseh 2009-09-09T10:35:37Z 2009-09-09T10:39:35Z <p>HI</p> <p>I am going to create a website, So I need to have a master page for all my own pages.</p> <p>But its difficult to design it from scratch, Is there any template I use and just changing for example the colors, font sizes, ...?</p> http://stackoverflow.com/questions/1385311/how-to-fix-fonts-corrupt-when-i-export-a-crystal-report-8-5-to-pdf 0 How to fix: Fonts corrupt when I export a crystal report 8.5 to PDF? odiseh 2009-09-06T09:53:54Z 2009-09-06T09:53:54Z <p>hi all I have created a sample report using Crystal report 8.5 and vb6.0 Every thing goes normal till I try to export the report to Pdf format by its export icon. As soon as I do that, the report texts are damaged and nothing could be readable.</p> <p>How to fix it?</p> <p>Thank you</p> http://stackoverflow.com/questions/1147351/business-layer-data-access-layer-is-there-any-resource-to-learn-how-to-make-rel 0 Business Layer, Data Access Layer. Is there any resource to learn how to make relation between Business layer classes with Data Access layer classes? odiseh 2009-07-18T11:51:51Z 2009-09-06T06:09:55Z <p>Business Layer, Data Access Layer. Is there any resource to learn how to make relation between Business layer classes with Data Access layer classes?</p> http://stackoverflow.com/questions/1372696/how-to-work-with-checkboxes-in-vsflexgrid-in-vb6-0 1 How to Work with checkboxes in VsFlexGrid in vb6.0? odiseh 2009-09-03T10:45:15Z 2009-09-03T12:04:32Z <p>Hi I am developing a form for handling access rights in a project. I use VsflexGrid7.0 and also Vb6.0. I thought that it would be good when I show 1 (has access) and 0 (doesn't have) via checkbox within my vsflexgrid(vsflexgrid1).</p> <p>Now, my problem is when I click on a checkbox for Insert access right, how to get control it's value ?</p> <p>Thank you</p> http://stackoverflow.com/questions/1081474/looking-for-an-e-book-about-architecting-applications-using-net -1 looking for an e-book about Architecting Applications using .NET odiseh 2009-07-04T04:20:33Z 2009-09-02T09:30:57Z <p>Hi all Sorry, I really don't know that whether I can ask my request here or not. but actually, I need to read a book named:</p> <p>"Microsoft® .NET: Architecting Applications for the Enterprise"</p> <p>I googled internet but I didn't find....</p> <p>Do you have it's e-book?</p> http://stackoverflow.com/questions/1362403/why-creating-a-new-crystal-report-object-in-vb6-takes-a-long-time 1 Why creating a new Crystal Report object in VB6 takes a long time? odiseh 2009-09-01T13:10:09Z 2009-09-01T13:38:29Z <p>I am developing software using VB6 and Crystal Reports 8.5.</p> <p>When debugging I have found that it takes a long time for the compiler to create a new Crystal Reports object.</p> <p>Here is the code:</p> <pre><code>Private mobjReport As rptProject Private Sub Form_Load() Set mobjReport = New rptProject ''takes long time do to mobjReport.txtSerial = GetLastSerialNumber End Sub </code></pre> <p>Why is this and how can I make it faster?</p> http://stackoverflow.com/questions/1361033/what-does-stathread-do 8 What does [STAThread] do ? odiseh 2009-09-01T07:29:37Z 2009-09-01T07:39:13Z <p>Hi I am learning C# 3.5 and wanna to know that what [STAThread] do in our programs? </p> <p>Thank you</p> http://stackoverflow.com/questions/1360632/object-serialization-and-deserialization 1 Object Serialization and Deserialization? odiseh 2009-09-01T05:11:52Z 2009-09-01T05:39:55Z <p>Hi all.</p> <p>What are Object Serialization and Deserialization? What difference does Serialization have with normal techniques like reading an object's properties and then filling a DataRow's columns with them and finally saving the DataRow in DB ?</p> <p>Thank you</p> http://stackoverflow.com/questions/1115762/in-c-when-sending-a-parameter-to-a-method-when-should-we-use-ref-and-when 2 In c# , when sending a parameter to a method, when should we use "ref" and when "out" and when without any of them? odiseh 2009-07-12T10:36:32Z 2009-08-31T11:50:21Z <p>In c# , when sending a parameter to a method, when should we use "ref" and when "out" and when without any of them?</p> http://stackoverflow.com/questions/1353511/get-object-from-formview-with-javascript/1353546#1353546 -1 Answer by odiseh for Get object from Formview with javascript odiseh 2009-08-30T10:09:16Z 2009-08-30T10:09:16Z <p>try other form events....</p> http://stackoverflow.com/questions/1350896/how-to-handle-null-for-a-allow-null-datetime-field-db-in-our-program 2 How to handle null for a allow-null datetime field (DB) in our program? odiseh 2009-08-29T08:58:39Z 2009-08-29T09:23:14Z <p>How could we handle null for a datetime field (got from SQL Server) in our program in c#?</p> http://stackoverflow.com/questions/1350703/customvalidator-servervalidate-parameters-description 0 customvalidator servervalidate parameters description odiseh 2009-08-29T06:55:48Z 2009-08-29T07:06:11Z <p>Hi</p> <p>The ServerValidate event of CustomValidator has 2 parameters: source and args.</p> <p>What each of them point out to? Any description of them please.</p> <p>Thank you</p> http://stackoverflow.com/questions/1350608/asp-net-validation-how-to-compare-values-of-2-controls-on-the-form-and-using-som 0 asp.net validation: how to compare values of 2 controls on the form and using some functions like substring,.... odiseh 2009-08-29T06:02:28Z 2009-08-29T06:33:56Z <p>Hi I have to compare 2 values which are the text property of 2 textbox controls on my .aspx form.</p> <p>Using Compare validator does not enough for, I have to use some functions like substring.</p> <p>As far as I know, the Compare validator does not allow to use substring. </p> <p>Using Custom validator and handle it's serer-side "ServerValidate" event, as you know, It gives 2 arguments (source and args), how can I compare a text property of other control in this function? </p> <p>If I can not, what is your solution?</p> http://stackoverflow.com/questions/1333270/why-i-cant-see-event-names-of-a-particular-control-in-visual-studio-2008-in-prop 0 Why I can't see event names of a particular control in visual studio 2008 in property window? odiseh 2009-08-26T08:49:08Z 2009-08-26T08:49:08Z <p>Hi</p> <p>It's about 3 days that suddenly the button that show the event names of a particular control within my .aspx web form in property window disappeared.</p> <p>Now, I can't work easily.</p> <p>What can I do?</p> http://stackoverflow.com/questions/1327408/asp-net-how-to-do-just-server-side-validation 1 ASP.NET : how to do just Server-side validation ? odiseh 2009-08-25T10:34:20Z 2009-08-25T12:11:08Z <p>what are the ways to do server-side validation in an asp.net web form? Using custom validator and it's serverValidate event? or what else?</p> http://stackoverflow.com/questions/1789236/using-stored-procedure-in-crystal-report-8-5/1792233#1792233 Comment by odiseh on Using stored procedure in crystal report 8.5? odiseh 2009-11-26T08:50:04Z 2009-11-26T08:50:04Z Oh, finally found it....:) 1- as you kindly said, there is not need to fill a recordset after adding a SP to the report at design time. 2 - if a for each loop, using a select statement we choose every parameter and assign its value. 3 - we need to use SetLogOnInfo method Craig, Thank you very much 3 - http://stackoverflow.com/questions/1789236/using-stored-procedure-in-crystal-report-8-5/1792233#1792233 Comment by odiseh on Using stored procedure in crystal report 8.5? odiseh 2009-11-25T06:33:07Z 2009-11-25T06:33:07Z Craig, As I said I have added the report to VB6 project and did what you had said (3 lines above) but still I can not show it. Now I have 3 questions: 1 - Do I need to fill a recordset as the data source of the report at runtime? 2 - How I can send parameters to the stored procedure in order to show the report? 3- What about the message: &quot;The server has not yet been opened&quot; ? http://stackoverflow.com/questions/1789236/using-stored-procedure-in-crystal-report-8-5 Comment by odiseh on Using stored procedure in crystal report 8.5? odiseh 2009-11-24T11:02:50Z 2009-11-24T11:02:50Z how to bounty it? http://stackoverflow.com/questions/1783808/how-to-feeding-crystal-report-8-5-parameters-from-vb6-0-application/1785678#1785678 Comment by odiseh on How to feeding Crystal Report 8.5 parameters from VB6.0 Application? odiseh 2009-11-24T08:30:13Z 2009-11-24T08:30:13Z Heather, Thank you but I still have some problem while executing my report. let's explain it : I have made a new report using Crystal Reports 8.5 (report1) which uses a stored procedure for its data source. The stored procedure has 2 input parameters (@p1 and @p2) and when I enter some test data for @p1 and @p2, every thing is all right. Then, I added the report1 in visual basic 6.0 IDE and added a new form (form1) and a crystal report viewer control on form1. Now please help me: I wanna to show the report1. What codes exactly should I use ? http://stackoverflow.com/questions/1783808/how-to-feeding-crystal-report-8-5-parameters-from-vb6-0-application Comment by odiseh on How to feeding Crystal Report 8.5 parameters from VB6.0 Application? odiseh 2009-11-24T06:50:09Z 2009-11-24T06:50:09Z Thank you for your comment....Yes I load the report in a Crystal report viewer control inside a VB6.... http://stackoverflow.com/questions/1736894/how-to-use-a-stored-procedure-in-a-crystal-reports-8-5/1739405#1739405 Comment by odiseh on How To use a stored procedure in a crystal reports 8.5? odiseh 2009-11-18T06:29:46Z 2009-11-18T06:29:46Z Thank you , Excellent, but still there is another problem: when I make a new connection using &quot;OLEDB&quot;, I can see tables and stored procedures but can not add it to the report, I mean, Add button is disabled....what's wrong with it? http://stackoverflow.com/questions/1584321/how-to-get-schema-of-our-table-without-filling-its-datatable-before-calling-newro/1584356#1584356 Comment by odiseh on How to get schema of our table without filling its DataTable before calling NewRow method? odiseh 2009-10-18T08:27:00Z 2009-10-18T08:27:00Z Thank you very much http://stackoverflow.com/questions/1515806/why-cant-i-connect-to-team-foundation-server Comment by odiseh on Why can't I connect to Team Foundation Server ? odiseh 2009-10-18T08:06:28Z 2009-10-18T08:06:28Z Thank you for remembering it... http://stackoverflow.com/questions/1382761/why-my-computer-opens-crytal-reports-8-5-file-within-about-20-seconds/1540508#1540508 Comment by odiseh on Why my computer opens Crytal Reports 8.5 file within about 20 seconds? odiseh 2009-10-12T08:42:30Z 2009-10-12T08:42:30Z thank you. I'll try it. http://stackoverflow.com/questions/1520130/relationship-between-assembly-and-namespace-in-net-framework Comment by odiseh on Relationship between Assembly and Namespace in .NET framework? odiseh 2009-10-08T07:11:08Z 2009-10-08T07:11:08Z So, you say that: NO, IT'S NOT POSSIBLE TO HAVE A CLASS IN MORE THAN ONE ASSEMBLY. BUT IT'S POSSIBLE TO HAVE A CLASS IN MORE THAN ONE FILE WITHIN ONE ASSEMBLE. THANK YOU EVERY BODY http://stackoverflow.com/questions/1385311/how-to-fix-fonts-corrupt-when-i-export-a-crystal-report-8-5-to-pdf Comment by odiseh on How to fix: Fonts corrupt when I export a crystal report 8.5 to PDF? odiseh 2009-09-07T11:35:48Z 2009-09-07T11:35:48Z its Tahoma..... http://stackoverflow.com/questions/1382761/why-my-computer-opens-crytal-reports-8-5-file-within-about-20-seconds/1383177#1383177 Comment by odiseh on Why my computer opens Crytal Reports 8.5 file within about 20 seconds? odiseh 2009-09-06T06:14:33Z 2009-09-06T06:14:33Z Thank you for your attention, well as you have pointed out, I changed the default printer of my computer from a network printer (p1320) to a local and then try to open that file. Now It seems that there is no delay when opening it. The report file is a local file saved on my computer and before changing the printer, all report files opened within 20 seconds. Well How can I fix this delay when I publish my project? http://stackoverflow.com/questions/1372696/how-to-work-with-checkboxes-in-vsflexgrid-in-vb6-0/1373005#1373005 Comment by odiseh on How to Work with checkboxes in VsFlexGrid in vb6.0? odiseh 2009-09-05T04:40:49Z 2009-09-05T04:40:49Z First. Thank you. Second, i found that when I click on a column and mark its checkbox surprisingly, it's value is &quot;-1&quot; and when I unmark it, value becomes &quot;0&quot; Third, Why did you use DoEvents in your code? and why at that special line? http://stackoverflow.com/questions/1362403/why-creating-a-new-crystal-report-object-in-vb6-takes-a-long-time/1362539#1362539 Comment by odiseh on Why creating a new Crystal Report object in VB6 takes a long time? odiseh 2009-09-02T03:50:06Z 2009-09-02T03:50:06Z I did what you said and created a simple Crystal report with a file containing it's viewer. But as I had said before, when it goes to create a new report object, takes long time. http://stackoverflow.com/questions/1360632/object-serialization-and-deserialization Comment by odiseh on Object Serialization and Deserialization? odiseh 2009-09-01T06:08:46Z 2009-09-01T06:08:46Z Thanks alot for all your answers, I put other question here as a comment: Reading your answers, so when it should be helpful using serialization in a application that uses DB?