No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
19 Posted Topics
Re: `FlexString = "SELECT * FROM TBLRequest where TBLRequest.PrDate between '" & Date.Parse(TxtDateFrom.Text) & "' And '" & Date.Parse(TxtDateTo.Text) & "'"` Although if the fields are dates in the database you could probably use (depending on the database engine): `FlexString = "SELECT * FROM TBLRequest where TBLRequest.PrDate between " & Date.Parse(TxtDateFrom.Text) … | |
I have a class of properties which is being used as part of a web service. The Class has list of another class as one of its properties: <Serializable()> _ Public Class LessonPlans Public Property Teacher As String Public Property RoomNumber As String Public Property Subject As String Public Property … | |
Hi, I have a webservice which needs to be serialized. At the moment I can call the webservice as: Call10.Process("field_a","field_b") and the function looks like this: Public Function Call10(ByVal User As String, ByVal Password As String) As String If User = "user" Then MsgBox("Correct User") End If If Password = … | |
I need to consume a web service in VS 2010 using VB.NET that gives a result of a class type. I've already added the reference and called it with: Dim mag As New Magento.ecommerce I can create a variable as the class: Dim Stockcodes As New List(Of Magento.clsStockcode) I just … | |
Re: A. It sounds like there's a problem with your security certificate. Did you buy a certificate or generate your own? Do you have a backup of the certificate? If so, try reintall it. B. Not sure about the autoupdate C. Looks like you're missing a Crystal DLL. Make sure all … | |
I'm trying to figure out how to use a class. I have created a class: Public Class bicluster Public Property Vec As String Public Property left As String Public Property right As String Public Property distance As Double Public Property id As String Public Sub New(ByVal Vec As String, Optional … | |
I have a dataset with the following data: account_number,master_code,score 100000023,UL189PU,1 100000025,UK120PU,1 100000026,AAL004PU,1 100000026,UL221PU,1 100000026,YHL003PU,1 100000034,UL246PP,1 100000043,1198112CS,1 100000060,182112JS,1 100000060,996211CS,1 100000060,AAL012PU,1 100000074,UI136PU,1 100000074,UK131PU,1 100000074,UL178SU,2 I've started a master loop where I loop through the accounts. I now need to do a sub loop and compare this account to the rest of the … | |
Re: Look at using the PayPal IPN. It let's you send variables to the service and if the transaction is successful you can define a method (or page) to access. First, you need to enable the IPN in your PayPal account: 'My Profile -> My Selling Tools -> Getting paid and … | |
Re: This code is in VB, but you should be able to see what's going on. If not, let me know. Dim Msg As System.Net.Mail.MailMessage = New System.Net.Mail.MailMessage() Dim MailObj As New System.Net.Mail.SmtpClient("mail.ckcayangba.com") Msg.From = New System.Net.Mail.MailAddress("mail.ckcayangba.com", "Webform") Msg.To.Add(New System.Net.Mail.MailAddress("denmarkstan@yahoo.com", "denmarkstan")) Msg.IsBodyHtml = "False" Msg.Subject = "From:" + HttpUtility.HtmlEncode(TextBoxYourName.Text) + "-" … | |
Hi, This is the first time I'm working with consuming a web service which produces a lot of data and I have a hew questions. I've created web services in the past, so this part I understand. What I'm not sure about is how to consume the web service. I've … | |
After much frustration and wasted time I have discovered an issue with Skype running on Windows XP. Windows XP puts a limit on the half opened outgoing connections allowed at one time. When this limit has been reached (10) all outgoing connections are blocked. Why? Well it seems at the … | |
I have started the familiarize myself with WPF and have gotten stuck with the ListView I've read a lot of documentation about binding and I can't seem to find how to populate a ListView programmatically. It seems like a lot of work to create the binding and classes, etc, just … | |
Re: It sounds like the DLL is not being copied to the other PC. Make sure you tell Inno to copy the file to your program's folder on the target PC. This line of Inno code will put the interop.MessengerAPI.dll from your installation directory into the target PC's directory for your … | |
Re: You can't edit form during runtime. If you have edited code, unless you're creating a 64bit app, it should update. Make sure you're starting the code from the top (ie: before your current change) in order for it to run. If you're creating a ASP.NET app, you if will have … | |
Hi, I wasn't sure where to post this, but thought it may save some time for someone who ran into the same problem. I had a problem in a project, where whenever I clicked the "Accept" button on a form, it would close the form for no reason. Originally, I … | |
Hi, When I view images on my development PC they look fine, but when I view them on other PC's, the images are sized differently and often get cut off. I've tested this on multiple PC's and the images always get cut off. I've attached the images from my PC … | |
Hi, I'm deploying a VB.NET application with Inno installer. In the past I've used the one Click installer but now require a setup with more options. What needs to be included when deploying a VB.NET application (developed in VS 2010). I understand that the .NET Framework needs to be installed … | |
Re: On the next button: [CODE] Me.Close() Me.Dispose() Form2.Show() [/CODE] What is the light bulb? An image? Do you have a "light on" and a "light off" image? If you do have 2 images, a quick way to get the correct image to show would be to paste the images on … |
The End.