|
Indeed I did
|
|
|
|
|
How can I use the barcode in my Program?
I had some question about barcode!
In my program how can I print barcode with Standard code39
If you know a free font or component and you test it please introduce me
And how can get the data from barcode reader (such as keyboard, USB, Serial-port) and display in the text box (Please give me a source not component)
|
|
|
|
|
It will depend, but most barcode readers offer an API that returns the code as a string.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|
|
yes, the most barcode writters receive an string and then generate the barcode, then only must send this control to printer, you can draw this control in a printer o another method should it work.
Greetings from Mexico
-----------------------
Cuando salga el sol, no estare aqui...
|
|
|
|
|
Hi,
I have written a word add-in and its working fine.
I needed to know how to get the filename / path of active (opened) document
Thank you!
M. Nauman
|
|
|
|
|
I have written a word add-in and it is working fine.I want to capture the path of the selected document into my application.Please help me.
Thank You.
Salma.
|
|
|
|
|
i want to create runtime controls and want to give functions to those control
how to do that
with regards
Balagurunathan.B
|
|
|
|
|
I suggest you to focuse on how to create and use classes in vb.net.
What a curious mind needs to discover knowledge is noting else than a pin-hole.
|
|
|
|
|
hey my requrement is to create dynamic tabs
i tried to create but only the last button created works not all the buttons in display r working
with regards
Balagurunathan.B
|
|
|
|
|
Why don't you use tab control? Check the toolbox!
How did you create the tabs?
What a curious mind needs to discover knowledge is noting else than a pin-hole.
|
|
|
|
|
even though we create dynamic tabs or buttons how to evoke events like onclick ,....
with regards
Balagurunathan.B
|
|
|
|
|
|
Hai i have migrated the vb code into vb.net.When i was migrating i found that copy memory function cant able to work it seems.
i am using the function
Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (ByRef hpDest As any, ByVal hpSource As any, ByVal nBytes As Integer)
and call the function inside form1.show
Call CopyMemory(arrBarCodeInformation(0), ptrBarCodeInfo, size_Renamed)
i have declared
Public arrBarCodeInformation() As BarCodeInformation
Public Structure BarCodeInformation
Dim tRegionRect As rect
Dim dwBarType As Integer
Dim fOrientation As Single
Dim lDecodeStatus As Integer
Dim lNoOfCharacters As Integer
Dim lpbDecodByteArray As Integer
Dim lReserved As Integer
Dim hReserved As Integer
End Structure
using this i want to copy the memory value from integer value into the structure variable.how can it been done.tell me the syntax are any function to copy memory
|
|
|
|
|
You're not listening. You do NOT need CopyMemory to do this. You need to marshal this structure to your function properly. This is not done the same way it was under VB6.
If you created and instance of this structure in your code and just want to assign a value to one of it's members, then all you have to do is something like this:
arrBarCodeInformation(0).dwBarType = 42
Other than that, you haven't described what your doing with this stuff, nor have you posted any of the code you're trying to convert to show us what you want it to do.
Dave Kreskowiak
Microsoft MVP - Visual Basic
|
|
|
|
|
Hi All,
How do I state where abouts on the page I want a msgbox to appear?
Also is it possible to make it topmost (like the way you can make forms top most).
Thanks in advance
Jaidev
|
|
|
|
|
Popular question This was asked just a few posts down. I believe you can't position the msgbox. You could make your own message box though. All it is is a form. It's little more work to re-invent the wheel but if you want to place it then you'll need to create your own. It will also allow you to make it topmost.
|
|
|
|
|
Hy
I need to read a text file from a server.. i can connect with a ftp 2 that server - how do i do this??. Can anyone help?? - i'm using vb 6
|
|
|
|
|
Before telling you how to do it, have you searched for an answer?
I did a quick search with the terms: vb6 ftp code sample and found a solution on the first page of hits.
Tim
|
|
|
|
|
I am using Background worker class in my application to retrieve the some files in system but filenames are not populated in grid.......
Please Help
tony
|
|
|
|
|
The background worker and the UI run on separate threads. In order to send results to the UI from the backgroundworker you can use the ReportProgress method of the background worker. In the UI you will need to handle this event to add new items to the grid.
Or you can return the results in the RunWorkerCompleted method than have the UI update the grid.
Mike Lasseter
|
|
|
|
|
|
pla help me
i want to put a text box string in arabic or hindi to database-access
in access the string is showing something like unreadable pls help me
thanking u inadvance
basheer
basheer
|
|
|
|
|
Hi
I want to write a realtime application - one window (running in the main thread) will talk to the outside world and get stock prices - then there could be any number of other chart windows each running in their own threads. When a new price comes into the main window I want to raise an event (new price) that all the other windows will pick up and if they are interested in it plot the value. So How do I raise an event that any number of other threads will pick up and process.
Any help greatly appreciated
Thanks
Paul
|
|
|
|
|
I am trying to add a line of text to a log file over HTTPS and after trying lots of different methods I either get a 405 error (method not valid) if I use POST or if I use PUT it simply overwrites the file rather than appending. I am literally pulling my hair out with this. Any help would be much appreciated. My code at the moment is:
Dim client As New System.Net.WebClient()
client.Credentials = New System.Net.NetworkCredential("XXX", "YYY")
client.UploadString("https://sbs.expwconsulting.com/Event generator/Logs/checks.txt", "PUT", "Test")
|
|
|
|
|
Hello,
I am using VB Dot net 2005. in my project i am using datagrid. i filling data grid with this command dgStudentDetail.DataSource = ds.Tables("tblStudentInfo") . i am using Fname Column Name for Father Name. in the grid it is showing column name Fname. How i can change Column Name in Data Grid.
Plz help me for this.
Thanks & Regards
Form :-
Vikash Yadav
|
|
|
|