Ramy Mahrous 401 Postaholic Featured Poster
Ramy Mahrous 401 Postaholic Featured Poster

Try to ask in Microsoft SQL Server forum there's may be a hotfix or trick..

Ramy Mahrous 401 Postaholic Featured Poster

What I need is to Display the data before showing(Show or ShowDialog) it...

Ramy Mahrous 401 Postaholic Featured Poster

We don't answer exams!!
But what I can do is to guide you to look at System.String and System.Text namespace...

Ramy Mahrous 401 Postaholic Featured Poster

OK, I don't need you to develop something with Integration service, red X because you're missing something (don't care about that right now) you didn't tell me. Does Service Agent work?
Second take a screen shot to the error, and attach it here.

Ramy Mahrous 401 Postaholic Featured Poster

Please explain more

Ramy Mahrous 401 Postaholic Featured Poster

Please mark both threads as solved, if it's :)

Ramy Mahrous 401 Postaholic Featured Poster

Thread subject has meaning and the content has another, I just answered what I thought they need..

Ramy Mahrous 401 Postaholic Featured Poster

It works my friend, I just put the answer here too because it's also related to VB.NET

Dim r As SqlClient.SqlDataReader
r = SQLComm.ExecuteReader()
dgCustomers.DataSource = r
Ramy Mahrous 401 Postaholic Featured Poster

It works fine

Dim r As SqlClient.SqlDataReader
r = SQLComm.ExecuteReader()
dgCustomers.DataSource = r
Ramy Mahrous 401 Postaholic Featured Poster

I'm sure you using SQL Server 2000
So, the error is you didn't give some permission to ASP.NET user who trying access SQL instance, therefore it blocked.
From server security in SQL Server Enterprise Manager, logins right click and add ASPNET user with windows authentication type.
Try running the application again then tell me what happened.

Ramy Mahrous 401 Postaholic Featured Poster

Ctr + F5 :)

Ramy Mahrous 401 Postaholic Featured Poster

If you traced the SQL Command sent, you'll find it doesn't surround the state within single quotes '
What you need is to modify it Dim SQLComm = New SqlCommand("SELECT * FROM ViewCustomers('" & vRegion & "')", conn)

Ramy Mahrous 401 Postaholic Featured Poster

If you traced the SQL Command sent, you'll find it doesn't surround the state within single quotes '
What you need is to modify it Dim SQLComm = New SqlCommand("SELECT * FROM ViewCustomers('" & vRegion & "')", conn)

bajanpoet commented: Was a great help... two pairs of eyes are better than one for seeing minute differences in code! +3
Ramy Mahrous 401 Postaholic Featured Poster

In Microsoft Access you can't!

Ramy Mahrous 401 Postaholic Featured Poster

Integration services from Start->Microsoft SQL Server 2005->SQL Server Business Intelligence Development Studio try to create new Integration services project
To check Agent Service you'll find it in SQL Server Management Studio SQL Server Agent

Ramy Mahrous 401 Postaholic Featured Poster

From Form properties make Key preview property true, in case your answer to Lizr question is YES.

Ramy Mahrous 401 Postaholic Featured Poster

Catalog=Database your database called database?? Give us the error, to help you :)

Ramy Mahrous 401 Postaholic Featured Poster

For business applications (Database as backend) C# is better
For learning and teaching students what the programming is; C++ is better.

Ramy Mahrous 401 Postaholic Featured Poster

C# 3, .net 3.5

Ramy Mahrous 401 Postaholic Featured Poster

Integration services work fine? and check if Agent service running or not.

Ramy Mahrous 401 Postaholic Featured Poster

OOH, I thought it's like 2005, I suggest to search in SQL forums, I'm downloading it right now and I'll see...

Ramy Mahrous 401 Postaholic Featured Poster

Did you try?

myRtnValue = myUserControl.DisplayData()
Me.Show()
'Me.Hide()
 ....
Ramy Mahrous 401 Postaholic Featured Poster

Please, write the answer here to help others who face the same problem to find its solution.
Then mark it as solved.

Ramy Mahrous 401 Postaholic Featured Poster

Did you automate it?

Ramy Mahrous 401 Postaholic Featured Poster

Bob just spend 3 minutes discovering you'll learn more and more yourself, it's not that hard, if you didn't get what you need, drop a reply here.

Ramy Mahrous 401 Postaholic Featured Poster

I need some tips from you as skilled DBA or at least better than me at this field, what's your notices??

Ramy Mahrous 401 Postaholic Featured Poster

For example you need to enter "string" and it tells you the developer used this class or not.

Ramy Mahrous 401 Postaholic Featured Poster

separate Exhibition and Art tables, I think the relation should be many-to-many so you need to use bridge table

Ramy Mahrous 401 Postaholic Featured Poster

I want to know how to be :)

Ramy Mahrous 401 Postaholic Featured Poster

Search in Google "DataGrid + VB.NET"

Ramy Mahrous 401 Postaholic Featured Poster

Yes, I don't know how to answer your question, System.Net classes and nice windows application all you need to do it.

Ramy Mahrous 401 Postaholic Featured Poster

I am very thankful to your words, really you prove for me, there still long way I should cut to become really skilled DBA\BI\Software Engineer.
Your words is more valuable than any reply I got in my entire life really I don't overdo, it really is.
And it doesn't mean I've 1000+ posts and you've 50+; I am better than you. Absolutely NOT
I'll open a thread asking how to be skilled DBA, and I am deeply in need for your help.

Thanks, pclfw

Ramy Mahrous 401 Postaholic Featured Poster

Thanks for sharing :)

Ramy Mahrous 401 Postaholic Featured Poster

So, what do you think about my design?

Ramy Mahrous 401 Postaholic Featured Poster

Thanks for sharing

Ramy Mahrous 401 Postaholic Featured Poster

LOL, I got it, I don't know, they may understand my question wrong :D

Ramy Mahrous 401 Postaholic Featured Poster

That's simply because you don't write anything to the stream!!

Here you're

ab = RichTextBox1.Text.Replace("\n", "\r\n") ' to keep new lines in text file like richbox
Dim stringAsBytes() As Byte
stringAsBytes = New System.Text.ASCIIEncoding().GetBytes(ab)
myStream.Write(stringAsBytes, 0, stringAsBytes.Length)
myStream.Close()
Ramy Mahrous 401 Postaholic Featured Poster

You can work with MySQL as backend from .net application using their libraries on http://mysql.org

Ramy Mahrous 401 Postaholic Featured Poster

Very great question, DotNetNuke is an open source web application framework ideal for creating, deploying and managing interactive web, intranet, and extranet sites securely.
More on http://www.dotnetnuke.com/

Ramy Mahrous 401 Postaholic Featured Poster

Need concepts, designs, practices, Videos, communities and news about C# and XNA http://MSDN.com your way, I don't read single book in C#, I depend on classes documentations and MSDN.

Ramy Mahrous 401 Postaholic Featured Poster

You didn't normalize you DB design, you need to have table for Crane, Manager, Country, Region and Site.

Ramy Mahrous 401 Postaholic Featured Poster

I think your ERD fulfills your requirements but it's not clear, if you work with team to develop this application try to brainstorm the design of ERD

Ramy Mahrous 401 Postaholic Featured Poster

Did you install any version of reporting service before 2008? and this error comes when you configure reporting service or when you access it use internet browser?

Ramy Mahrous 401 Postaholic Featured Poster

What do you need to do kashyapanirudh??

Ramy Mahrous 401 Postaholic Featured Poster

To run as administrator

Ramy Mahrous 401 Postaholic Featured Poster

So, tell me the problem you face and when it raises!

Ramy Mahrous 401 Postaholic Featured Poster

Microsoft SQL Server 2008->Configuration Tools->Reporting Services Configuration

Ramy Mahrous 401 Postaholic Featured Poster

That's what I want to hear from you :) mark this thread as solved and write and hint it's impossible :)

Ramy Mahrous 401 Postaholic Featured Poster

These questions to me?