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?
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?
http://support.crystaldecisions.com/library/kbase/articles/c2011099.asp
Figured it out...
But what is the full path for ReportDocument? Like CrystalReports.ReportDocument.
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?
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
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?
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...
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 :-/