Search:

Type: Posts; User: AceDuk

Page 1 of 12 1 2 3 4

Search: Search took 0.09 seconds.

  1. VS 2017 Re: iTextSharp not making new page when content is Longer/Bigger

    i thought that have simple way haha :D
    Thanks
  2. VS 2017 Re: iTextSharp not making new page when content is Longer/Bigger

    i thought that have simple way haha :D
    Thanks
  3. VS 2017 iTextSharp not making new page when content is Longer/Bigger

    If the panel have bigger height than A4 Height it's keeps cutting and everytime is just one page? How can i make contents continue on next page?
    Private Sub button1_Click(ByVal sender As Object,...
  4. VS 2010 Re: [RESOLVED] Location of PictureBox after TextBox text

    thank you i figured out :D
  5. VS 2010 [RESOLVED] Location of PictureBox after TextBox text

    Is there anyway to locate PictureBox after TextBox Text - (string)
  6. Replies
    18
    Views
    2,895

    VS 2010 Re: Datagridview Refresh

    Dim selRow As Integer
    Dim selCol As Integer
    Button Click Event:

    If DataGridView1.SelectedCells().Count > 0 Then
    selRow =...
  7. Replies
    18
    Views
    2,895

    VS 2010 Re: Datagridview Refresh

    So the word "selected" how i understand in your case means selected row
    Now you sad "it goes to 1" - what goes to 1? did it select first row in your DGV? if yes then thats why i give you that code...
  8. Replies
    18
    Views
    2,895

    VS 2010 Re: Datagridview Refresh

    how i understand you talk about selection not saving data somewhere..
  9. Replies
    18
    Views
    2,895

    VS 2010 Re: Datagridview Refresh

    'Clear the selection.
    DataGridView1.ClearSelection()
    'Scroll to the last row.
    DataGridView1.FirstDisplayedScrollingRowIndex = DataGridView1.RowCount - 1
    'Select the last row....
  10. Replies
    12
    Views
    2,895

    Re: Storing Data From List To Another Form VS2008

    for me it's working ok
    you sad that you have a blank listbox, maybe your list is empty.. we don't know your code where you have Declarated your list, try like this:

    Dim list As New List(Of...
  11. VS 2010 Re: I can't get picture from access to picture box

    here:
    PictureBox1.Image = Image.FromStream(productImageStream)
    With error code: Parameter is not valid.

    With using this query:
    "Select * from Users where ID = @id"

    Of course that i don't...
  12. VS 2010 Re: I can't get picture from access to picture box

    still the same problem even if i put column in brackets like you sad the problem is still here the query i'm sure that works ok
    problem is like this thread...
  13. VS 2010 Re: I can't get picture from access to picture box

    If i use this query
    "Select * from Users where ID = @id" then variable productImageByte is nothing
    If i use this query
    "Select Image from Users Where ID = @id" i get error:
    Parameter is not...
  14. VS 2010 Re: I can't get picture from access to picture box

    if you have time take a look:
  15. VS 2010 Re: I can't get picture from access to picture box

    In simple words i have one form, on that form i have one button and one picturebox, and the code is in button click event, this is strange problem i searched a lot of examples in stackoverflow and...
  16. VS 2010 Re: I can't get picture from access to picture box

    Yes every line of code is executed if i continue to step throught my code.
    Im not getting any exception so everything is successful but picturebox is still empty
  17. VS 2010 Re: I can't get picture from access to picture box

    If i put breakpoint at this line: productImageByte = TryCast(cmd.ExecuteScalar, Byte())
    and click step into to next line and look in autos i see: productImageByte {Length=216545} Byte()
    Now...
  18. VS 2010 Re: I can't get picture from access to picture box

    I tried with OLE Object but i can't see option in access to insert image, i'm not limited to use Attachment column that's because i can't see any other way for images in access and that's the only...
  19. Re: How to validate data on datagridview to prevent duplicate

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim Exists As Boolean = False
    For Each item As DataGridViewRow In...
  20. Replies
    12
    Views
    2,895

    Re: Storing Data From List To Another Form VS2008

    If you mean ListBox

    Form2.ListBox1.Items.AddRange(ListBox1.Items)
  21. VS 2010 Re: I can't get picture from access to picture box

    if i change query like this
    "Select Image from Users Where ID = @id"
    it's still the same problem
    even if i change like this:
    "Select Image from Users"

    yes..
  22. VS 2010 Re: I can't get picture from access to picture box

    no..
    if i put breakpoint here then it gets hit:
    If productImageByte IsNot Nothing Then
    hmm.. because with where clause i finding which row in database contain a picture
    yes you're right, my...
  23. VS 2010 [RESOLVED] I can't get picture from access to picture box

    Why i can't get picture in picturebox from access here is my code i must say that is without error but i can't see the image

    Dim productImageByte As Byte()
    Try
    ...
  24. VS 2010 Re: DGV DoubleClick event is raised no matter where i click

    ok i found some fix and it's work ok. thanks for reading my thread

    Private Sub DataGridView1_CellDoubleClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs)...
  25. VS 2010 [RESOLVED] DGV DoubleClick event is raised no matter where i click

    So my problem is no matter if i click like Picture1 or Picture2 DataGridView Double Click Event is raised
    Picture1
    149285
    Picture2
    149287
    Also here is my code:
    Private Sub...
  26. VS 2017 Re: Difference between Null, Nothing and ""

    Dim s As String = vbNull
    No object exists, but the variable s that references a string object does exist, but it references nothing.

    Dim s As String = Nothing
    What do you have? You have a...
  27. Re: How To Get Labels Show Data Fr Db When I Click On Listview Item VS08

    labelID.Text = ListView1.SelectedItems(0).SubItems(0).Text 'This is selected item
    txtUsername.Text = ListView1.SelectedItems(0).SubItems(1).Text
    txtPassword.Text =...
  28. Re: How to use numeriupdown to control another form label size and location ?

    Hi
    Can you explain little bit more about what you want to happen with numericupdown?
  29. Replies
    14
    Views
    1,566

    VS 2010 Re: Filtering highest value from entered one

    change into this
    dataadapter.Fill(dtb)
  30. Replies
    14
    Views
    1,566

    VS 2010 Re: Filtering highest value from entered one

    maybe he should get rid of some not important code
    Imports System.Data.OleDb
    Public Class Form1

    Dim con As New OleDbConnection("Provider=MICROSOFT.ACE.OLEDB.12.0; Data...
  31. Replies
    8
    Views
    1,240

    VS 2012 Re: How is job market in this field?

    Seems too good for me haha :D
    I also think that C# is more used and it have more money in it.
    So i don't think that in VB.NET is too much hard competition
    But if you know VB.NET im sure that it...
  32. Replies
    8
    Views
    1,240

    VS 2012 Re: How is job market in this field?

    With C# or VB.NET?
  33. Replies
    10
    Views
    1,346

    VS 2010 Re: Which queries is looks better?

    Ok thanks for help
  34. Replies
    10
    Views
    1,346

    VS 2010 Re: Which queries is looks better?

    so if one program use that database it's better my suggestion (With Module connection)
    also your suggest is look good if i delete module - maybe i should use your suggestion because i avoid...
  35. Replies
    10
    Views
    1,346

    VS 2010 Re: Which queries is looks better?

    so you suggest me to get rid of Module, and how you say: get one, use it, get rid of it, all as fast as you can.
  36. Replies
    10
    Views
    1,346

    VS 2010 Re: Which queries is looks better?

    I forgot to say that i always use connection string in module
    Imports System.Data.OleDb
    Module Module1
    Public con As New OleDbConnection("Provider=MICROSOFT.ACE.OLEDB.12.0; Data...
  37. Replies
    10
    Views
    1,346

    VS 2010 Re: Which queries is looks better?

    how i understand you say me to remove con.open, con.close?
    If i remove that lines of code i always get errors
  38. Replies
    10
    Views
    1,346

    VS 2010 [RESOLVED] Which queries is looks better?

    1.
    'Insert
    Try
    Dim strSql As String = "INSERT INTO Users ([Username], [Password]) VALUES (@Username,@Password)"
    con.Open()
    ...
  39. VS 2010 Re: Enable NUpDown after filling all textboxes and problem with Re-Enabling

    Nevermind :D i fix with hidding up button with panel :D Thanks for reading :)
  40. VS 2010 [RESOLVED] Enable NUpDown after filling all textboxes and problem with Re-Enabling

    im trying to do this
    2 Textboxes - in each TextBox Change Event i have code like this
    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
Results 1 to 40 of 466
Page 1 of 12 1 2 3 4



Click Here to Expand Forum to Full Width