|
Thanks about the debugger idea, I am not that practical on programming yet as you see..
Insistence
|
|
|
|
|
Since I get the impression you are just learning about recursion, learning how to use the debugger to assist you in looking through code execution, now isn't too bad of a time to get familiar with using debuggers
"Any sort of work in VB6 is bound to provide several WTF moments." - Christian Graus
|
|
|
|
|
Insistence
|
|
|
|
|
Hi,
Does anybody knows why this unhandled exception occurs and how to resolve this.
"Format of the initialization string does not conform to specification starting at index 0" in my oledb connection string
Thanks in advance.
|
|
|
|
|
|
Hurry! problem has gone!!!
There was a very little mistake in the connection string path of the database is wrongly mensioned. Correcting the path solved the issue.
|
|
|
|
|
hello, is it possible to get the contents list of a remote http folder thorugh th system.net.webrequest() method..or is there any other way for to get the directory listing the contents
aneef
|
|
|
|
|
I know that it can be done with FTP, which might be useful to you - I dont have any code to hand but you would
1. Create an FtpWebRequest
2. Set the method property to ListDirectoryDetails
3. Set credentials
4. Call the GetResponseStream method
5. Pass it to a StreamReader and use the readline function to iterate though the lines in the file
Note that you get more than just the filename, you get some other information too such as the size, etc and folders are included so you might need to format the responses in some way.
|
|
|
|
|
wow thanx alot.. i will give a try on this... thanx again
aneef
|
|
|
|
|
How to make my form acts as a dialog box when it is called from a menu item.
I could do this using Form.ShowDialog() within any event of any control on a form.
But when I called this function on the click event of a menu item, I got the following exception .
"Forms that are not top level forms cannot be displayed as a modal dialog. Remove the form from any parent form before calling showDialog"
Mohamed Gouda
Egypt
|
|
|
|
|
Try:
Form.ShowDialog(this);
This will create a modal dialog form on top of the main form.
Jeff Clark
Systems Architect
JP Clark, INC.
Columbus, Ohio
|
|
|
|
|
Thanks Jeff .
It did not work. But you helped me rethinking about my code and discover my fault .
The problem was that I defined the MdiParent property of the dialog form to be this
My code was some thing like this.
MyDialogForm dialogForm = new MyDialogForm();<br />
dialogForm.MdiParent = this;
dialogForm.ShowDialog();
However, Thanks a lot
Mohamed Gouda
Egypt
|
|
|
|
|
|
|
|
First I do not what is TX control.
But I think that you can add all .dll files that appears after installing that control. add them to your code as reference.
Another solution:
If you do not want to ask your client to install that control first, you can create your own installation wizard that implicitly installes that control
Mohamed Gouda
Egypt
|
|
|
|
|
Normally I don't do blatant self promotion, but I feel that your case is different. Please read these [^] guidelines, especially the section on reposting a question.
|
|
|
|
|
Hi,
My problem is when i merge one dataset with the previous one, the content of the previous dataset disapear.hence i only get one dataset which is the last merge operation.
I keeps loosing the prevoius merge operation.
Please if you can give me an example, on how i can retain the previous merge.
Thanks
|
|
|
|
|
Reposting the same question is considered rude.
If you dont understand the functionality of Merge try re-reading the docs.
|
|
|
|
|
Thanks for your comment!,
I have used from your link :
DataSet.Merge (DataSet, Boolean)
My two dataset have the same schema.what i want to keep the result of the dataset in to one datset
that will keeps building up the dataset which out loosing the previous datset operation.
Thanks
|
|
|
|
|
Get the latest files from VSS.
There are several projects in the solution.
These projects refer to a web reference.
All projects build fine except one of them.
The problem is to do with the web reference.
Under web reference there is a reference to MarketdataService which is the webservice.
But every time I delete and add the web reference, it adds the extension 1 to the end of it i.e. MarketDataService1
On the hard drive I can see the new folder is added and even deleting it and re-adding the web reference still adds the extension 1 to the web reference name.
Not sure why this is happening.
Thanks
|
|
|
|
|
Run Analyze on your sourcesafe database and check to see if there are any corruptions in it.
|
|
|
|
|
VSS is getting the correct files it seems because on my hard drive I can see the correct files.
But in the project, it does not show the web reference which is in VSS.
Thanks
|
|
|
|
|
Sorry - I should have read your post better (hint - you don't need to put a new sentence on a new line as it makes it harder to read). The issue is that the system thinks that you already have MarketDataService installed in IIS. You need to open IIS and remove the old version before you attempt to bind to the one in VSS.
|
|
|
|
|