all groups > c# > april 2007 > threads for saturday april 28
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Do While loop syntax
Posted by Rene at 4/28/2007 7:52:58 PM
Quick question, what is the point for forcing the semicolon at the end of
the while statement? See example below:
x = 0;
do
{
x = x + 1;
}while (x < 3);
What's the point of having the semicolon after the (x < 3)? Why can't the
compiler figure out that's the end of the while statement... more >>
problem with multiline regular expression
Posted by Grzegorz Danowski at 4/28/2007 7:25:31 PM
Hi,
I'd like to read all lines of caption text from a string:
....
Name ="Paragraph"
Caption ="The quick brown fox jumps over the lazy dog.
The quick brown fox jumps over the lazy dog. "
"The quick brown fox jumps over the lazy... more >>
destrucor & GC ?
Posted by Sagaert Johan at 4/28/2007 6:54:19 PM
Hi
If my destructor of my class (derived from usercontrol ) never gets called ,
does this mean that its not collected by the GC and hence
allocated memory is not freed ?
Is there a way to find out whats prevents the GC to collect this object ?
Johan
... more >>
csproj command line build .NET1.1
Posted by AdrianDev at 4/28/2007 6:42:02 PM
Hi,
Is there a tool available for building .NET 1.1 VS 2003 projects from =
CSPROJ files?
It appears that MSBuild.exe only works with NET 2.0
thanks,... more >>
SEO - Search Engine Optimization - Seo Consulting
Posted by Leisure.207 NO[at]SPAM gmail.com at 4/28/2007 5:42:23 PM
Free Seo Consulting http://seo-optimizer.blogspot.com/
... more >>
Access 2007 file not accessible
Posted by SteveT at 4/28/2007 4:24:01 PM
I am trying to write an application using VS 2005 that accesses an Access
database. Unfortunately, VS 2005 doesn't seem to understand the new Access
2007 file extention. Can VS 2005 use the new Access 2007 file format?
--
-----------
Thanks,
Steve... more >>
Miscellaneous Newbie questions
Posted by Dom at 4/28/2007 3:50:46 PM
No sense in putting each one in a different post.
1. What is the difference between String and string (upper- and lower-
case)?
2. Which is preferable, IntVariable.ToString() or
Convert.ToString(IntVariable)?
3. Since String is a class, why is there no String.ToClass, but there
is a StrVa... more >>
sliding panel
Posted by piter at 4/28/2007 3:26:42 PM
Hi
I saw C# application that had sliding panel.. I want my panel to slide in up
direction.
Is there an efficient way to do this?
I thought that i can use Timer and change height , but iam not sure if this
would be an efficient and common way.
Thanks
PK
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
lineMonitorDigits
Posted by Smith at 4/28/2007 2:28:30 PM
Hi
There is a function named "lineMonitorDigits" in TAPI for listen touchtones
from the other side of the phone. How to set this command with AT Command?
Thanks
... more >>
How can you get the current class name without using StackTrace?
Posted by Zytan at 4/28/2007 12:29:08 PM
Since the call stack can be changed in release, as functions are
inlined, how can you be certain to get the current class name of any
method that cares to know? Even IF it is an inlined method?
Seems impossible to do.
Zytan
... more >>
c# can you force a function to NOT be inlined?
Posted by Zytan at 4/28/2007 12:21:21 PM
Can I force a function to NEVER be inlined?
I want the call stack returned by:
System.Diagnostics.StackTrace callStack = new
System.Diagnostics.StackTrace();
to be such that:
System.Diagnostics.StackFrame frame = callStack.GetFrame(0);
is the function itself, NOT the function's caller (due t... more >>
Assembly version vs. File version
Posted by Zytan at 4/28/2007 11:20:50 AM
In the Assembly Information, you can set the assembly version and the
file version. What is the difference between the two? The
documentation is not exactly helpful in this area.
I had the assembly version set to a unique number, and just left the
file version as 0.0.0.0. My program crashed... more >>
Date fields not upating, no error messages available
Posted by Alex at 4/28/2007 9:16:22 AM
I am using a web service to update some database fields. I used the
dataset designer to define my datatable and tableadapter. I had it
automatically create the insert, update, and delete statements.
When I run the update method, all of the fields are updated except for
four datetime fields. An... more >>
Form Afterimage
Posted by gregarican at 4/28/2007 4:30:41 AM
I am using VS2005 for creating a pretty basic application. When I open
another form from my main form using a button event I just do
something like:
NewForm newForm = new NewForm();
newForm.Show();
Then when I'm done with the new form I use another button event like:
this.Close();
The... more >>
Problem with file accessing
Posted by sushma at 4/28/2007 3:34:11 AM
Hi all. My Problem is i have an application that launches an external process on a button click. The other process has a feature of accessing a file during its load and also in its formclosing method.
Now the problem is once i launch and close the application and immediately relaunch the applicat... more >>
How to uniquely identify a process?
Posted by nano2k at 4/28/2007 3:10:07 AM
Hi
I have an application (let's call it Main.exe) and a helper process
(call it Update.exe) that periodically updates Main app.
Update.exe needs to reside in memory, but I need to make sure that
EXACTLY ONE process is running.
Anyway, other "Update.exe" processes may run simultaneously at one
... more >>
Failed to access IIS Meta database
Posted by Adarsh at 4/28/2007 3:08:01 AM
Hi Everybody,
I created a webservice called “ser1†in the local host(http://Localhost/â€).
When I try to add the web reference to this web
service(http://localhost/ser1/service.asmx), I am getting the error message
“Failed to access IIS Meta databaseâ€. But the same web service crea... more >>
Output differences between 2 strings
Posted by Tony at 4/28/2007 12:00:00 AM
I'm looking to load an ascii file's contents into a string, and
compare it against a string pulled down from a database table.
And if the database table string does not match the string in the
variable loaded from the file, dump to a long what's missing from the
table's string or what's extra i... more >>
MS Word fields
Posted by TheMaxx at 4/28/2007 12:00:00 AM
How to detect, read/write Word fields using .net?
Is it possible, can you please suggest a link for reading.
Thanx
... more >>
|