I think you could take a look at sourceforge.net http://sourceforge.net/search/?words=VPN&type_of_search=soft[^]
Bahadir Cambel
Posts
-
request:source code -
A Class like TreeNodeYes it was a arbitrarily large number. Thanks for you replay , it solved my problem. Bado
-
A Class like TreeNodeHow could I design a class like TreeNode, I have tried but I am getting a Object Reference Exception
public class classA { public classA(){} public void INeed() { classB b = new classB(); b.Add(string something); } } public class classB { private string att1; private int index ; private classB[] container; public classB() { container = new classB[100];index = 0 ; } public void Add(string addNew) { container[index].att1 = addNew;//causes error index++; } }
If I do so , am getting a Object reference not set to an instance of an object error in the line that I try to add something to the container. Could you explain why ? And how could I deal with the issue ? -- modified at 15:24 Saturday 10th December, 2005 -
DataBound TreeView + DataBinding + DataGridAnybody ?
-
Dataset database issuesYou should supply a DataTable named as Table in WebService function inputs(DataSet dg2)
-
DataBound TreeView + DataBinding + DataGridHi , I am a little bit confused. I have a tree view , currency manager and a datagrid Currency manager controls item details , TreeView is bounded by the following structure
ItemRootTypes -> ItemTypes->Items
DataGrid has the same source as CurrencyManager.
I could navigate through records by both side, syncronizing each other, selecting the correct node/CM_Pozition with the given itemID
(TreeView -> CurrencyManager & CurrencyManager -> TreeView)
I could find the appropriate record in the TreeView and select the node by SelectedNode property of TreeView.So far everything works fine.
But if the currency manager's index changed by DataGrid , TreeView could find the appropriate node , but cannot select the node.(highlight) (I check it by changing the node's text ) Btw , databinding still works , the only problem is TreeView cannot select the node. Anybody has dealed with the same issue ? Thanks in Advance Teknomultimedia -
EncodingI am using HttpWebRequest and Response classes in order to query a third party database. But the problem is , encoding is in ISO_8859 format and couldnt retrieve some characters ..as I looked so far in the method of streamReader class , only ASCII , utf 7-8 and a few more are available..But I want to encode streamReader with ISO-8859 So far I am using the following method. sr = new StreamReader(resp.GetResponseStream(), System.Text.Encoding.UTF8); .. How could I achieve this? Any suggestions or piece of code will be welcomed:) Thanks in advance.
-
Store multiple valuesThanks a lot for the replies Marc.
-
Store multiple valuesThanks for the reply Marc, I thought in the same way , but I asked for that there may be a better solution. What about putting values into a class/struct,and then serialize it binary and put into a binary column ? Do you have any ideas ? Is it possible ? and could it be more efficient ?
-
Store multiple valuesHi , I have a checked listBox control , which stores multiple items.The thing is , I should store these values and then retrieve.How could I store these values in a SqlColumn ? ( I am sorry it could be an Sql Forum question but there could be a way using C# before Sql, so I decided to post it here.) Thanks a lot. Bahadir Cambel.
-
DateTimeHow could I change the format of the DateTime ? The local Date is in the "dd-mm-yyyy" but SqlDbType is in "mm-dd-yyyy" format . Thanks in advance.
-
Vb 6.0Yes , I like them all(a big lie ) , esp the woman ones :D
-
Vb 6.0I found the problem , Although I change the name property , some how its name didnt change.. 2 more questions , how could I open a OpenFileDialog like in .Net ? And is there an Xml support in Visual Studio 6 ?
-
Vb 6.0I wrote the VB.NET version! I know that both of the properties just look same! I told the problem .I dont force anybody to do my homework.I just ask... If you dont believe , I could send you a bunch of projects that I did before.. Rather that behaving like the lawyer of the CP , if you know the answer , you may help!You dont need to accuse me ..Got it ?
-
Vb 6.0Hi , I have a homework to do in VB 6.0 but I couldnt even figure out TextBox's Text Property when I code ..it gives an error as "Argument Not Optional" I found text Property textBox1.Item.Text , but the error givenn..Why ? if I code , textBox1.Text it couldnt find such a property... If anybody could help me , I would be greatful..I need a Telephone Book in Vb 6.0.. if somebody has an old project like that...please forward to bcambel[at]gmail[dot]com I did the project in VB.NEt but teacher has refused it , and insist on me to do the project in VB , please hellppp..I am begging :D Anyways , thanks in advance!
-
ComboBoxThanks again for great help... Bahadir Cambel
-
ComboBoxThanks a lor Ravinda , I used .Clone() function but it didnt work.. Well at least I should have given one more try :D I have a one more question , Is this copied dataTable will be stored logically or physically in memory ? Thanks in advance.. Bahadir Cambel
-
ComboBoxHi , I have a dataTable and this table is binded into 10 comboBoxes , but whenever I select an item in a combobox, all the comboBoxes change their value too. I guess its because of habing same source, is there any method to force to let the user select whatever he/she wants rather than changing tableName and binding each ComboBox unique ? Thanks Bahadir Cambel
-
graduation project !!!!Is there a graduation project in high school ? :laugh:
-
how to import and export xml file one machine to another machine in vb.net as well as asp.netOne way is to send and receive data over the Web Service if you have a running application in the another machine.. Second way could be remoting..I dont know a lot..