Topics
-
Problem inserting a Winsock control inside a class in Vb.NEt
by Guest Cyber_Boy-
- *Gurus*
- 5 replies
- 3.6k views
What can i use to log on an FTP in Vb.NET? I'm trying to log on an ftp via a program in VB.NEt is there something that is almost the same as the Winsock? i need the funcionality to send PASV, Delete, Upload, Download, List and all other functions is there a way to do it?
Last reply by Derek Stone, -
-
"Find" record problem
by Guest glendower- 1 reply
- 1.6k views
I'm trying to find a record from a recordset using the statement: m_rstBookings.Find(" room_number = '" & roomnumber & "' and client_id = '" & clientid & "' But it doesnt work, the syntax seems ok. Basically I need to be able to identify a single record based on 2 (or more) parameters, room_number and client_id. The recordset m_rstBookings contains the fields (amongst others) 'room_number' and 'client_id' Am I correct in assuming that the Find statement only works on finds using a single field, if so how do I find a record using 2 or more fields. Thanks
-
Referencing an running instance of a form(VB6 equiv: loop through the Forms collec.)
by Guest Andrejko-
- *Gurus*
- 8 replies
- 4k views
Since the Forms collection no longer exists in VB.NET, how do you determine whether a form is already running? In other words, what is the .NET equivalent of the following VB6 code: Sub CheckFormStatus(ByRef f As System.Windows.Forms.Form) Dim I As Short For I = 0 To Forms.Count - 1 If Forms(I).Tag = f.Tag Then 'this window is already loaded - check if minimized If Forms(I).WindowState = 1 Then f.WindowState = System.Windows.Forms.FormWindowState.Normal End If Exit For End If Next I f.BringToFront() End Sub
-
-
-
- *Gurus*
- 3 replies
- 2k views
What is the difference between Debug and Release configurations?
Last reply by reboot, -
-
- 2 replies
- 1.6k views
Does anyone know a site where you can download examples of costum forms?
Last reply by NicoVB, -
- 0 replies
- 1.6k views
I need to create a setup program that installs two (or more) VB.NET applications. Do I need to add both projects to one solution? Is it the only way?
Last reply by vnarod, -
visual basic .net = vb7?
by Guest quadrac-
- *Gurus*
- *Experts*
- 6 replies
- 2.2k views
hi: i wrote a program for someone, i didn't want to get paid for it because VB is just a hobby... anyway, instead of money, he bought me visual basic .net 2002 (which i think is vb7). do you work with this version? i'm finding it very hard to import vb6 files and even harder to catch up with the changes... may-be there is a guide somewhere? bye
-
-
Grab th HTML Code
by Guest aarocha-
- *Gurus*
- 4 replies
- 2.2k views
Hi, I would like to grab the HTML code of a web page in the internet using VB.NET. I know how to do it in VB6 with the Inet Control. Is there something similar to this control that I can use in VB.NET? TIA
-
-
report printing
by Guest Cheung-
- *Gurus*
- 7 replies
- 2.4k views
I would like to generate some reports in my vb.net windows application. Do I need to use Crystal report? Or I can use other features in vb.net which can help me to format a document and print it out? Thanks !!
Last reply by mscott, -
-
Datareport equivalent?
by Guest Cheung-
- Leaders
- 1 reply
- 1.8k views
Is it true that in vb6, there is a component called "DataReport"? if Yes, if there are vb.net equivalent of this componet?
Last reply by lebb, -
-
data base connectivity
by Guest hotty- 1 reply
- 1.8k views
hi i m developing an application in ASP.NET can any one tell me what is the data base connectivity process in ASP.NET. early reply will be appriciated. thankx
Last reply by Anis, -
Multithreaded app, do I need DoEvents?
by Guest cgchris99-
- *Gurus*
- 3 replies
- 1.7k views
I have created a multi-thread app and it runs 7 threads continuously. Do I need to put an application.doevents inside my thread code? Or is that not necessary? Thanks
-
-
How and when to use Inline Functions?
by Guest cgchris99- 0 replies
- 1.5k views
I have been reading up on inline functions. I have some small functions and am trying to understand the use of inline. How do I declare this and how do I decide when it is best to use it? Thanks
-
2 users accessing the same mdb
by Guest Cheung- 1 reply
- 1.8k views
I am developing a windows application using vb.net. when the applications are running on two different machines at the same time, they can both enquire the same mdb file. However, only the applications started earlier can insert/update/delete the records in the mdb. What can I do so that the applications can update the mdb at the same time (assume there is no conflict in the updates)? Thanks!
-
database issue
by Guest scorpion53061- 0 replies
- 1.5k views
Hi all and thank you for your time. I have been studying vb.net for 6 weeks. My boss asked me to write a program that acts as a timeclock for employees to punch. First let me tell you where I am at. I am working in visual basic.net. I am building a windows application. I have a data adaptor, dataset datagrid, and connection all functional on a form which is for my boss to view all time punches. That works great. My problem is the form where users enter their information. That too has the same adaptor, connection and dataset. When clicking submit, I need the information it has gathered (from the three textboxes and the 3 labels) to be entered into the database as a ne…
-
FTP Class
by Guest iceberg- 1 reply
- 1.7k views
I have download from http://www.allapi.net/classlib/class.php?id=9 a class for implementing FTP tranfer. I don't know how use this file in a form for download files Can you help me??? Thanks
-
What Are System Requirements? What Version of VB.Net?
by Guest Stever-
- *Gurus*
- 11 replies
- 4.3k views
I need to upgrade my computer soon and by next summer I plan to go to Visual Basic.Net. I am seeing though, that VB.Net will not work on any system older than 2000, as I am using 98 2nd Edition. What's worse, it looks as though I will have to use the expensive version of XP, called XP Professional. Is this so? Next, the only version of VB.Net that I have seen in the stores is the Standard version for $100. There is an upgrade from VB 6.0 to VB.Net for about $600 and the Suite is around $1300. I presently am using VB 6.0 Enterprise Edition. Is there a comparison? I hate upgrades, $1200-1300 is too much money and the Standard is probably watered-down to much. An…
Last reply by Dodgeram01, -
-
Remove a line from a ListView
by Guest kanenas-
- *Gurus*
- 5 replies
- 2.4k views
Hi! I have a listview and I want to make a button to remove any unwanted entries. I tried If Not lst1.SelectedItems Is Nothing Then lst1.Items.Remove(lst1.SelectedItems(0)) End If But I got an error in the second line Any ideas?
-
-
vb.net??
by Guest xilica2k2-
- *Gurus*
- 2 replies
- 1.4k views
is this true that vb.net has a capibility that lets its applications be inbedded on web pages or pop up on web pages? if it cannot, how do you do this? vbscript?
-
-
Desolate board
by Guest rpeters- 1 reply
- 1.8k views
This board seems to have taken a trun for the worst. I see about 5 posts in 3 weeks. Anyhow, if you are serious ASP.NET developer as I am you know how difficult it is to find a good message board where there are actually replies to your inquires. I would highly recommend the following board: http://www.aspmessageboard.com/forum/aspplus.asp Happy hunting -rpeters
Last reply by Anis,
-
Who's Online 0 Members, 0 Anonymous, 46 Guests (See full list)
- There are no registered users currently online