Search:

Type: Posts; User: nacho2

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    903

    Adding empty folder into App Folder

    Hi, this used to work fine but it doesn't anymore.

    I've added an empty folder into the Application Folder (I'm using the deployment tool that comes with VS.net) and when I install the program the...
  2. Replies
    2
    Views
    594

    Re: mdi parents and childs

    My problem is that sometimes my windows have a fixed size because I don't want them to be as big as they would be if maximized and then when I open them they still try to maximize and end up looking...
  3. Replies
    2
    Views
    594

    mdi parents and childs

    Hi everyone,

    I got a problem with mdi parents and childs. I show a window this way:
    Dim childWindow1 As New windowClass1
    window.mdiparent=me
    window.show()


    It works fine unless there is...
  4. Replies
    3
    Views
    836

    Re: how to distribute program

    sorry, this is the correct one:

    http://cislab.moorpark.cc.ca.us/gcampbell/advVB10-NET.htm
  5. Replies
    3
    Views
    836

    Re: how to distribute program

    Hi!

    Have a look at this: http://cislab.moorpark.cc.ca.us/gca...advVB10-NET.htm

    I think it gives you the option to create the installation package including the .net framework (but then it is a...
  6. Replies
    3
    Views
    9,146

    Re: Closing form using escape key

    Alright, great linking the close button woks great, thanks!
  7. Replies
    3
    Views
    9,146

    Closing form using escape key

    Hi!

    I need the key escape to close the form that is being used at the moment. I've used keypressed property = key.escape. The problem is that I got a main form which is a parent of the rest and...
  8. Replies
    6
    Views
    852

    Re: accessing vars from different form

    ok got it, i used vars and functions as public shared and that solved my problem.
  9. Replies
    6
    Views
    852

    Re: accessing vars from different form

    Can I handle an event of newform from firstform?

    instead of this:

    Private Sub firstform_Closed(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.closed

    writing something...
  10. Replies
    6
    Views
    852

    Re: accessing vars from different form

    Don't quiet get it!
    :ehh:

    I got a form which opens when I execute the application, lets call it firstfirstform, and it has the following code:

    Public firstform as formclass2 = new...
  11. Replies
    6
    Views
    852

    Re: accessing vars from different form

    In the form where firstform opens from instead of writing:

    Dim firstform as formclass2 = new formclass2

    I did:

    Public firstform... same thing

    The most difficult thing about this problem I...
  12. Replies
    6
    Views
    852

    accessing vars from different form

    Hi guys, going crazy with this:

    When I want to open a new form I do something like:

    Dim newform as fromclass1 = new formclass1
    newform.show()

    if I want to change a textbox in newform I can...
  13. Replies
    3
    Views
    1,021

    Re: Autocomplete in combobox

    alright, great thanks!! I'll have a look. I don't understand how come that things so widely use in windows applications aren't already implemented in vb.

    Thanks lots!
  14. Replies
    3
    Views
    1,021

    Autocomplete in combobox

    Hi, I'm trying to make the same thing the addres text box of the internet explorer does. This is while you type it shows you what entries are like the one you are typing.

    Any ideas? Somebody said...
  15. Thread: Arrays

    by nacho2
    Replies
    2
    Views
    730

    Re: Arrays

    alright thanks.
  16. Thread: Arrays

    by nacho2
    Replies
    2
    Views
    730

    Arrays

    Hi,

    I need to use an array such as

    Dim array() as string

    later on if I do:

    array(1)="john"
  17. Replies
    3
    Views
    813

    Re: Automatic drowdownlist

    Any ideas on how to use the autocomplete?

    Thanks in advance!
  18. Replies
    3
    Views
    813

    Re: Automatic drowdownlist

    How do I get the autocomplete attribute to work? I've been checking the documentation but got no help.
  19. Replies
    3
    Views
    813

    Automatic drowdownlist

    Hi, I'm trying to make the same thing the addres text box of the internet explorer does. This is while you type it shows you what entries are like the one you are typing.

    Any ideas?
  20. Replies
    1
    Views
    634

    Image during app startup

    Hi,

    Does anyone know how to have an image displayed while my application is starting up, just the same as programs like Word, Acrobat Reader...

    I thought of using a form or a user control...
  21. Thread: Copying files

    by nacho2
    Replies
    2
    Views
    747

    Re: Copying files

    Alright, thanks again. I really appreciate.

    nacho
  22. Thread: Copying files

    by nacho2
    Replies
    2
    Views
    747

    Copying files

    Hi I want the user to choose a file and then that chosen file to be copied to a different folder. I've found info on how to use a OpenDialogFile but nothing on how to copy files.

    thanks
  23. Replies
    2
    Views
    1,356

    Re: Installing procedure

    alright thanks again.
  24. Replies
    0
    Views
    844

    Installing procedure 2

    Hi, i already posted this in vb.net but guess this is the correct place.

    I need to install my .exe for it needs certain files and folders around to work. How can I do that? Got no ideas, and books...
  25. Replies
    2
    Views
    1,356

    Installing procedure

    Hi everybody,

    I got my .exe ready but it needs to have a certain file and folder right next to it or it won't work, so I guess it would have to have an installation program that sets everything...
  26. Thread: Trying again!!

    by nacho2
    Replies
    8
    Views
    1,338

    Re: Trying again!!

    Thanks Jorge,

    I already figured out that there was no predefined function to get the row index so I wrote my own, which looks a lot like yours.

    I really appreaciate your help, thank you very...
  27. Replies
    2
    Views
    667

    Null value for variables

    Hey I'm trying to check if a variable has a value assigned or not.

    Dim var as Integer

    If var=Null then
    ...
    else
    ...
    end if
  28. Replies
    1
    Views
    625

    Getting Row index from database

    Hi everyone,

    I got my dataset filled. It is called Dataset1, where there is a table called table1 (now guess the name of a row in that table! :p )

    Now I want to change a row of the table in...
  29. Replies
    12
    Views
    1,884

    Re: a dot every 3 numbers

    Ok thank you lots anyway.
  30. Replies
    6
    Views
    1,040

    Re: Modifying rows [still problems :-( ]

    There is a bunch of command for selecting, updating and deleting rows of a dataset all of them used the row index... (like the command above) SO THERE HAS TO BE A WAY OF GETTING THE ROW INDEX,...
  31. Replies
    3
    Views
    5,872

    Re: Make DataGrid look like ListView(Detail)

    Have you tried working with Tablestyles?

    You can do basically anything with styles, don't really know what you are exactly looking for but if you haven't yet, you sure want to give them a try.
  32. Replies
    6
    Views
    1,040

    Re: Modifying rows

    Nope! Won't help!

    I'm not storing my data in a SQL DB. I'm storing my data in an xml document. But still that shouldn't make a diference, because what I'm trying to do now is to modify the dataset...
  33. Replies
    6
    Views
    1,040

    Modifying rows [still problems :-( ]

    Hi folks! Going crazy here. I got a dataset filled and now I need to modify a row of one of its tables. I know I can do it like this:

    Dataset.Table1.Rows(x).("Name")="John"

    Being x the row...
  34. Replies
    3
    Views
    2,353

    Re: Dataset and stringbuilder

    Alright, filling textboxes, for example, with a dataset is very easy. I do it graphically and not programming because I have found it easier.

    Once I have a dataset in my form, I add a Dataview.
    ...
  35. Thread: Trying again!!

    by nacho2
    Replies
    8
    Views
    1,338

    Re: Trying again!!

    Ok great that's what I needed.

    Now one more thing, what if I don't know the row index? Let's say it is a table of customers having each customer an IdCustomer. How can I get the row index that...
  36. Replies
    3
    Views
    2,353

    Re: Dataset and stringbuilder

    You got problems retrieving data from the dataset? If that's the case try Dataset.select() it has options for sorting, filtering...

    Let me ask you something I'm trying to find out, do you know how...
  37. Thread: Trying again!!

    by nacho2
    Replies
    8
    Views
    1,338

    Re: Trying again!!

    Ok, Jorge, you are probably right but I think it is basically the same. If I were using a SQL database I would fill my dataset and then make changes to it and afterwards send those changes to the...
  38. Replies
    62
    Views
    87,297

    Re: ADO Beginners Tutorial

    Nope, I don't think that helps in my case. My database is an xml database, so I'm using no dataadapter, just the dataset. And the thing is that the change in the data comes from the user he clicks...
  39. Replies
    12
    Views
    1,884

    Re: a dot every 3 numbers

    Ok, that's great thank you lots.

    Hey, by the way, could you help me with my dataset question? It is posted in a thread titled "Trying again!!". I'm browsing the web looking for an answer but I'm...
  40. Replies
    12
    Views
    1,884

    Re: a dot every 3 numbers

    Well actually, I don't care if it is a dot or a comma or whatever. I'm working with big numbers (always have around six zeros) and having something separating the number in groups of three would help...
Results 1 to 40 of 71
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width