Code Module Window Order?
Does anyone know where the display "Order" (i.e. specifying the display order, front-to-back) of the code-module windows is specified, when the IDE is first opened? The initial ordering appears to have...
View ArticleSyntaxt error - need help please
Hello, I found a site that has code for turning off a virtual machine. I get a syntax error when trying to compile on the objVM.Turnoff(). How can I code this to work? I took it right from the website....
View Article[RESOLVED] picture box fade
: ) how do i draw a circle and let it fade away on a timer Code: x1 = (Picture1.ScaleWidth - hgt) / 2 y1 = (Picture1.ScaleHeight + wid) / 2 Private Sub Timer1_Timer() If fade = 0 Then fade = 255 Else...
View Articleerror type mismatch in query epression
im getting a error type mismatch when i try to get the history of a customer cant find exactly where is the mismatch this is my code Code: Dim strSQL As String Dim lngVal As Long lngVal =...
View Articleget value in variable position in string
I can have this strings: RAPP C/C: 000009999 | or RAPP C/C: 000009999 or RAPP C/C: 000009999 ecc... i ned to intercept the string RAPP C/C: in whatever position and get always the right 6 digit from...
View ArticleDevelop, Deploy 32 bit applications to 64 bit Windows?
I create my self-contained programs and their NSIS install packages to prevent their interfering with or being interfered with any other applications on the user's PC. http://www.indra.com/~anderci...
View Articlegetting webbrowser data to text file
hello i am from vb6 and there is a text that is header between <h1>header</h1> and i wnana get that header into text box but how ??? help me :wave:
View Article[RESOLVED] text1.text help
multi line textbox i wish to add <br> front of all text Quote: Private Sub Text21_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then ' The ENTER key. Text21.Text = "<br>" End If End Sub...
View ArticleNeed a piece of code optimized for my need!
I have 2 arrays. the first array holds the IDs to my sprites and the second array holds the IDs to my objects. and in the main loop, everything is Rendered this way: Code: '..................... For c...
View Article[RESOLVED] error type mismatch in query epression
im getting a error type mismatch when i try to get the history of a customer cant find exactly where is the mismatch this is my code Code: Dim strSQL As String Dim lngVal As Long lngVal =...
View ArticleGetCharABCWidthsI and GetCharWidthI
Anyone dealt with these API in VB6 and if so have declares and possibly small example?
View Article[RESOLVED] API help
Hi, I want to know how i can move an object on screen using the GetAsyncKeyState API. This is what i have so far, Code: If (GetAsyncKeyState(vbKeyRight) And &H8000) <> 0 Then 'move...
View ArticleContact List With Treeview
hi everyone. i wanna create a contact list with treeview, like Yahoo Messenger. how to add data n image to a treeview like this thanks in advance. am using vb6 Attached Images
View Article[RESOLVED] how to add a textbox to combobox
is there a way to add a text to a combobox? lets say i wright in the text 1234 and press add then i wanna see in the combobox 1234 tnx in advanced
View ArticleProgram crash when try to connect with Microsoft Sql Server 2008
:P I've a program in vb6 with connection to microsoft sql server 2008 database. I've checked the connection string, it seems to be ok but the program crash when try to connect. :/ i dont know what can...
View Articlecomparing list box to text
Im my program I have a list box containing selections made by the user. I need to compare these selections to lines in a text file and fill in the missing information. EX. the list box contains: side...
View Article[RESOLVED] syntax error
what is missing here?:confused: Code: CN.Execute "INSERT INTO Appointments (AppID, AppDate, AppTime, AppCust, AppHrDr, AppService, AppRemarks) VALUES (" & _ NewID & ", #" & _...
View ArticleObject Array filled with double arrays
Code: Public Function xXML(Filepath As String) As Object() Set objParser = CreateObject("Microsoft.XMLDOM") Set OCC = "OMICRON CONTROL Center" Dim xDoc As MSXML2.DOMDocument...
View Article[RESOLVED] Passing keystrokes to another window.
Hi, How do I pass keystrokes to another window? For example I need to fill up text boxes in another application.
View Article