Generate An Ascii Code From Vb Code And Vise Versa
hello, i working in a project where i should read ascii code using the vb to generate the result on excel and vise versa, generate the ascii code using vb
any one have already did this?
thanks for the help
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
How To Convert Twip To Pixel Or Vise Versa?
I have problem on cenverting twip to pixel, can you show me some formula or any tricks on how to do it. Ofcourse, I can manipulate it during runtime.
When i change the coordinate of a certain control or object by the use of pixel it will go where it will and besides the screen coordinate of visual basic is in-terms of twip. Maybe can you help me about it, i think a formula will do it.
Detecting High To Low Trans Or Vise Versa
I'm currently using the rx and tx on com1 to control a device and was planing to use RTS & CTS to send then receive a voltage to and from a relay BUT
I want to make sure the relay whent from low to high or high to low and then back high depending on the start state.
does anyone have code to detect a transition like this?
I'm extreamely frustrated its been almost a full day of doing nothing but this. its becoming more emasculating then an E.D Problem...
thanks
Global Events For Keyboard SCAN CODE & ASCII CODE Event Trapping?
OK, don't be mad at me, if this is a stupid question, but I'm quite new to VB, so here's my Q:
Is there any global event (not KeyUp/KeyDown/KeyPress) to trap keyboard keypresses with SCAN codes? It is very important to have the exact scan code. I want to use an API function to simulate the pressed keys on an other machine, and I need to have the scan code. By the way, API function calls won't do it for me, I need an EVENT! (I don't want to call functions over and over again e.g. in a timer event. This is too -slow-)
So if anyone out there can help me, please do!
You won't regret it!
Thanks to all....
VB Code To Generate Vba Code Behind Button
Good Day All,
I use vb6 to create an excel workbook with multiple worksheet.
In these sheets, once all the data have been imported and sorted, I create a sort of search engine.
adding two dropdown combobox, filling it with the desired values, and then, I add a button.
Now the question;
How do I programatically add the vba code behind that button?
is it feasable?
Any help would be greatly appreciated.
Thanks.
Spit IT, Dump IT, Read IT, Request IT, Paste IT, Laugh or Cry about IT, but don't keep IT to your self.
Ascii To Char & Vice Versa
In VB 6.0 I have to make a simple program that convertas ASCII (ANSI) to the character & vice versa. I have to have a picbox, 2 cmd buttons, and of course the text box, I have all of them and they are all correctly labeled, i need help with the code. I cannot seem to get the code right, here is what I have put down so far...
Private Sub cmdValue_Click()
Dim Ascii As Integer
picOutput.Print "The ANSI Value "; txtInput.Text; " represents the charater"; KeyAscii
End Sub
ASCII -> Text And Visa Versa
Is there anyway that I can get VB to convert ASCII numbers to single character strings and back again? I need it for doing v. basic encryption of high scores.
Thanks
Generate VBA Code 'on The Fly'?
Hi,
Here's one for the Guru's out there:
Is it possible to generate (or modify) VBA code 'on the fly'?
To be more precise, I have a set of complex conditions and, depending on the results of these conditions I want to execute different code. I know I could come up with a whole series of complicated if statements (or maybe a case) but I was wondering if I could actually generate some code within vba and then run the generated code.
I have done similar things in other languages but never tried it in VBA.
Anyone out there have any thoughts please?
How Do You Generate Code?
Hi there,
I need to be able to add a new record to a Access database then code is generated from that so that i can use it in my program. Example:
I need to add printer as a record to the table, when this has been added it adds the following code to another form and adds it to cboGen:
Code:
If cboGen = "Printer" Then
db.Execute "UPDATE CurrentStock SET Quantity = Quantity - " & _
txtQuantity.Text & "WHERE ID = (next number in auto increment)"
End If
Is this possible? Help appreciated and really needed as i dont know where to start from, (apart from adding a record to the database).
Generate Cd Key Like Code- How To?
Hi!
You know these PassWord or Cd key that are generated
by programs..
In general they look like this : AhOP-6JKL-R492K
Or something...
So, How can we do this in VB (for me vb 4) ???
Generate Events Thru Code
hello ......
can anyone tell me ......... if it is possible to generate a click event thru code .......
i.e ..... i have a treeview control and a command button ....... i have written a long code for the command button click event ...... and the node click event of treeview is somewhat related to command click event .....
so is it possible to generate the command button click event from inside the nodecilck event of treeview
thanx in advance
Generate HTML Code In VB
I would like to generate "dynamic" HTML Code.
I have a given structure with tables etc. and i would like to fill some tables with variables. This should be saved as an html-file.
Is there a function or something which I can use because it's a nuisance to copy the whole html-code into VB.
At the moment it looks like this (snippet)
Code:
<tr>
<td width="253"><b><font face="Courier New, Courier, mono">StringVariable</font></b></td>
<td width="174"><b><font face="Courier New, Courier, mono">StringVariable (Percent)</font></b></td>
<td width="165"><b><font face="Courier New, Courier, mono">StringVariable</font></b></td>
</tr>
Note: StringVariable is a VB-variable
thanks!
Code To Generate Unique ID ?
I have a form where the user enters values into a text-box and these values populate a table in a database.
All very well and good.
However, I have a column in this table called ID and I am wanting a special ID to be generate each time the user fills in a new entry.
It doesn't even have to be a unique ID, just an incriment of 1, 2, 3...
This HAS to be simple, right?
Can I Delete Or Generate VB Code Using A Sub?
Hey,
I have a general question. In the old QBasic days (or even before), the "Kill" command killed entire lines of code, not external files.
Is there a way to edit (by generating/deleting code)the very same function that is executedany code within the projectcode of other projects?
Help Needed.. Generate OMR Code Using VB
Hi All..
Does anyone know how to generate a report which consist of normal textand Optical Marks (OMR). Maybe there have some 3rd party or ocx whichcan solve this question...
TQ..
Code That Generate Combinations Until Row 32767
Please tell me what to add at this VB 6 code to run not only at row 32767
but to row 65536.
'''''''''''''''''''''''''''........................................... .....
Option Explicit
Sub Area_ByClick()
Dim intGame%, intStart%, intActual%, intNumber%
Columns("A:B").ClearContents
intNumber = Application.CountA(Columns(4))
intStart = 1
intActual = 2
Do Until intStart > intNumber - 1
intGame = intGame + 1
Cells(intGame, 1) = Cells(intStart, 4)
Cells(intGame, 2) = Cells(intActual, 4)
If intActual = intNumber Then
intStart = intStart + 1
intActual = intStart + 1
Else
intActual = intActual + 1
End If
Loop
End Sub
''''''''''''''''''''''''''''''''...................................... ....................
''''''''''''''''''''''''''''''''''''.................................. ......
Sub OutputNames()
Range("A1").CurrentRegion.Clear
intDepth = 0
intRow = 0
Set rngNames = Range("ListOfNames")
intNumNames = rngNames.Rows.Count
intNumPlayers = Range("NumberOfPlayers")
intLoopRange = intNumNames - intNumPlayers + 1
Do
Debug.Print intDepth
AnotherLoop (0)
Loop While intDepth > 0
intexpected = Application.Combin(intNumNames, intNumPlayers)
Debug.Print "Found ", intRow, " of ", intexpected, " combinations."
End Sub
'''''''''''''''''''''''''''''''''..................................... .....................................
Sub AnotherLoop(a As Integer)
intDepth = intDepth + 1
ReDim Preserve arr(intDepth)
For arr(intDepth) = a + 1 To Application.Min(a + intLoopRange, intNumNames)
If intDepth = intNumPlayers Then
intRow = intRow + 1
strOutput = Format(intRow, "000") & Space(3)
'OutputCombination
For j = 1 To intNumPlayers
Range("A1").Offset(intRow - 1, j - 1) = rngNames(arr(j))
strOutput = strOutput & arr(j) & Space(3)
Next j
Debug.Print strOutput
Else
AnotherLoop (arr(intDepth))
End If
Next arr(intDepth)
intDepth = intDepth - 1
End Sub
''''''''''''''''''''''''.............................................. ....................
Thank you.
Generate Code From Text File
Is there any way that I can take a text file (used to be a module, converted to a text file) and load it in to a program to have it read as if it were code instead of just strings?
Cant Generate Executable Due To Line Of Code
Hi I am very new to visual basic and am reading through already written programs to get an idea of how things are used. I have found a screen grabber that uses the intel IJl15 file. I have put the file into the system directory. I tried to generate an executable from the screen grabber but it comes up with an error message and sends me to a certain line of code, although if i click run in visual basic the screen grabber runs fine. Unfortunately the version of visual basic i am using is in spanish so i dont understand the error message, but the line of code is
VB Code:
' Create a buffer of sufficient size to hold the image: If cDib.Create(lJPGWidth, lJPGHeight, nChannels) Then' Store DIBWidth: jcprops.DIBWidth = lJPGWidth ' Store DIBHeight: jcprops.DIBHeight = -lJPGHeight ' Store Channels: jcprops.DIBChannels = nChannels
It specifically highlights the .create bit of
VB Code:
If cDib.Create(lJPGWidth, lJPGHeight, nChannels) Then
Anyone got any ideas.
Thanks
Alex
How To Generate A 7 Digit Autonumbered Code?
Hi Guys!
I need some help here...
I am still learning vb. I wana generate a 7 digit code (YY-nnnnn) where YY is the current year and nnnnn is an auto-increment number. I am gona use this as a primary key.
Hope someone can help me with my dilemma.
Thanks a lot!
Generate VB Code From String Values
I have several forms.
Which form is used is determined by a selection that is made.
This I can do with a CASE statement, but I would like to know if there is a way to do this using a string value as indicated below.
EG.
sServ = "WW"
sStyle = "One"
iCount = 500
how can I build the following code dynamically
frmWW.lblOne.Caption = sVal
an example of the case statement code
if sStyle = "One" then
Select Case UCase(sServ)
Case "WW"
frmWW.lblStyleOne.Caption = iCount
Case "WS"
frmWS.lblStyleOne.Caption = iCount
Case "SW"
frmSW.lblStyleOne.Caption = iCount
End Select
End If
if sStyle = "Two" then
Select Case UCase(sServ)
Case "WW"
frmWW.lblStyleTwo.Caption = iCount
Case "WS"
frmWS.lblStyleTwo.Caption = iCount
Case "SW"
frmSW.lblStyleTwo.Caption = iCount
End Select
End If
I have 15 forms and 50 labels per form which I wish to populate in this manner. Not all labels will be populated.
Thanks
Generate Code For A Webbrowser Control
I would like to dynamically create HTML in a program and have it displayed in a webbrowser control in the same program. I would prefer not to have to save it to a .html file and have the webbrowser navigate to it. Any help would be great.
ASCII Code
does anyone know what the ASCII code for spacebar and enter is?
Thanks
ASCII Code
I'm trying to get the application to display the word that the user enters in a text box in ASCII .. but it's only displaying the first letter in the word .. how can I get it to display each character?
Ascii Code
Just looking for the ascii code for the back, forth, up and down arrows if there is any. I can't seem to locate them. any help would be appreciated.
Ascii Code
Do you know which Ascii codes represent the up, down, left and right arrows and also "Tab"? I need them for use with a grid.
<><
Ascii Code
Does Anyone have an Ascii converter(from normalkeyto Ascii) or a chart that I can view?
ASCII Code
Ok I know what function to use and have it show a letter as a number in a label, but how do you get it to show multiple letters as numbers.
Example: user types in the text box "Example"
the label would display : E=number X=number A=Number etc.
also another program im trying to code I need help with as well.
You click the command button and a input box comes up (I know how to code a input box) and the user types a # of words they will use to create a acronym, after that new input boxs come up for the amount they typed.
then those two words will creat a Acronym
example : Two words are Jack Lone, the label will have the first letter of both words displaying JL.
any help will be great thanks.
ASCII Code
can someone show me some code to create the ASCII thing, please
Fix Ascii Code
if KeyAscii <> 13 Then
lblMessage.Visible = True
lblMessage.Caption = "Enter Expires Date:"
end if
if KeyAscii <> 13 Then
lblMessage.Visible = True
lblMessage.Caption = "Enter I.D. Number:"
end if
if KeyAscii <> 13 Then
lblMessage.Visible = True
lblMessage.Caption = "Enter Check Receipt:"
end if
so it will goto the next question
ASCII Code
Does anyone know what the ASCII codes for the function keys are? (i.e. F1, F2, F3 ...) and the codes for Ctrl, Alt, and Shift?
ASCII Code
Alrighty...
I know how to get the ASCII code of a character in VB, but does anyone know how to do it in Java?..
Ascii Code
Sups,
I need to know what is the ascii code of the up and down arrays?
Ascii Code?
Ascii code for bold stick "|" equivalent to null???
note: Not Alt 124, [Bold 124]
ASCII Code
Anyone happen to know the ASCII code for a check mark?
Thanks
Is There An ASCII Code For..
Hi, just wondering if there are ASCII codes for the UP, Left, Right and Down arrows on the keyboard, and if so, what are they?
Thanx
Scott
Ascii Code
does any one have a ascii code chart or just the ascii code for del please someone help
Ascii Code
where can i get asci code characters
of key_press even...i want ascii code of every key on my key board
Anyone Know A Good Flexible Code To Generate A Graph?
For example, if a new item is added with a quantity inputted, the graph for that new item will be generated on another form to view the quantity of that new item.
Any kind of graph will do. (bar graph, line graph..anything...etc)
Ascii Code Into Characters
Hey all.
i am an UBER n00b at this site and to Visual Basic. Currently i am taking a visual basc class at school but that leaves a LOT to be desired. ok here is my delima, don't laugh, its extremely n00bish:
I have a program to take a string and display it in its ascii code. This part was fairly easy but now i want to have the program convert a string of ascii code into characters forming a message. This is the code for the encoding part of my prog:
Private Sub optEncode_Click()
Dim strMessage As String
Dim I As Integer 'index for next loop statement
Dim strChar As String
Dim strAscii As String 'the ascii code to be displayed
Dim intLen As Integer 'number of characters
strMessage = InputBox("Enter message for encoding", "Please Type Message")
intLen = Len(strMessage)
For I = 1 To intLen
strChar = Mid(strMessage, I, 1)
strAscii = strAscii & " " & Asc(strChar)
Next I
lblDisplay.Caption = strAscii
End Sub
Pretty straight forward. i want to use a similar code to "decode" ascii the problem is i don't know how i would distinguish between character codes within the string as some are 2 digit and other 3, etc. Pleaze help this n00b!
|