Tagged Questions
Microsoft's Visual Basic .Net (VB.Net) 2005
2
votes
2answers
416 views
Multithreading a filestream in vb2005
I am trying to build a resource file for a website basically jamming all the images into a compressed file that is then unpacked on the output buffers to the client.
my question is in vb2005 can a ...
1
vote
6answers
832 views
: error C2664: 'strcmp' : cannot convert parameter 2 from 'char' to 'const char *'
i need help about that script.
BOOL Checking(LPCSTR MacID) {
char ClientMacs[18] = { "11:22:33:44:55:66",};
for(int x=0; x < 10; x++) {
if(!strcmp(MacID, ClientMacs[x])) {
...
1
vote
1answer
371 views
Why are controls missing from Me.Controls()
Hey guys. I must be missing something. I am trying to cycle throught the lables on my form but it would appear that I am missing quite a few labels... I have a total of 69 lables on my form and I only ...
1
vote
1answer
32 views
Getting a list of indexes from a text search in vb2005
I am running a index search on a string in a rich textbox, i have a list of keywords which need to be a different color in this textbox. how do i run a search on a string in vb2005 and get a list of ...
0
votes
1answer
198 views
How to solve this error: Could not find file 'Microsoft.Windows.CommonLanguageRuntime, Version 2.0.50727.0'
This question to which I already found the answer is posted here in case of someone else encounters it. I decided to post the Q&A here so that SO has something about this error, since I don't know ...
0
votes
2answers
59 views
Custom formatting including dates
VB2005
In my app I present to the user an option to customize the name of the file that gets produced. The format string the program reads is something like
"yyyyMMdd-%1-%2-%3-%4" which the user can ...
0
votes
3answers
1k views
SharpSSH Progress and Rename
VB2005 and SharpSSH. Using the library to connect to a remote server and copy a file. I have the process working fairly well but have some smaller things which I cant seem to resolve as documentation ...
0
votes
1answer
93 views
VB2005 Transparent Label in Menu area
I've read many articles on how to create transparent labels but it seems to me that my particular case is not covered. Very simply I have a label placed in the upper right part of the form, which in ...
0
votes
1answer
132 views
video compression in vb 2005?
i wanted to ask is there any means i can compress a video file(.avi) to a small size than original.
If yes..how..?
A sample code/tutorial to do so would be of great help
Which API should i ...
0
votes
1answer
105 views
VB 2005/2008 Help Needed - Registry
How do i read, write and delete a registry using VB 2005/2008.
Please give your explanation to your answer. I am really a registry noob...
Thanks.
I can't read any programming language other than vb.
0
votes
2answers
177 views
Spreadsheet from DataTable
In my app, I'm downloading a spreadsheet from FTP, moving the data read from the spreadsheet to a DataTable, and, depending on certain conditions, emailing a new spreadsheet (one that contains certain ...
0
votes
2answers
952 views
Which number cast is a registry Dword in vb?
Which number cast is a registry Dword in vb based on its minimum and max values?
I am trying to build an editor that can read and edit registry dumps
0
votes
4answers
2k views
Creating a webbrowser control in a background thread in backgroundworker
Is it possible to create a WebBrowser control in a background thread in BackgroundWorker?
Private Sub BackgroundWorker1_DoWork(ByVal sender As System.Object, ByVal e As ...
0
votes
1answer
109 views
Converting a downloaded query xml string to a usable xml document in vb2005.net
Converting a downloaded query xml string to a usable xml document in vb2005.net
i would like to convert a image query, found here
...
0
votes
1answer
220 views
In vb2005 how do you simulate a web browser's file download using Net.HttpListener
In vb2005 how do you simulate a web browser's file download using Net.HttpListener?
This current program functions somewhat like a webserver. how when a client from a web browser
asks for a file do i ...
0
votes
5answers
84 views
How do you register a name for a program in the windows run dialog?
How do you register a name for a program in the windows run dialog?
for instance typing in "notepad" and pressing enter runs notpad.exe
"photoshop" in my case runs Photoshop CS3
im using vb2005.net
0
votes
1answer
139 views
Simulating the web Client/web server interaction in a winform using a webbrowser object in vb2005.net
Simulating the web Client/web server interaction in a winform using a webbrowser object in vb2005.net
in short im using the web browser object as a gui for a giant treeview folder list, in the html ...
0
votes
1answer
98 views
Reading a file bug in vb2005?
The way this file works is there is a null buffer, then a user check sum then a byte that gives you the user name letter count, then a byte for how many bytes to skip to the next user and a byte for ...
-2
votes
1answer
43 views
Generate 'Previous' and 'Next' button with dataset
Good day.
I had created two button for the previous and next function. I think my logic is correct and the programming did not have any error but still, i failed to navigate through the data.
My ...