Jump to content
Xtreme .Net Talk

Enigma151

Members
  • Posts

    12
  • Joined

  • Last visited

Everything posted by Enigma151

  1. I want to make a web-based application that interacts with a MySQL database system. What are the benefits from PHP? What are the benefits from ASP? Do you need any runtime files for ASP?
  2. I am able to connect to an Oracle Database only if I install oraHome92 to go into Net Manager and setup a service. I would like to be able to do this without installing oraHome92. Is this needed? Me.OracleConn.ConnectionString = "Provider=MSDAORA.1;Password=X;User ID=X;Data Source=X" I tried to make the Data Source the IP address but it wants the service name that was established in Net Manager. Any Ideas?
  3. I still can't get it to work right. The print preview looks like it is landscape but when I goto Printer Properties, it still says portrait!
  4. Nevermind, answered that one too: CrystalDecisions.CrystalReports.Engine Namespace!
  5. http://support.crystaldecisions.com/library/kbase/articles/c2011099.asp Figured it out... But what is the full path for ReportDocument? Like CrystalReports.ReportDocument.
  6. I have a Crystal Reports report and I would like for it to be defaulted to landscape. I opened up the report, right-clicked on the report, then designer->page setup, and changed the settings with no result. Any ideas?
  7. I am populating a Dataset by means of SQL. After this, I parse the dataset to make the fields more ledgible (like change unix times (GMT) to EST). Is it more efficient to iterate column by column or row by row for means to of parsing the items (fields). Right now I am parsing column by column. Any ideas? I am not real familiar with how efficient this build-in function is. Ex: Dim DR As DataRow For Each DR In DS_Study.Tables(0).Rows() DR.Item(ColumnNumber) = ....Parsed Data.... Next
  8. Looking at the MS SQL Server, I can not find the Collation. After opening up the table in design mode, its not one of the properties for the columns. Is there a way I can be case-sensitive on a select statment without iterating through the Dataset after the fact and deleting the unwanted information? Any ideas?
  9. I am connecting to a MS SQL Database.
  10. This won't work! "WHERE StrComp(STATUS, '" + CB_study_status.Text + "',0) = 0" I keep getting a error when I try to fill my dataset.
  11. I am trying to set up comboboxes in a datagrid: http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q323167 I tried the "Goto Definition" but nothing happened...
  12. When I try to add the following line, I get an error saying Ctrls_TextChanged is undefined. Any ideas? AddHandler MyCombo.TextChanged, AddressOf Ctrls_TextChanged What is the exact address of this procedure/constant? Like system.windows.forms.datagrid.ctrls_textchanged or is there one? My VB likes to be specific :-/
×
×
  • Create New...