|
You've asked the exact question twice (at least) previously. What was wrong with the solutions on those posts?
Maybe you could elaborate on the questions slightly - including the code you have currently - this will help you get decent answers.
|
|
|
|
|
I'v 14 fields to display in a report by using crystal report 10,it's too many
and out of the boundary of the page what can i do?
Dad
|
|
|
|
|
Use a larger size paper?
Display it in 2 rows instead of 1?
Smaller font?
|
|
|
|
|
thank u
but how can I Use a larger size paper or
Displaying it in 2 rows instead of 1
Dad
|
|
|
|
|
In Designer->Printer Setup, choose a bigger size paper (instead of A4, choose A3).
Of cause you will need to have the right printer to print it out. If the purpose of the report is only for display and not for printing, it will serve the purpose.
To display in 2 rows, example
1 row:
Group------------------------------------------------------------------
Column1 Column2 Column3 Column4 Column5 Column6
Detail-----------------------------------------------------------------
AAAAAAA BBBBBBB CCCCCCC DDDDDDD EEEEEEE FFFFFFFFFFFFFFFFFFFFFFFFFF
2 rows
Group--------------------------------------
Column1 Column2 Column3 Column4 Column5
Column6
Detail-------------------------------------
AAAAAAA BBBBBBB CCCCCCC DDDDDDD EEEEEEE
FFFFFFFFFFFFFFFFFFFFFFFFFF
|
|
|
|
|
Folks ! Dev Con is back for you!
Microsoft User Group, Hyderabad (MUGH) presents the most awaited developer event for you, focusing all brand new and cutting edge technologies you always loved to work on. Come, join us to celebrate the exciting fun tech stuff, Quizzing, Hiring !.Yes...we owe you an event t-shirt and you will get it too !
Registration is Absolutely Free. Thanks to our Sponsorers.
Mark your calendars for 19th November, 2006
Venue : MPR Rooms, Microsoft Campus -2, Gachibowli,Hyderabad,India
For more detail please visit : http://mugh.net
Cheers
Anand
|
|
|
|
|
I want to know is there any way from which I can get the Geographical location of perticular machine from the IP address...???
If any one knows let me know....or any idea about that?
nishu
|
|
|
|
|
What exactly would you like to know? Country? City? Address?
You can get the country, and the city where the ISP is. But there is no way to get the address or geographical coordinates.
--------------------------------------------------------
My portfolio & development blog
Q:What does the derived class in C# tell to it's parent?
A:All your base are belong to us!
|
|
|
|
|
In fact there is... There are several tables of data around the internet containing (modified) IP data. They're able to convert a certain IP to a country (code). Only thing to remember is, the moment you use the list, it could be outdated. I used this technique to find out where a visitor of my website comes from and be able to 'select' a default language for them.
- - - --[ i love it when a plan comes together ]-- - - -
|
|
|
|
|
I said the exact same thing. So what is the point of your post?
--------------------------------------------------------
My portfolio & development blog
Q:What does the derived class in C# tell to it's parent?
A:All your base are belong to us!
|
|
|
|
|
Ok but tell me guys how can get country name in C# from IP address
|
|
|
|
|
I've used GeoIP in the past, it's pretty accurate.
regards
modified 12-Sep-18 21:01pm.
|
|
|
|
|
I didn't understand you were in fact telling the same, I only shared my experience...
- - - --[ i love it when a plan comes together ]-- - - -
|
|
|
|
|
hi,
can u tell me how exactly i can find the country and city of a certain IP address.
thanks
jamil abou khalil
|
|
|
|
|
|
OK thanx for your help.....I will try that and let you know....
nishu
|
|
|
|
|
Hi all,
i have written a query in SQL which returns multiple rows.
i used a SqlDataReader to capture the result.
what i want is to retrieve data from this DataReader and store it in a string array.
this is how iam proceeding..
string[] arr = new string[10];
int index=0;
while(reader.Read())
{
object[] values = new object[reader.FieldCount];
reader.GetValues(value);
vlaues.CopyTo(arr,index);
index++;
}
this is not working and i know tat CopyTo cannot be used in this context, but i just dont have any idea what to use. I need to use this string array in an if-else condition where i need to compare each string in that array with a specified string and return a boolean value.
i would be grateful to anybody who can help me in this regard. i have been working on this for almost 2 days without a breakthrough.
Sonu
|
|
|
|
|
Okay - I can see that your code is not working. I think it is because you don't really understand what the GetValues() method is returning.
So, I need the answer to the following questions:
* What is SQL Server returning? How many rows? How many columns?
* What do you want your output to be?
|
|
|
|
|
hi, I Would like to know if i have a windows application, i can do a setup for it.
La Light
|
|
|
|
|
Add a new project to your solution, a setup project and add tje primary output of your app project to the setup project, your first default setup is ready to compile
- - - --[ i love it when a plan comes together ]-- - - -
|
|
|
|
|
Can you you be more especific Because i dont get well
La Light
|
|
|
|
|
Hello!
I have a panel with 2 buttons and it has to be possible for user, resize the buttons.
Do you have some tipps for me?
|
|
|
|
|
hi,
just set the resizable property of the button as true
jamil abou khalil
|
|
|
|
|
Thank you for your answer, but "resizable property of the button" doesn't exists..;)
|
|
|
|
|
Now I have a "dirty-solution" for this problem, do you know a better (simpler) way?
<br />
private void KeyerForm_MouseMove(object sender, MouseEventArgs e)<br />
{<br />
SetCursor(e);<br />
if (this.bMDown)<br />
{<br />
int delta_x = e.X - this.StartX;<br />
int delta_y = e.Y - this.StartY;<br />
<br />
if ((this.Left + delta_x) < 0 || (this.Top + delta_y) < 0 || (this.Left + delta_x) > (this.Parent.Width - this.Width) || (this.Top + delta_y) > (this.Parent.Height - this.Height))<br />
{<br />
return;<br />
}<br />
<br />
if ((e.X < WidthOfRand || ((this.Size.Width - e.X) < WidthOfRand)) && (e.X != this.StartX))<br />
{<br />
if (e.X < WidthOfRand)<br />
{<br />
this.Width += delta_x * (-1);<br />
this.Left += delta_x;<br />
this.Refresh();<br />
this.Parent.Refresh();<br />
return;<br />
}<br />
if ((this.Size.Width - e.X) < WidthOfRand)<br />
{<br />
this.Width += delta_x;
this.catchMouse(new Point(Cursor.Position.X + delta_x, Cursor.Position.Y));<br />
this.PointToClient(Control.MousePosition);<br />
Cursor.Position = new Point(Cursor.Position.X + delta_x, Cursor.Position.Y);<br />
this.Refresh();<br />
this.Parent.Refresh();<br />
return;<br />
}<br />
return;<br />
}<br />
<br />
<br />
if ((e.Y < WidthOfRand || ((this.Size.Width - e.Y) < WidthOfRand)) && (e.Y != this.StartY))<br />
{<br />
if (e.Y < WidthOfRand)<br />
{<br />
this.Height += delta_y * (-1);<br />
this.Top += delta_y;<br />
this.Refresh();<br />
this.Parent.Refresh();<br />
}<br />
return;<br />
} <br />
if (((e.X != this.StartX) || (e.Y != this.StartY)) && (this.Cursor == Cursors.Hand))<br />
{<br />
this.Left += e.X - this.StartX;<br />
this.Top += e.Y - this.StartY;<br />
this.Refresh();<br />
this.Parent.Refresh();<br />
}<br />
}<br />
}<br />
<br />
void KeyerForm_MouseUp(object sender, MouseEventArgs e)<br />
{<br />
this.bMDown = false;<br />
}<br />
<br />
void KeyerForm_MouseDown(object sender, MouseEventArgs e)<br />
{<br />
this.StartX = e.X;<br />
this.StartY = e.Y;<br />
this.bMDown = true;<br />
}<br />
<br />
private void SetCursor(MouseEventArgs e)<br />
{<br />
if (e.Y < WidthOfRand || ((this.Size.Height - e.Y) < WidthOfRand))<br />
this.Cursor = Cursors.HSplit;<br />
else<br />
if (e.X < WidthOfRand || ((this.Size.Width - e.X) < WidthOfRand))<br />
this.Cursor = Cursors.VSplit;<br />
else<br />
this.Cursor = Cursors.Hand;<br />
}<br />
<br />
|
|
|
|