Search:

Type: Posts; User: ADQUSIT

Page 1 of 13 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    252

    Re: How to unhide the deleted files by WinRAR

    How. :(
  2. Replies
    3
    Views
    252

    How to unhide the deleted files by WinRAR

    Hi. My friend came to me with a query that he scanned his Flash Drive with AVAST AntiVirus, which detected some malicious. He just marked all the files with deleted option and press the continue...
  3. Re: What does (ByVal sender As System.Object, ByVal e As System.EventArgs) mean?

    This is adorable link dbasnett.

    Its classical. I got so many things from this, but would you please guide me for one thing. It is written there that:


    Where the sender sends the notification?...
  4. Re: What does (ByVal sender As System.Object, ByVal e As System.EventArgs) mean?

    Didn't understand it. :(.
  5. Re: What does (ByVal sender As System.Object, ByVal e As System.EventArgs) mean?

    very well done shaggy.

    Please explain the same way what is 'e' as system.eventArgs means?
  6. Re: What does (ByVal sender As System.Object, ByVal e As System.EventArgs) mean?

    I'm sorry to say, that i did not understand that exact meaning of his wordings. I tried to compare the code with his idea, but couldn't pick it. Please guide me that what is sender as System.Object...
  7. Re: What does (ByVal sender As System.Object, ByVal e As System.EventArgs) mean?

    Would you please show me that what does it mean?
  8. VS 2008 How to handle the user status in application

    Hi. i have a table Login Info which has the following fields: Lets say:

    FK
    UserID, LoginID, LoginTime, Status
    Composite PK

    Status is showing the current status of user whether he is...
  9. VS 2008 Re: why i received this error in visual studio 2008

    Okay. then I'm gonna mark the thread resolved
  10. VS 2008 Re: why i received this error in visual studio 2008

    What you think of that this might be due to improper shut down of VS or computer?
  11. VS 2008 Re: why i received this error in visual studio 2008

    Does my system need overhauling? :)
  12. VS 2008 Re: why i received this error in visual studio 2008

    Yeah, so far, its solved. But i want to know that why i had this problem?
  13. VS 2008 Re: why i received this error in visual studio 2008

    No. not after again.
  14. VS 2008 [RESOLVED] why i received this error in visual studio 2008

    Hi. yesterday i was working in my project, suddenly i received a message to close the VS 2008. When i press the close button on that message then i received this message.

    99287

    Please tell me...
  15. VS 2008 Re: How to shift from straight query to parametrized one at module level

    Hello Paul.

    You have define the fields of single table in this particular function. But lets say if i have several tables, so how this single function will fulfill my need. Even if i make the same...
  16. VS 2008 Re: How to shift from straight query to parametrized one at module level

    I will try it and will feed back. Thank you sir.
  17. VS 2008 Re: How to shift from straight query to parametrized one at module level

    Table name = ProductBasicInfo

    ProdId = int, ProdName = varchar, Description = varchar, Manufacturer = varchar
  18. VS 2008 Re: How to shift from straight query to parametrized one at module level

    @.PAUL

    I"m little confuse here:

    Private Function getRecords(ByVal tableName As String, ByVal field1 As String, ByVal field2 As String, ByVal field3 As String) As DataTable
    Dim cmd As...
  19. VS 2008 Re: How to shift from straight query to parametrized one at module level

    Hi Kebo.


    cmd.CommandText = "SELECT * FROM <tableName> WHERE Name=@name and City=@city"

    In this line of code, you have particularized 2 fields, received to the function. But in my case,...
  20. VS 2008 Re: How to shift from straight query to parametrized one at module level

    Hooo. This is far complex. Its all gone over my head.



    Would you please guide me that what is better alternative way, and what is DAL?
  21. VS 2008 How to shift from straight query to parametrized one at module level

    Hi. I've been using straight query, which had sql injection problem, so i shift over to parametrized one, which i learn in the same forum here.

    Now i want to use the queries at module level, but...
  22. Replies
    18
    Views
    321

    VS 2008 Re: How to handle queries for each form

    This is my module code:

    This is my connection code:

    Public Function Conn()
    Try
    If cnSql.State = ConnectionState.Closed Then
    cnSql.Open()
    End...
  23. Replies
    18
    Views
    321

    VS 2008 Re: How to handle queries for each form

    I'm using parametrized queries on my forms and have all common objects like sqlconnection, dataAdapter and DataSet.

    What i want now is that i pass the parameters to module, where all the process...
  24. VS 2008 Re: Message after converting VS 2005 Project into VS 2008

    Oh tg, You are so outstanding.
    Thank you john, for your kind participation.
  25. VS 2008 Re: Message after converting VS 2005 Project into VS 2008

    In the image above, It is written that Converted 1.

    Is it the same VbProj?
  26. VS 2008 Re: Message after converting VS 2005 Project into VS 2008

    Yes its running normally so far.

    Do I consider it now that its converted successfully and files did not convert, were not needing to be converted?
  27. Replies
    18
    Views
    321

    VS 2008 Re: How to handle queries for each form

    yes its a way, about which i want to ask opinion, that which way is better to use?

    @ TechGnome
    I didn't understand it:
  28. Replies
    18
    Views
    321

    VS 2008 Re: How to handle queries for each form

    Didn't pick it still?
  29. Replies
    18
    Views
    321

    VS 2008 Re: How to handle queries for each form

    N tier means?
  30. Replies
    18
    Views
    321

    VS 2008 Re: How to handle queries for each form

    This time i mean for a 1 PC Stand Alone application.
  31. VS 2008 Message after converting VS 2005 Project into VS 2008

    Hi. I have a project, created in Visual Studio 2005 (in vb.net). I converted it into VS 2008, by the default wizard. After converting, a message appeared that your project is successfully converted,...
  32. Re: Why Int DataType field is holding the string value without any error

    @ Jggtz and FunkyDexter
    I updated my Question, Post # 1.


    I didn't use any such converting in my code. So does it mean that SQL Server does this automatically?
  33. Replies
    18
    Views
    321

    VS 2008 Re: How to handle queries for each form

    I mean that all the queries are working on same form, not in a separate module. Like programmers use a module and put all the queries there and just send them parameters from all forms. So which way...
  34. Why Int DataType field is holding the string value without any error

    Hi. I have a Table in SQL Server 2005 Standard, in which StID is a Primary Key, set to int DataType. When I insert the data from Front End using VB.Net, so If I insert the String Value deliberately...
  35. Replies
    18
    Views
    321

    VS 2008 How to handle queries for each form

    Hi. I'm using Insert, Update and delete queries on each form, according to the need of form. But is it a right way or I should adapt some other way? Please guide me. I want to improve my development...
  36. Replies
    8
    Views
    259

    Re: What is wrong with this like query

    very nice explanation SH.

    This is the code which has the exception. When i click the product in DGV, so after clicking on that product the following code gets exception.


    Private Sub...
  37. Replies
    8
    Views
    259

    Re: What is wrong with this like query

    I got an error message that:


    When i click on the product in DGV, which has to be loaded into the textbox on the main form, from where this helping form is called. So during this loading it gives...
  38. Replies
    8
    Views
    259

    Re: What is wrong with this like query

    I am clearing DataSet like this:

    This is button click event code:



    Try
    If ComboBox1.Text = "" Then
    MessageBox.Show("At least one value must be mention in...
  39. Re: How to display the last inserted records in crystal report

    So, My project is completed. Do you know that how to attach the Crystal Report to Setup File.
  40. Re: How to display the last inserted records in crystal report

    This is my insert button code on my SaleInfo Form.

    Try

    If dgvSales.Rows.Count <= 0 Then
    MessageBox.Show("At Least One record must be available in Data Viewer",...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4