Thanks Chris!
A.Emamjomeh
Thanks Chris!
A.Emamjomeh
ٌWell, Sorry. I didn't mean to be offensive. Just thought maybe they ignore it if I don't remind them.
A.Emamjomeh
Hello. Please check why I do not receive points for my published article[^] Thanks.
A.Emamjomeh
Thanks Chris, I guessed so.
A.Emamjomeh
Hello, I know you might be busy with so many queries, but please check why I do not receive point for my recently published article. Is this a bug or it has other reasons?
A.Emamjomeh
1. I've posted an article and I don't receive any points for it. 2. It's viewed more than 1000 times but nobody has voted for it. Maybe the viewers had no idea what the article is about, anyway I'm delighted with the average of 5 :D 3. The download rate also seems wrong as my points due to download is 19 and in my article page it says it's downloaded 31 times. Maybe you don't count downloads from same user. I don't know.
A.Emamjomeh
Hi, I've recently published this article but it has not added anything to my points. I mean that 100 point for article is not added.
A.Emamjomeh
Thanks a lot Good Job!
A.E.Kubanani
I do appreciate for your answer My article is incomplete technically. that's true.Dear friend, I do not like to bother you in CodeProject. I feel it just takes about 5 minutes to be edited with editors not experts. but two suggestions: 1.If you answered me : "we can not accept such an article" this was more helpfull for me because if so I knew what to do next. I wish you had a team that checkes the articles only for being acceptable or not and answers instantly. 2.Editing articles on CodeProject website is time consuming and difficult.why dont you develop a free software for editing articles in CodeProject format? Using such software user logs on to the website and easily edits his/her articles.
A.E.Kubanani
Hi I sent an article to CodeProject.Com yesterday. although the article is not completed yet but I expected to see my article in http://www.codeproject.com/KB/vb/[^] but I couldnt find my article there. the article is visible only for me and no one else can read it. does it mean that my article is not accepted by the editors?
A.E.Kubanani
Hi Im sorry. I know that this subject does not belong to this forum but I asked this question also in suggestions and saw no response. I sent an article to codeproject about 2 weaks ago. I dont know why this article is still unedited.If this article[^]"> has fatal bugs or doesnt meet the CodeProject expected quality why people there dont inform me via e-mail? they seem too busy!
A.E.Kubanani
Hi I sent an article to you about 2 weaks ago. I dont know why this article is still unedited. If this article[^] has fatal bugs or doesnt meet the CodeProject expected quality why dont you mail and inform me?
A.E.Kubanani
modified on Wednesday, August 20, 2008 2:29 PM
Hi i wrote a function in MATLAB and made a DotNet dll using deploy tool of MATLAB. I imported this dll in my DotNet application and it works but my question is: is this necessary to have MATLAB installed on the pc or not. i want to publish my application but some one told me that this needs MATLAB on the pc!
A.E.K
modified on Wednesday, April 30, 2008 8:04 AM
Search in google
A.E.K
you have to search in google i think:laugh:
A.E.K
lots of ways... one of them is to get the length of the text with len function (vb6 and vb.net support) if the legnth was equal to 11 so it calls the function.
A.E.K
i think we have a property called Cancel in the event of form_close so you have to do this to prevent closing window
e.cancel=true
A.E.K
you have to use API mouse_event to simulate a mouse click.search for it
A.E.K
what are you talking about Dave?
A.E.K
make the class below.run the program and add the control to your project.
Public Class MyDataGridView
Inherits DataGridView
Protected Overrides Sub OnKeyDown(ByVal e As System.Windows.Forms.KeyEventArgs)
If e.KeyCode = Keys.Enter Then
Dim j As New System.Windows.Forms.KeyEventArgs(Keys.Tab)
MyBase.OnKeyDown(j)
Else
MyBase.OnKeyDown(e)
End If
End Sub
End Class
A.E.K