Answer Questions
Christopher Roberts Adding fields to the CreateUserWizard
I'm trying to add a textbox to the initial step of the CreatUserWizard. Let's say it is tbMyTextbox. Now when I add an event on created user, I want to get the value in the field. I thought I could use dim mc as textbox mc = ctype(CreateUserWizard1.Findcontrol("tbMyTextbox"),textbox) mc.text should be the text of the field. But it can't find the control... so I tried dim mystep as CreatuserWizardstep mystep = createuserwizard1.activestep mc = ct ...Show All
Sarducci Handling of unsigned values?
Why is this code not compiled Const UnsignedValue As UInteger = &H80004005 To make it more strange this compiles: Const UnsignedValue As Integer = &H80004005 The value is larger than Integer.MaxValue but smaller than UInteger.MaxValue. Thank you for this information. No problem :) In VB, literals (including hexadecima ...Show All
Frank777 Method POST to send Data from windows form to ASP web page and get response
Hi Friends over here, I'm using httpwebrequest and httpwebresponse to send and recieve data between windows form in my project and web page (ASP) using GET method, what I need is how to send same thing Using POST I found some example in MSDN but it was not clear for me and not working !!! Please help me as soon as possible. Mr. Abdullah, Really I do thanks for you but you are talking about sending from HTML form, but I'm talking about wi ...Show All
edenxiii Connection to SQL2005 using VB 2005 Beta2
Hi ! I was using these commands with VB2005 Beta1 to load my main form: Dim settings As Configuration.SettingsProviderCollection = System.Configuration.ConfigurationSettings.ConnectionString Dim setting As SqlConnectionStringBuilder = settings.Item("VBXMP3.MySettings.Connection") Now I reInstalled VB2005 Beta2 and I cannot compile my project. The error is ConnectionString is not a member of ConfigurationSettings . Does anyone have an i ...Show All
Srikanth valdas Controling the FTP
Hello, I'm developing an VB apllication, that uses MS-Dos FTP, by calling a bat file ("Shell (fileFtp)". The FTP, is working fine, but it's necessary for me that i test the result of the FTP. How can i do this P.S. Sorry for my English. You might try checking for the presence of the file that you were FTPing to verify that it was either sent or received. If you need more control there are ...Show All
HiddenDragon Does VB allow assignment of data with Row Column
In a Table, where multiple rows and columns have been defined, CounterTable.ColumnCount, is there a way to supply data (letters and numbers) to that location An apparent solution SetColumn(CounterTable, c1) only refers to controls - is this a case of vocabulary .text never seems to show up as an option. This extreme wordiness is one of the things that bugs me about VB, seems like interior decorating with military vocabulary. Public Sub ...Show All
Toghian Date Format
I need to Format my date to look like 06/02/2006 i use this method and it returns the date at 6/2/2006.....Any help for this easy issue ToShortDateString.ToString() The following web site will provide you with some of the different characters and there meaning allowing you to customize the date/time for you exact purposes. http://www.riderdesign.com/articles/displayarticle.aspx articleid=5 The microsoft URL dealing with this is ...Show All
Jim Homminga Missing Component Designer Generated Code
I just added a component to my project and cannot find the code that should have been generated by the component designer. When I went to the code window the screen was blank. I created a constructor "Public Sub New()" and when trying to build the project I received an error that I had duplicate constructors. I know it created some code but cannot see it. Where could it be Exactly what code are y ...Show All
Florin Raicu listbox object display
hi... using vb.net 2003... newbie here... i tried searching the forums and could not find my answer... sorry for the inexperience i am about to bring... anyway, i am trying to build a listbox of objects and have a string displayed, but also store a tag as well to save the key info... i initially used a treenode object, but it displays "treenode: ....." i don't want "treenode" displayed... then i tried creatin ...Show All
Flippy_TK VB.NET structure for VB6's integer AND key indexable Dictionary?
I'm on VB.NET 2005 so I have access to generics, but I seem to keep running into trouble when trying to "translate" the VB6 Dictionary to a .NET equivalent. It all began when translating VB6 "Dictionary" to the .NET: Dim Pairs As Hashtable That looked great, until I found out the code relied on the VB6 Dictionary being sorted by the item insertion order, as the indices are later matched against another table. The .NET Hashtable doesn't se ...Show All
urubin Help with Timer
I am developing a parenting educational course with specific requirenments regarding how much time the student needs to spend on each particular lesson. I am looking for a timer code that: 1. Track and display how much time they have spend on the current lesson. 2. Makes a button (or a link to a new form) available after 40 minutes has passed on the current lesson to jump to the next section 3. The hardest one ( I think) Stores time they have al ...Show All
Al Kuklyuk VisualBasic IDE Corrupts Form !
Hello There ... I Was Working very smoothly and everything was Allright ... Suddenly I found that Something Corrupts the Code of my Forms ... I got arround 100 Errors (One for every Control i guess) the (Error 6 ) was Like ControlX is not a Member of BlaBla ... I then Went and had a Look at the Code behind the Form And Found that SOME Lines were Missing Like Friend WithEvents TmrTime As System.Windows.Forms.Timer Then I had to write t ...Show All
Leonid_ vb express + winsock api problem
hello, i try to use the winsock api in my program but when i call the WSAStartup from ws2_32.dll i get an Access Violation Error (could not read/write protected memory). I want to replace the System.Net.Socket because it causes some problems with packet loss/fragmented packets. (when the remote server sends many packets, the socket puts them in one big packet which my program gets at the end of the async receive. This way the big packet has to ...Show All
C# Lover Shell NotePad
How can I Shell to Notepad.exe and have Notepad load c:\test.txt Dim ps as System.Diagnostics.Process You can also use Process.Start to open files in their native applications ps = Process.Start("C:\test.text") ...Show All
mball loggin
I created a loggin form and dont know how to do the loggin databases so i figured id code the loggins. but it doesnt work can u help me with this or say how to do the databases If (UsernameTextBox.Text = "Loggin" & PasswordTextBox.Text = "Password" ) Then Dim openform1 As Form1 = New Form1 openform1.ShowDialog() End If End Sub does the express version have this as you le ...Show All
