|
hello all,
I have some work with me over the Vb Accelarator's Explorer bar.Well using the earlier written code the explorer bar is initialised once and could be used by changing its visible property. The explorer bar is made on a picture box. The problem is the new explorer bar strip which i have made on the existing one's is not visible when the property is set as true. Please help me out with this.
Thanx in advance
Neema
|
|
|
|
|
You best source of information for using third party control would be whoever wrote the control. It's very unlikely that anyone who has used the control is going to see your post.
|
|
|
|
|
Well thanx for the suggestion but after fighting for the cause of my problem i got the solution.The explorer bar i was making need a fresh container and then it could be pasted to some other location.
|
|
|
|
|
hi all
i want to create one Language Creator in which i type in English word and i get Hindi word as output. Same created in REDIFF BOL V8.0 create HINDI words
some thing like TYPE ENGLISH GET HINDI[^]
can any budy plz help me
Thanks in advance
-- modified at 6:49 Thursday 27th September, 2007
The Stifler
--
Bugs can neither be created nor be removed from software by a developer. They can only be converted from one form to another. The total number of bugs in the software always remain constant.
|
|
|
|
|
Not sure what you're after here. You need a big old database of hindi words and english words they map too. A simple task, but a big one.
Christian Graus - Microsoft MVP - C++
"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 check if program have closed.
I am doing a install list a folder containing programs installations and one list file that is opened in my program. so if you start my program it starts installation file from list, but then i need to start another installation from the list of installations when first installation is done! Is that possible please help...
Do i need to set up timer that check for window or process?
Can it be done with background worker? How?
Thanks
|
|
|
|
|
how about the formclosed or formclosing event could that do what you want??
If my help was helpfull let me know, if not let me know why.
The only way we learn is by making mistaks.
|
|
|
|
|
no form close i need action when process is closed!!! i run an other exe file and when it does all the actions and closes i need my program to continue!!!
Thanks
|
|
|
|
|
|
thanks man but i found this one and works good!!!
Public Sub Ruun(ByVal ProcessPath As String)<br />
Dim objProcess As System.Diagnostics.Process<br />
Try<br />
objProcess = New System.Diagnostics.Process()<br />
objProcess.StartInfo.FileName = ProcessPath<br />
objProcess.StartInfo.WindowStyle = ProcessWindowStyle.Normal<br />
objProcess.Start()<br />
<br />
'Wait until the process passes back an exit code <br />
objProcess.WaitForExit()<br />
<br />
'Free resources associated with this process<br />
objProcess.Close()<br />
Catch<br />
MessageBox.Show("Could not start process " & ProcessPath, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1)<br />
End Try<br />
End Sub
anyway thanks!!!
|
|
|
|
|
HII have a column whose datatype is medium time (i.e hh:mm AM/PM) and i want to retireve taht into my datagrid...
its coming with the date ....
can some on ehelp how i must set the date formatting expression so that the time somes as hh:mm AM/PM
thank u
hepsy
|
|
|
|
|
The format string you put in your column would be "hh:mm tt" .
|
|
|
|
|
thanks dave ..
but i get an error......
for the time to appear as MM/dd/yyyy i wrote the bound column in the datagrid as
Text='<%# DataBinder.Eval(Container, "DataItem.event_date", "{0:MM/dd/yyyy}") %>'
how should i write so that i get the tome in hh:mm AM/PM format...
my datatype in the table is as time or medium time but in the datagrid it is coming as whole datetime....
can u please help...........
thank u
hepsy
|
|
|
|
|
Hi thank u ..
i got it
i wrote it like this
"{0:hh:mm tt}" and its working perfectly
thank u
hepsy
|
|
|
|
|
plz help me in designing a sample dictionary in my own language.
Is it a simple database project where the laxicon file is the data base of words.or any thing else?
|
|
|
|
|
I think I had this assignment at uni a long time ago...
Start with a collection of words. Get someone to enter a word. Check your collection - if the word isn't there, prompt to add the word to the dictionary. If the word is there, let them know it's found. Simple.
-------------------------------------------
Don't walk in front of me, I may not follow;
Don't walk behind me, I may not lead;
Just bugger off and leave me alone!!
|
|
|
|
|
ThanX for ur responce.
can you tell me,how i'll develop the collection of words.Is this a separate file.As in data base project the data base file(eg in MS Access).
how i'll make that file.i mean what i need to develop that file.
please help me.
|
|
|
|
|
Hello,
I have created one Image Uploader application which uploads jpg images to specified server. What i am doing is Reading the File Content in binary and add http header then send the file content and http header throgh http request. currently i am using Winsock control to send the request. It works fine in English OS(XP) but when try to upload from chinese OS(XP) it upload the image and shows that upload sucess but the uploaded image is get currupted, its file size is reduced and when i try to see the property of the uploaded image, it shows that the Type and Size property are missing. I am using MIME type as "image/jpeg" in http header. i also try to send the request through Internet Explorer Control, but problem remain same. can anybody suggest what is the problem? is problem in reading file or anything else???
I try to use charset as utf-8 in http header, also try to send data in byte array instead of string but still problem remain same..
|
|
|
|
|
Without seeing the code you're using to put this upload together, it's impossible to tell you anything about what might be wrong.
If this is an ASP.NET app, why aren't you using the FileUpload control??
|
|
|
|
|
Hello guyz,
anyone know any safe way to protect our source code from hacker?
hacker can convert EXE file to its source code files it make me worry .
anyone know about it?
....
Can't say anything
.....
|
|
|
|
|
Thats a great wonder.. how to convert EXE/DLL file into source code?
I have never listen that it is possible to convert machine code into human language.
|
|
|
|
|
There are disassemblers for Managed Code. I think he is asking regarding that. Isn't it?
|
|
|
|
|
Good question.
My first answer would be a question - why would anyone want to convert your exe/dll code given how difficult this is to do(see below)?
The answer is yes it is possible to decode an exe/dll from .NET
This is because .NET is machine independent.
What this means is that when you compile your code the exe produced is in CIL format (Common intermediate language).
When the code is run the exe is compiled properly for the machine so that it runs optimally on that particular machine. This is called JIT (just in time compilation)and is performed by the jitter - so I guess having lots of programs running wil give your computer the jitters
The .Net framework basically compiles a second time at runtime even though you thought you had already compiled the code.
There is a program which can decode an exe - however I imagine the result is rather difficult to read.
Strangely enough I was reading about this last night so it is still fresh on my mind.
I hope this is of help
You always pass failure on the way to success.
|
|
|
|
|
In the real world, this is very unlikely to happen IMO. You can buy an obsfucator if you want.
Christian Graus - Microsoft MVP - C++
"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 have develop an application in vb2005. some part of my application contain numeric up down control. i want to prevent the user from typing in that control and just allow them to use the up down arrow only. I try to set the code in keypress event e.handle=true but the user can use the delete key to delete value. Finally what i want is totally prevent the user from typing anything in this numeric up down control. Thank in advance!!!
|
|
|
|