- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Application Developer
- Interests
- Working out, Scuba Diving, Fishing...
22 Posted Topics
Re: This link will provide examples of how to deploy a .NET app. [url]http://msdn2.microsoft.com/en-us/library/tw8kdk75(VS.71).aspx[/url] | |
Re: Are you wanting to enter a username then find what computer that they are logged into and then find the mac, ip etc of that computer? | |
Re: This should work with a Windows Desktop App; [inlinecode]strText = Me.dgvGrid.SelectedCells.Item(0).Value.ToString & ""[/inlinecode] | |
Re: The column1, row1 stuff kind of confusses me but I think that you are wanting to read a val from file1 and another from file2 and put the resulting value into another file. If so you would use a loop to read file1 to the end while getting a line … | |
Re: You need to use the Winsock control (an example: [url]http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=2253&lngWId=10[/url]) or another socket control like secure socket library (example: [url]http://www.bigspeed.net/articles/securechatvb7/securechat.html)[/url]. Secure socket library may be a better choice since most examples of winsock that you find will be in VB6. | |
Re: The first thing that you'll need to do is add a reference to the Microsoft Excel Object Library. In your code you will need to create an Excel application object and excel workbooks. Then you should be able to access the file to edit the cells. It may look something … | |
Re: Declare a dataset and integer globally and fill the dataset. In the click events of your previous and next buttons put a line that gets the record. [code] 'first, do some validation to make sure that this isn't the last rec 'then inc the rec count intCount += 1 'get … | |
Re: Can you show us the code and tell us in which event you put the code? | |
Re: In the selected index change or one of the click events of the list you should put. [code] dim strLine as strin strLine = List1.SelectedItem.Text [/code] That will get you the line, from there you will need to do string splits & string manipulation on your data. | |
Re: Will this help? [url]http://www.9rays.net/products/Spices.Decompiler/[/url] | |
Re: First you would write the procedure that you want to execute when the button is clicked. [code] Protected sub button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) 'put your code here end sub [/code] After the button is created you use the addhandler to add the event. [code] AddHandler button1.clicked, … | |
Re: You didn't give much detail about the program but I'm going to guess that it is an ASP .NET app because this problem frequently happens with ASP .NET when implementing roles. With ASP .NET the problem is that the Machine.Config file where the app is hosted list a default database … | |
Re: Try using Microsoft's CDO control. Finding it may be a head ache since there are a bunch of different versions. I think that I was using 6.5 when I wrote this; [code] Private Sub SendMail(ByVal sEmail As String) 'this procedure recieves an email address and sends a message. 'Dim objCDO … | |
Re: You need to add a reference to the Microsoft Excel Object Library and create an Excel object along with a workbook and worksheet in code. As you read the Access data you would write it to the worksheet that you created. These links should give you an idea of how … | |
Re: UInt64 hold integer values ranging from 0 to 18,446,744,073,709,551,615, use System.Convert.ToInt64(VarName) to convert it. | |
Re: To read the word doc you'll need to add a reference to the Microsoft Word Object Library to your project and create a word app object in your code to access the doc. To create a pdf file you should try iTextSharp. It can be downloaded here [url]http://sourceforge.net/projects/itextsharp/[/url] you'll need … | |
Re: CR comes with Visual Studio .Net and you should just be able to register it without paying anything extra, that's what I did. Even after that it was a pain to package. This link should help you along; [url]http://msdn2.microsoft.com/en-us/library/ms314043(VS.71).aspx[/url] | |
Re: Do you have an example of the part of the XML file that has the html (I thought that the html tags would cause an error in the XML file)? You may need to read the XML into a dataset and then retrieve the element that has the html then … | |
Re: Hello Peluse, say that I have created a public global string var called sParam. In the form load event of your main form put; [code] Me.sParam = My.Application.CommandLineArgs(0) [/code] This stores the recieved parameter in the variable. | |
Re: Is this what you are looking for? 'declare the dataset Dim ds As New DataSet 'bind to textbox Me.textbox1.DataBindings.Add(New Binding("Text", ds, "Tablename.ColumnName")) 'bind combo me.ComboBox1.DataBindings.Add(new Binding("Text", ds, "tablename.columnname")) 'bind the masked text Me.MaskedTextBox1.DataBindings.Add(New Binding("Text", ds, "tablename.columnname")) | |
Re: This was written for 2003 but it still applies in 2005, no big differences made in the deployment between the versions. [url]http://msdn2.microsoft.com/en-us/library/k76aht6s(vs.71).aspx[/url] | |
Re: Hey Mahendiran, try this in your code; lbl_newcoll.Text = cmd.ExecuteScalar().toString & "" |
The End.