all groups > dotnet general > february 2004 > threads for saturday february 21
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
CSV file into dataset
Posted by EMW at 2/21/2004 11:11:08 PM
Hi,
I have a CSV file where the fields are inclosed in " and separated by ,
i.e.: "field1","field2","field3",..... etc.
Is it possible to fill a dataset in an easy way?
I can write my own methode to read it line by line, but then it would take
longer.
I know about the FAQ from www.sy... more >>
Long String
Posted by Kenny at 2/21/2004 7:51:05 PM
Hi
I'm sending a long string to a web service like this
field1,field2,field3,field4,field5,field6,field7+field1,field2,field3,field4,field5,field6,field7..
On the web service I need to read and to parse it in order to fill a DataSet and to update the DB,so do I have to use the String class' me... more >>
DateTime field on DataGrid
Posted by Marcos RodrÃguez at 2/21/2004 5:06:07 PM
Hi all
I have an Access Data Base containing a table which have a DateTime Field. I am creating a Windows App and I am using a DataGrid object to show data from the table using a DataSet object. My problem is that the column showing the DateTime field shows the data with the format dd/MM/yyyy but I... more >>
Set visibility on parent form from child.
Posted by POnfri at 2/21/2004 3:51:05 PM
Hi
I'm having trouble setting the main form visible from within the child form. I have set the main form to hide (SignatureMain.Hide())
I then load the child form from within a button on form1
Treatment.ShowDialog()
On the child form Treatment i try to do the following in an Exit button
th... more >>
.NET Deployment to large drives fails!
Posted by afh3 at 2/21/2004 1:45:49 PM
I have a client for whom I have developed several ASP.NET applications and
web services.
They recently upgraded their web servers to very large (>2TB) storage
capacities.
Now, the setup.exe packages created by my ASP.NET deployment projects will
no longer install -- as they report that ther... more >>
Naming Conventions
Posted by Ted at 2/21/2004 12:17:32 PM
I'm trying to come up with naming conventions for my
company as we move to C#. I'm looking through the Naming
Guidelines section on MSDN, but I'm unable to find a
recommendation for class scope variables.
Working with WinForms, I believe it would be helpful to
have some type of prefix.... more >>
Error when using XPBurn
Posted by Gene W at 2/21/2004 11:46:06 AM
Hi
I'm using the XPBurn component , available from MSDN, to manipulate IMAPI from C#. Certainly saved the effort of translating the interfaces into .NET. However I ran into a problem when adding multiple files from the same source directory.
Basically, I get an exception in XPBurnIStorage.Cre... more >>
Newbie: ListView problem
Posted by Sam Johnson at 2/21/2004 11:16:06 AM
Hi again
I've got the following problem: In my application I've got a listview control where the "View" property is set to "Details". The Listview is filled with several items, that include subitems. Now, when the user selects one row in the list (full row selection is activated), I want him to be... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Checking for format in VB.NET
Posted by mosquitooth at 2/21/2004 9:36:05 AM
H
how can I check if a string in VB.NET has got the format of an IP address (e.g. 1.2.3.4)
Thanks a lo
mosquitooth... more >>
Reset Windows Service Programatically
Posted by ciaran NO[at]SPAM insero-technologies.com at 2/21/2004 8:52:42 AM
Hi All,
I have created a Windows Service. In the event of an Exception
occuring I would like to notify Windows to restart the service
as shown below:
<snip>
protected override void OnStart(string[] args)
{
ThreadStart starter = new ThreadStart(this.StartListening);
Thread threadWo... more >>
HOWTO: Convert a string in scientific format to a decimal
Posted by Krish at 2/21/2004 8:48:53 AM
Hi,
How to convert "1283912839E-5" string (in scientific format) to a decimal.
Convert.ToDecimal("1283912839E-5") is throwing "Input string is not in
correct format" exception. Is the exponential format not supported during
conversion?
I think we need to use NumberFormatInfo, but dont kno... more >>
Client side script works in IDE but not in production envirornment
Posted by Larry at 2/21/2004 7:41:07 AM
I have pages with client side javascript which works fine in the IDE but when it is copied to the production environment the script isn't getting called
I'm using customvalidators to call the script which again, works as expected as long as its running in the IDE
Any suggestion on how to solve t... more >>
Assembly.LoadFrom when offline
Posted by Greg Bacchus at 2/21/2004 7:22:01 AM
Hi,
Does anyone know how to get an offline reference to an assembly that has
been downloaded using Assembly.LoadFrom.
E.g. Application downloads the assembly while it in online... next time it
is run it is offline and needs to still use that same assembly.
Assembly.LoadFrom throws an exceptio... more >>
Nested if
Posted by Ozzy at 2/21/2004 6:46:05 AM
Hi,
Just a quick question. If i am writing a nested IF statment what is the order of the execution.
i.e are the inner if statments evaluated first before the outer If statments?
If the inner IF statment evalutaes to false then am i right in saying the outer ones will no longer be evaluated... more >>
How can I clean this string ?
Posted by Surya at 2/21/2004 3:11:07 AM
I'm using Microsoft.Project.OLEDB.9.0 provider with a datareader to read data from a .mpp file (Microsoft Project plan) from ASP.NET
The problem is All the STRING values, the datareader returns, do not end properly.
I mean, suppose the value its suposed to return is "surya".. But instead it return... more >>
|