Click here to Skip to main content
15,902,635 members
Home / Discussions / Database
   

Database

 
GeneralRe: Connecting to remote SQL Express Pin
Joe Smith IX1-Feb-07 5:51
Joe Smith IX1-Feb-07 5:51 
AnswerRe: Connecting to remote SQL Express Pin
S Douglas28-Jan-07 20:32
professionalS Douglas28-Jan-07 20:32 
AnswerRe: Connecting to remote SQL Express Pin
steve_rm29-Jan-07 4:03
steve_rm29-Jan-07 4:03 
GeneralRe: Connecting to remote SQL Express Pin
S Douglas29-Jan-07 4:26
professionalS Douglas29-Jan-07 4:26 
AnswerRe: Connecting to remote SQL Express Pin
steve_rm29-Jan-07 6:05
steve_rm29-Jan-07 6:05 
QuestionHow do I change the date format? Pin
davidstern10028-Jan-07 5:01
davidstern10028-Jan-07 5:01 
AnswerRe: How do I change the date format? Pin
Colin Angus Mackay28-Jan-07 5:37
Colin Angus Mackay28-Jan-07 5:37 
QuestionHow do i compare Datetime Pin
www.Developerof.NET28-Jan-07 0:33
www.Developerof.NET28-Jan-07 0:33 
AnswerRe: How do i compare Datetime Pin
Bassam Saoud28-Jan-07 2:04
Bassam Saoud28-Jan-07 2:04 
GeneralRe: How do i compare Datetime Pin
www.Developerof.NET28-Jan-07 6:56
www.Developerof.NET28-Jan-07 6:56 
QuestionConnectivity issue - SQLServer not listening on port 1433/ms-sql-s Pin
viji]27-Jan-07 22:23
viji]27-Jan-07 22:23 
Questioncannot connect to server Pin
rp_suman27-Jan-07 20:51
rp_suman27-Jan-07 20:51 
AnswerRe: cannot connect to server [modified] Pin
Aaron VanWieren28-Jan-07 9:23
Aaron VanWieren28-Jan-07 9:23 
GeneralRe: cannot connect to server Pin
rp_suman2-Feb-07 4:16
rp_suman2-Feb-07 4:16 
QuestionCrystal Report vb.net 2005 !!! Pin
kindman_nb27-Jan-07 19:08
kindman_nb27-Jan-07 19:08 
AnswerRe: Crystal Report vb.net 2005 !!! Pin
Bassam Saoud27-Jan-07 21:59
Bassam Saoud27-Jan-07 21:59 
GeneralRe: Crystal Report vb.net 2005 !!! Pin
kindman_nb27-Jan-07 22:05
kindman_nb27-Jan-07 22:05 
GeneralRe: Crystal Report vb.net 2005 !!! Pin
kindman_nb28-Jan-07 5:10
kindman_nb28-Jan-07 5:10 
GeneralRe: Crystal Report vb.net 2005 !!! Pin
Bassam Saoud28-Jan-07 7:40
Bassam Saoud28-Jan-07 7:40 
GeneralRe: Crystal Report vb.net 2005 !!! Pin
kindman_nb28-Jan-07 22:06
kindman_nb28-Jan-07 22:06 
GeneralRe: Crystal Report vb.net 2005 !!! Pin
kindman_nb29-Jan-07 3:08
kindman_nb29-Jan-07 3:08 
AnswerRe: Crystal Report vb.net 2005 !!! Pin
Jati Indrayanto31-Jan-07 15:20
Jati Indrayanto31-Jan-07 15:20 
I used C# in VS 2k5. I think it should same with VB.Net.


fmRepGeneral viewerAdv = new fmRepGeneral(); // Form that contain CrystalReportViewer
crSPKAdv reportAdv = new crSPKAdv(); // Crystal Report file
reportAdv.SetDatabaseLogon("user", "pwd"); // Set the username/password

/*Important. This below line is giving the source of crystal report file.
dsResult = The dataset that will be used.

As I know you when you create crystal report file you should have the physical DataSet (.xsd),
then you get drag-drop the field you wanted in your CR with that physical DS, and the table's
name must same with 'dataset.Tables["must same"]'. In this case, I should have dataset that
contains Table 'V_RPT_SPK_ADV', otherwise the crystal report will never get the data.

*/

reportAdv.SetDataSource(dsResult.Tables["V_RPT_SPK_ADV"].DefaultView);

viewerAdv.crystalReportViewer1.ReportSource = reportAdv; //sure..u understand this line. Smile | :)


Hope this help.
Jati Indrayanto



Everything is possible.
Questionadvanced subquery Pin
Bit_flipper27-Jan-07 8:42
Bit_flipper27-Jan-07 8:42 
AnswerRe: advanced subquery Pin
Colin Angus Mackay27-Jan-07 10:21
Colin Angus Mackay27-Jan-07 10:21 
QuestionASP and MS Access Pin
kkhelil27-Jan-07 2:18
kkhelil27-Jan-07 2:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.