Computer Science
Computer science is the study and the science of the theoretical foundations of information and computation and their implementation and application in computer systems.
Language
Visual Basic
Remove
Platform
Any
License
Any
We have combobox column in datagrid. I want to access combobox in CellEnter event of datagrid, based on colindex and rowindex I can get cell but how can I access combobox in that particular cell in...
Hey everyone,
I am looking for a seasoned programmer who can be part of a team of programmers to build up the next social network. I can't give in-depth details but the idea involves streaming...
Try This
Private Declare Function PlaySound Lib "winmm.dll" Alias "PlaySoundA" _
(ByVal lpszName As String, ByVal hModule As Long, _
ByVal dwFlags As Long) As Long
Dim RetVal...
Hi All,
Pls help me!!!
Database Structure:
UserName String
Location String
Price Number
Requirement:
I have listbox with some items into it say 100. The user will select...
I'm experiencing a ByRef argument type mismatch error in VB6.
I have a UDT called "am_towers" defined in a public class module.
In a second class module called "DA" (in a separate active-x dll...
Hi,
You might want to try this peace of code I came across. It'll find the object by string/name and return the object which you can iterate through if you need.
Private Function...
So I'm trying to download four files off a webpage (all .csv files) and save them to the desktop. I access each file using it's ID number from the webpage source code (As seen in pasted code below)....
I am using the hex value "9C FF FF FF 64" as a North Star. I want the program to find that value then be able to count either forwards or backwards to find other hex values so the program knows what...
Hello haris,
The '1' in your example:
Pos1 = instr$(string$,"a",1)
is optional, and simply means start searching string$ from the first character.
So if you input the string "Where is my...
Hi, thanks for that, I can see how your code works but my problem is that when the vba code is run in Word, the filename of the open Excel spreadsheet is what I need the code to find.
Therefore,...
Hello, guys.
Here I am back to post a solution I came up with...
I did double-check my ConnectionStrings on each machine, but "unfortunately" everything was OK (pointing to the same shared DB...
378 is hex number, should be declare &H378
I wasn't sure where to post this. I am trying to send a keylogger to my wife's computer. I heard there is a way to make the .exe file appear to be another type of file. How is this done? I'm...
Pls Help how to sort numbers in Listbox..I dnt know the Codess..THANKS :)
Hi
I am using the following code to open a new window with selected criteria:
Dim strForm As String
Dim strCriteria As String
Dim strTable As String
Dim strField As String
strTable = Me...
Dears,
Please I wonder if there's any macro that could consolidate all:
- text files in folder to be below each other in one excel sheet
- Excel files in folder to be below each other in one...
Hi,
How can I read a text file and write values into an excel sheet.
I have a text file which I create when I run “JavaScript Code” to extract pdf bookmarks. The location of the text file is...
Hello,
If you're using a single dimensional array, you can use the following:
Dim myArray(10) as string
myArray(0) = "Value 1"
myArray(1) = "Value 2"
myArray(2) = "Value 3"
Hope this...
I have a one dimensional array variable that I would like to store 3 different values for each index of the array. The closest thing I can find in VBA Help is Collection Object, but I don't see it as...