Search the web
Sign In
New User? Sign Up
CSharpNET · C# .NET (C-Sharp) Developers' Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 10183 - 10212 of 19702   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
10183
Hi Guys, Anyone know of a funky function or sample code that get's the next letter of the alphabet? I know you could obviously do it with a very big switch ...
Ian Moores
i_moores
Offline Send Email
Mar 1, 2005
9:12 am
10184
public char GetNextAlphabet(char chrAlph) { int mintAscii=Convert.ToInt32(chrAlph); return Convert.ToChar(mintAscii+1); } Ian Moores <i_moores@...>...
Ashish Gupta
ashish_cal5
Offline Send Email
Mar 1, 2005
9:27 am
10185
We wud like to restrict the character having ascii value 65-90 (A-Z) and 97-122(a-z). Thanx and Regards Ashish Ian Moores <i_moores@...> wrote: Hi...
Ashish Gupta
ashish_cal5
Offline Send Email
Mar 1, 2005
9:32 am
10186
Very nice! Thank you! Even seems to work with Chinese !!...
Ian Moores
i_moores
Offline Send Email
Mar 1, 2005
9:35 am
10187
Very nice! Thank you! Even seems to work with Chinese !!...
Ian Moores
i_moores
Offline Send Email
Mar 1, 2005
9:35 am
10188
Hi all, We have the following requirement for our software installation procedure: 1. We need something that allows the user to choose a folder where we can...
dagda1970
Offline Send Email
Mar 1, 2005
11:31 am
10189
Hi all, I have been looking int online and books tutorials on using the drop down box in a data grid, but i am not quiet sure about the sinario i have here...
johnsmith2797480@...
samsoftwareltd
Offline Send Email
Mar 1, 2005
11:41 am
10190
John, Use the grid's ItemDataBound to bind the dropdown when it is created below is something similiar I have done recently: private void...
Paul Cowan
dagda1970
Offline Send Email
Mar 1, 2005
12:05 pm
10191
Hello, i want to insert a table in my rich text editor. for example as we can draw table in Microsoft word just by clicking on the icon of tables on the...
darravian
Offline Send Email
Mar 1, 2005
12:13 pm
10192
Hi All I want to validate a ttextbox with a regularexpression validator The text bos shud take only numbers both with and without decimal points How shud i...
Aparimeeth
aravinda.b@...
Send Email
Mar 1, 2005
12:13 pm
10193
test please ignore...
Newtz, Brian
virgotat
Offline Send Email
Mar 1, 2005
12:44 pm
10194
I don't think that is a good localized solution. It may work for english and chinese, but it doesn't work for german, swedish etc. / Peter ... From: Ian Moores...
Peter Bergström
petbe605
Offline Send Email
Mar 1, 2005
12:50 pm
10195
I'm no expert on this but [\d\.*] should work...... i think !! Ian...
Ian Moores
i_moores
Offline Send Email
Mar 1, 2005
1:13 pm
10196
Hi ^([\d]+)?(\.?([\d]+)?)?$ accepts: 5, 5.3, .3, 5., . or ^([\d]+)?(\.?([\d]+))?$ accepts: 5, 5.3, .3, 5 ... -- DIEGO ALVAREZ ZULUAGA Ingeniero de Desarrollo ...
Diego Alvarez Z.
diegoazuam
Offline Send Email
Mar 1, 2005
2:26 pm
10197
... ++charVariable...
Chris Conboy
sircyobnoc
Offline Send Email
Mar 1, 2005
2:26 pm
10198
If I have an XML document like the following, is it possible to replace a node name? i.e. I want PARTYCODE to now be called SUPPLIERPARTYCODE, but the ...
O'Neill, Ciaran
Ciaran.O'Neill@...
Send Email
Mar 1, 2005
3:52 pm
10199
Can you not just replace the string before reading it into the xmlDocument. Or you could use XSLT. ... replace a ... SUPPLIERPARTYCODE, but the ... XML ... ...
dagda1970
Offline Send Email
Mar 1, 2005
4:25 pm
10200
Either use XSL to transform into new XML with new name or write a simple app. The app would iterate the existing nodes looking for the original name, then...
kevin.aubuchon@...
ka3751
Offline Send Email
Mar 1, 2005
4:30 pm
10201
... xmlDocument. If the document exists as a string this could work. But it would be more work than treating it as an XML document. The responsibility is on...
kevin.aubuchon@...
ka3751
Offline Send Email
Mar 1, 2005
4:32 pm
10202
Hi all, I know this is'nt a C# question but I have the following requirement and I'm not sure how to fill this. We have a flash standalone application which we...
dagda1970
Offline Send Email
Mar 2, 2005
9:21 am
10203
Hi, I'm resurrecting this question as i didn't get a suitable response when i first posted it Basically, in my Business Object i am retrieving a datatable and ...
racer_rudi_2003
Offline Send Email
Mar 2, 2005
9:25 am
10204
Hi, Paging is causing crash in ASP.NET application, but is it due to the fact that the data grid is bound to a dataset that has 5000 records ? What other...
johnsmith2797480@...
samsoftwareltd
Offline Send Email
Mar 2, 2005
10:34 am
10205
In a message dated 02/03/2005 09:24:27 GMT Standard Time, dagda1@... writes: could use a visual studio setup project, but would'nt that require .NET...
johnsmith2797480@...
samsoftwareltd
Offline Send Email
Mar 2, 2005
10:37 am
10206
Number of records in the the dataset is insignicant, i'm guessing that unless you have written code which will only work under 5000 records it is not this that...
Ian Moores
i_moores
Offline Send Email
Mar 2, 2005
10:59 am
10207
Ian, I would do this on the sql server side. You can easily add "phantom" columns in your sql. SELECT Convert( DateTime, '1/1/1753') as DateField, ...
Michael Beall
mikebeall
Offline Send Email
Mar 2, 2005
11:58 am
10208
Hey Thanks Ian I used this [0-9]*.[0-9]* and it worked ... -- With Regards Aravinda...
Aparimeeth
aravinda.b@...
Send Email
Mar 2, 2005
12:02 pm
10209
In a message dated 02/03/2005 10:38:21 GMT Standard Time, johnsmith2797480@... writes: You only need .NET to be installed in the development machine where...
johnsmith2797480@...
samsoftwareltd
Offline Send Email
Mar 2, 2005
12:06 pm
10210
Basically, I am creating the column in code, and the two columns i am combining are also needed in their orginal state. I am creating a column "DisplayText"...
Ian Moores
i_moores
Offline Send Email
Mar 2, 2005
12:17 pm
10211
In a message dated 02/03/2005 12:18:09 GMT Standard Time, i_moores@... writes: Ian Ian, just in case you still need more solutions/options...I thought...
johnsmith2797480@...
samsoftwareltd
Offline Send Email
Mar 2, 2005
12:27 pm
10212
You didn't give us much to go on but there is a bug in the datagrid that will throw an exception if the grid was on a page greater than the number of rows /...
Michael Beall
mikebeall
Offline Send Email
Mar 2, 2005
12:41 pm
Messages 10183 - 10212 of 19702   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help