|
I dont have the code right now but here is the suggestion for Googling. You cannot look at the length of the string itself you must look at the total character length of the values and keep the widest value and set that width value to the width of the combobox but add a little extra to include the width of the drop down arrow.
Cleako
|
|
|
|
|
Hi all
I need to write into word document through VB.NET. The data is supposed to come from the textbox created by me using the com addins. The text box is appears in the command bar area. The code will pick the data from textbox & put in the new word document.
i am able to write the data in the new document but not in the same document
Can anyone of you tell me how to write the content of textboxe in word document.
Thanks in Advance
Prashant Malik
|
|
|
|
|
plz give me ans that how to insert binary data into database by using vb.net?
|
|
|
|
|
Have some patience! It has been only 7 minutes since your previous plea for help and 16 minutes since your original request. People who answer here do so to help the community. If you need help right now then I suggest you pay for a support service. Otherwise you wait for the community to respond.
|
|
|
|
|
Deleting your other messages, especially as they have a response, is considered rude. It also disjoins the answer from the question. Should anyone have a similar problem and are searching the forum it will not help them find the answer.
lopashree wrote: plz give me ans that how to insert binary data into database by using vb.net?
The answer to your question is here[^]
|
|
|
|
|
hi,
I have a problem with my VB.NET project.
I cannot open the properties window of the project anymore while it was working before.
And if I try to open a form with the Visual Basic Form Editor, it gives me the error:
"There is no editor available for .vb.
Make sure the application for the file type (.vb) is installed"
and i cannot open also the file .resx:
"Make sure the application for the file type (.resx) is installed"
Any help?
Regards,
|
|
|
|
|
I think you registration file type for .vb and .resx file is deleted
Please check from Win Explorer - Tools - Folder Options - File Types
Search for vb and resx file extensions, if not exist create new for
vb and resx file extensions and related it with correct application
|
|
|
|
|
well thanks for your suggestion, but I 've already reinstalled the framework and everything's back to normal.
|
|
|
|
|
hi,
I have a problem with my VB.NET project.
I cannot open the properties window of the project anymore while it was working before.
And if I try to open a form with the Visual Basic Form Editor, it gives me the error:
"There is no editor available for <filename>.vb.
Make sure the application for the file type (.vb) is installed"
and i cannot open also the file .resx:
"Make sure the application for the file type (.resx) is installed"
Any help?
Regards,
|
|
|
|
|
Did you have to post this twice?
|
|
|
|
|
no , i did it by mistake.
does this bother you?
|
|
|
|
|
wrote: how to insert binary data into database by using vb.net?
theCommand.CommandText = "INSERT INTO MyTable(binaryColumn) VALUES (@binaryData)"
theCommand.Parameters.Add("@binaryData", byteArray)
theCommand.ExecuteNonQuery()
|
|
|
|
|
thanq so much.
1. can i insert binary data into MSACCESS by using vb.net?if yes, then how?
2.wht is this "byteArray"?where we declare array?
bt cud u xplain me properly.
-- modified at 22:25 Monday 19th February, 2007
|
|
|
|
|
Hi,
I want to convert an audio file to text format. I donno what kind of control or API or tool to use. Can any one help me?
Rgds,
Surendran
|
|
|
|
|
There may be an MS SDK to do this, but you'd have to look for it, and it won't work all that well.
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 )
|
|
|
|
|
Hi,
I am a newbie to vb.net.
I am trying to build a program that crawls through google and gets me the top 100 links (first 2 pages of the search results) for a few searches. I have put all the keywords in a file.
I am able to retrieve the keywords in to my vb form.
I could also navigate through google for a relative search word.
but the loop doesn't work.
start loop with "keyword"
Step 1: navigate 2 google using the "keyword"
step 2: after the document loads, retrieve the first 50 links
step 3: click the "next page" link
step 4: after the document loads, retrieve the next 50 links
end loop
this works if I have only 1 keyword but if I have multiple "keywords" that need to be searched one after the other, I can get the links for the last keyword only.
How can I make the loop wait till all the operations of the previous loop in the webbrowser are complete.
Sorry for my bad english, as I am not an american.
Please help me.
Thanks in Advance,
Marshall
|
|
|
|
|
marshall12345 wrote: Sorry for my bad english, as I am not an american.
LOL - Americans all have bad English.
marshall12345 wrote: How can I make the loop wait till all the operations of the previous loop in the webbrowser are complete.
The web browser fires an event when the URL changes, amongst others. You should handle your processing there, so you can respond to each page as it loads, and then load the next one.
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 )
|
|
|
|
|
Write a program that allows the user to draw free hand" images with the mouse
Hlalele
|
|
|
|
|
I have done. Sounds like now you need to. Is 'Multimedia and Graphics' the name of the class that assigned this homework ? If you're not willing to try it yourself, I recommend quitting now, and making room in the education system for someone who stands a chance of success.
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 )
|
|
|
|
|
when i tried to do like this
Start .NET Framework Configuration Management Console (Start -> Settings -> Control Panel -> Administrative Tools -> Microsoft .NET Framework Configuration).
Then select "Assembly Cache" and click "Add an Assembly to the Assembly Cache" to add all DLLs into GAC.
when i am trying to add my dll file there is a message like this is coming
U must have a stongname(name,version and public key).for that what i want to do? how can i add my component to gac
|
|
|
|
|
You need to make sure your dll is strongly named, just like the error message said.
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 )
|
|
|
|
|
How can i make sure that dll is strongly named or how can i give a strong name to dll
|
|
|
|
|
Try this[^]
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 )
|
|
|
|
|
Hi,
I had drawn some shapes in panel within in form. I want to make those shapes in panel as .jpg image and save it c:/.
Is there any way to make the drawing shapes in panel as image.
Thanks in advance.
Be simple and Be sample.
|
|
|
|
|
Draw them onto a bitmap instead of onto the panel. Show the bitmap in your program to view it, and call the Save method to save it.
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 )
|
|
|
|