- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Had a carreer as a sportsinstructor but came to the conclusion that it isn't a job for a lifetime. So I desided it was time for a carreer switch and I have chosen an other passion of mine, programming. I started to study computer science about 3 years…
- Interests
- photographing sports my beautifull daughter
- PC Specs
- Lenovo SL500 laptop
13 Posted Topics
Re: I'm not getting it. You want to build a connectionstring for a sql db on the client host. in this case just use 'localhost' as data source. | |
hi, I have developed a form application that contains a lot of user specified settings that need to be saved. Currently the app is using serialisation/deserialisation to manage and save these properties/settings. Are there any other/better methods/techniques to manage user settings without using a database? | |
Re: good beginner tutorials can be found at: [url]www.cplusplus.com[/url] | |
Re: use the filter property, something like: [QUOTE] OpenFileDialog dlg = new OpenFileDialog(); dlg.Filter = "Word (*.doc) |*.doc;*.rtf|(*.txt) |*.txt|(*.*) |*.*" [/QUOTE] oh, and please use correct grammar | |
I have a textbox and two events. The first event selects all text in the textbox if there is any. The second event deselects the text. My to events... [CODE] private void Textbox_enter( object s, EventArgs e ) { TextBox box = s as TextBox; box.SelectionStart = 0; box.SelectionLength = … | |
Im am using serialization and deserialisation to read and store settings in a xml file. I have het created a generic class because I want to store different kind of settings in different kind of xml files. Is it possible to instantiate the type of the generic class within that … | |
Hi, I want to load an image from the code-behind. I have the path of this image ("C:\somedironwebserver\somefileonwebserver.jpg") and i need to get the url ([url]http://www.mysite/somefileonwebserver.jpg)[/url]. Currently I am combining strings to get get this URL but i think there must be a better way. google didn't realy helped me. … | |
Hey, I'm creating a web application with the use of a ObjectDataSource. When I try to run the webapp i get the following error: [CODE] The type specified in the TypeName property of ObjectDataSource 'ObjectDataSource1' could not be found. [InvalidOperationException: The type specified in the TypeName property of ObjectDataSource 'ObjectDataSource1' … | |
hello all, I'm getting some unexpected behavior from the ifstream object when using the open method. im reading the following characters from a text file: [CODE] ############### # #X# # # ### # # ### # # # # # # # ## ## # # # WWWW###WWWW # # … | |
Re: I would define a constant char for the '?' comparer. If you want to change the compare criteria, you only have to change it once. | |
Re: something like this? I'm sure it could be done ncer. Untested, so i hope it works. [CODE] #include < fstream > #include < iostream > using namespace std; int main() { ifstream file( "digits.txt" ); char ch; int i = 0; int length = 0; int* n; if( !file ) … | |
Re: Maybe this thread can help u out. [URL="http://www.daniweb.com/forums/thread6923.html"]http://www.daniweb.com/forums/thread6923.html[/URL]. A search on the error message gave me some other hits to | |
hi, it's about time i got myself signed up. In a few occasions the forum helped me solving some problems. I started a carreer switch almost 3 years ago by starting an study 'computer science'. For about 1 1/2 years I work as a programmer on a webbased application. still … |
The End.