четверг, 30 марта 2006 г.
|
| need help with making a banned IP list for game Guest 03:09:11 |
| | hi any help would be very nice, but im making a online text based game, and i need to make a perm ban inplace so once there banned they stay off, i have a temp ban, there banned until server is restarted and it works, but can anyone help me with a code for adding a banned IP to a text doc and make the server check the connecting IP to the banned ip list? seems hard when u read it but its simple, i have tried but i have no idea on how to make VB check a file for something then block it.. ben |
| | Add comment |
понедельник, 20 марта 2006 г.
|
| Write to Entry Box(es) in WebBrowser Guest 23:27:18 |
| | I've done numerous searches, but cannot find simple sample code for writing to a text entry box on a Web Page being viewed in the Visual Basic 2005 WebBrowser control. Could someone take a few minutes and (for instance) post sample code that would: (1) pull up the hotmail login page, (2) enter a preset username and password / execute, (3) click "check mail" / execute, (4) search for keyword "free" in the list of email subjects, (5) click the checkbox associated with that email, (6) click "Delete", (7) open the next email. (If I could get help with this much, I could probably figure out the rest.) -- Thanks! |
| | Add comment |
пятница, 17 марта 2006 г.
|
| How To Lighten my computer screen Guest 21:38:15 |
| | I know this is probably the stupidist question you've ever been asked. But I have changed the apperance on my computer. And now it is too dark to make out some of the objects on games and on {censored}. I am computer illeterate. So please guide me along the wa to lighten it up a bit. |
| | 1 answer | Add comment |
|
| Rich Text Box Guest 21:36:44 |
| | Hi. I am making an HTML code generator. And I am desperate. I was wondering does anyone know what code I can use to force a new line. Let me explain. At the moment the HTML my program generates is like: <html><head><title>Hello</title></head></html> I want the code to appear in a rich text box as: <html> <head> <title>Hello</title> </head> </html> I can not stress how important this is please help. Please email me a reply if possible to webmasters@abc-xp.co.uk. Thank You, Lee Price |
| | Add comment |
среда, 15 марта 2006 г.
|
| Height is read-only?? Guest 14:24:03 |
| | Can 'Height' property of a combo/listbox be changed during runtime? I tried to change it with Move method, but when I run the program, it says 'Height property is read-only'.. Is there a way for me to change it during runtime? Help please, I'm quite new at this... |
| | 1 answer | Add comment |
суббота, 11 марта 2006 г.
|
Close an exe leegriffiths 15:41:30 |
| | Hi I'm using the onscreen keyboard function within windows to enter a password onto a touch screen. The code I'm using to load the onscreen keyboard is as below: Private Sub Command2_Click() Shell "C:\WINDOWS\system32\osk.exe", vbNormalFocus End Sub Once I've entered the correct code using the onscreen keyboard the form unloads, the code I'm using as below: Private Sub Command1_Click() If Text2.Text <> "entertainer" Then Select Case Var1 Case Is <= 2 MsgBox "The password is incorrect", vbExclamation, "Incorrect Password" Var1 = Var1 + 1 Case Else MsgBox "You have entered the wrong password too many times, you are now locked out. Please contact your system administrator 07970165433. YOU ARE NOW LOCKED OUT.", vbCritical, "Locked Out" 'Unload Me End Select Else MsgBox "(The correct password was entered)" Unload Me End If End Sub This is ok but the keyboard remains on the screen, how do I exit the 'osk.exe' and remove it from the pc memory? Hope someone outhere can help? Griff. |
| | Add comment |
воскресенье, 19 февраля 2006 г.
|
Auto Number in Data Report Ronald Ocol 12:57:37 |
| | Hi! I'm using a Data Report in Visual Basic without connecting to a Data Connection. I use Recordset and Pass it to the Data report. I want to create an auto number on the Detail Section but can't do it. Also when I used to access the Group Header Section, there is an error sounds like "Cannot find the record source". Eventhough I use a group By query on my SQL statement. The same error appers. Can anyone help me. |
| | Add comment |
четверг, 16 февраля 2006 г.
|
| VB close after making connection open Guest 11:21:02 |
| | Hi all, i have a problem here. I am not sure whether the problem lies with my postgres or vb. My vb program get a error message "Instruction at "0x0385ed9a" referenced memory at "0x00000000". The memory could not be "read"". Straight after that, the whole program shut down. I have tried to link the database using excel and somehow it's able to connect. I have even tried to copy others eg source code to test but in no avail, the same error occur. But 1 thing i notice is that everything will go smooth even after connection is open. However, this error always occur when i try to execute a SQL statement like eg MySQLStatement = "SELECT user FROM userlist". TmpRecSet.open MySQLStatment ActiveConn After this, the error will occur. I really need some help here. Any help will be greatly appreciated. Thanks in advance. |
| | Add comment |
среда, 15 февраля 2006 г.
|
| MS ACCESS problems Guest 19:23:52 |
| | I can't manage to export a report in ACCESS to MS Word when I have already defined the Normal template with a header. When the file is created the header is not included anyone no why. |
| | Add comment |
среда, 1 февраля 2006 г.
|
| Hello!How did u make it?I ahve same problem with... Guest 22:57:00 |
| | Hello! How did u make it? I ahve same problem with {censored}, when im trying to add a new child record, to an existing primary record. Relations are O.k. , but its not working fine tought... |
| | Add comment |
вторник, 31 января 2006 г.
|
| Option Explicit'I've created a form with:' 1 DriveListBox... Guest 20:31:37 |
| | Option Explicit 'I've created a form with: ' 1 DriveListBox (Drive1, default); ' 1 DirListBox (Dir1, default); ' 1 FileListBox (File1, default); ' 1 PictureBox (Picture1, default); ' 1 AcroPDF (AcroPDF1. default). 'The Picture1 act as a conteiner for 'Drive1, Dir1 and File1, just to group and 'align all these in the form's left side. 'Setting appearance and file type Private Sub Form_Load() With AcroPDF1 .setZoom 30 'or other .setPageMode "OneSinglePage" .setShowToolbar False .setLayoutMode "SinglePage" End With 'Must be sure is a valid PDF before load it!!! File1.Pattern = "*.pdf;*.PDF" End Sub 'Here, just the trivial Private Sub Dir1_Change() File1.Path = Dir1.Path End Sub Private Sub Drive1_Change() Dir1.Path = Drive1.Drive End Sub 'Load selected PDF file into acroPDF Brwoser. 'Caution: If errors, you must re-start AcroPDF1 ' for next selection. Private Sub File1_DblClick() With AcroPDF1 .CausesValidation = True .Visible = False .LoadFile File1.Path & "\" & File1.FileName .gotoFirstPage .Visible = True End With End Sub 'To fill the form region Private Sub Form_Resize() With AcroPDF1 .Height = Me.ScaleHeight - AcroPDF1.Top .Width = Me.ScaleWidth - AcroPDF1.Left End With End Sub 'To fill (+/-) the Picture1 region Private Sub Picture1_Resize() File1.Height = Picture1.ScaleHeight - File1.Top End Sub |
| | Add comment |
суббота, 21 января 2006 г.
|
| Just checked your site out. Good work!I'll tell my friends! Guest 00:26:50 |
| | Just checked your site out. Good work! I'll tell my friends! |
| | Add comment |
пятница, 6 января 2006 г.
|
| make browser for picture in vb Guest 21:49:44 |
| | i need to get the best way for make software for browsing any type of picture plz any one to help me |
| | Add comment |
понедельник, 28 ноября 2005 г.
|
| Hello!We have a front end in Access which compares a value... Guest 11:14:31 |
| | Hello! We have a front end in Access which compares a value in a table to a value in the back end database, and if True, calls a batch file and closes itself. The batch file copies the new version of the front end from the LAN to the local PC, and runs it... |
| | Add comment |
вторник, 27 сентября 2005 г.
|
| sure, just email the sourcecode to me Guest 01:53:02 |
| | sure, just email the sourcecode to me |
| | Add comment |
понедельник, 29 августа 2005 г.
|
| You can set a timer!, yeah, for example you print the file... Guest 18:40:59 |
| | You can set a timer!, yeah, for example you print the file and then set the timer to kill or delete the fiel, of course is going to give you an error first. but you can say On Error resume next and whenener that files is free, then it will deleted. www.networklatino.com |
| | 1 answer | Add comment |
четверг, 18 августа 2005 г.
|
| how to read data from a .txt file into a visual basic project Guest 15:43:29 |
| | can anyone help me, using visual basic. trying to read data from a .txt file into my project. the project makes ups graphs using the data from the file. but im not sure what sort of code to use. data is set out in file as follows: *G - magic number *X 0 150 - x-axis values *Y 0 80 - y-axis values *M 1 - how many series are to be displayed in the graph *N 16 - indicates that the series has a number of data values equal to the number on this line *V 23 25 30 29 45 62 58 51 43 38 31 26 33 37 42 53 - indicates that the remainder of the line consists of integer data values to be read in Any help would be welcome, thanks |
| | Add comment |
четверг, 16 июня 2005 г.
|
Video Preview And Processing rizal mat jusoh 09:56:43 |
| | I need your help. I need to preview video stream from webcam in a Form, grab some frames, and do processing. |
| | Add comment |
четверг, 26 мая 2005 г.
|
| You must register the mscomm32.ocx executing:regsvr32... Guest 18:24:11 |
| | You must register the mscomm32.ocx executing: regsvr32 mscomm32.ocx Regards |
| | Add comment |
вторник, 10 мая 2005 г.
|
| Accessing Serial port through visual basic Guest 22:46:34 |
| | I need to access data on the serial port using visual basic, if someone can help , it would be greatly appreciated. brideout_cb@hotmail.com |
| | 1 answer | Add comment |
среда, 27 апреля 2005 г.
|
| Hello,had the same problem using Crystal Reports 10.Try to... Guest 15:17:29 |
| | Hello, had the same problem using Crystal Reports 10. Try to do the following: a) Be sure that all VB project links to CR refer to the correct Crystal version. b) Enter the following command to the Crystal Print Engine: report.VerifyOnEveryPrint = True This worked fine in my application. No more verifying-messages are shown. |
| | Add comment |
четверг, 24 февраля 2005 г.
|
recordset updates multiple fiels modhumita 10:21:36 |
| | i am using vb as the front end and sql as back end. code goes fine with other data but when updation of field of the last record it updates both the last and the second last field with the same value. kindly help. Thank you |
| | Add comment |
|