Search:

Type: Posts; User: Zoroxeus

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    0
    Views
    514

    MsOf07 [Access 2007] Update query and function

    Hi VB

    Anyone has an idea please ?
    Sorry is this too complicated question ?

    So I have an update query where for i am passing the value of field A to a functionx in field B and this returns a...
  2. Replies
    1
    Views
    646

    Change color of dropdown

    When I select a dropdown on a windows mobile device, the select color is related to the windows 'theme' currently on the phone.

    How can I change this color through a program so that my dropdown...
  3. Replies
    11
    Views
    5,034

    Re: DropDown vs DropDownList

    So how can I change my component and adapt it ?
    I am looking for a step by step process showing how an existing component has been customized... any component

    I can handle the programming, it's...
  4. Replies
    11
    Views
    5,034

    Re: DropDown vs DropDownList

    So are you saying pretty much that I can't do what I want and I have to derive a whole new component to have the functionality I need ??
  5. Replies
    11
    Views
    5,034

    Re: DropDown vs DropDownList

    I thought about this solution and there are many other alternatives as well but as you said it's not elegant.
    I am looking for an elegant solution and don't understand why when the dropdown has a...
  6. Replies
    11
    Views
    5,034

    Re: DropDown vs DropDownList

    yes it does...whether it's windows mobile framework or the full 3.5
  7. Replies
    11
    Views
    5,034

    Re: DropDown vs DropDownList

    yeap, Mobile Framework 3.5
  8. Replies
    11
    Views
    5,034

    DropDown vs DropDownList

    Hi,
    I am trying to add a dropdown to my form.
    I want this form to have a 'title' incporparted in the control to save space.
    When I select DropDown for the DropDownStyle property everything is...
  9. Replies
    5
    Views
    694

    Re: Dynamic form with SQL

    Well front-end not from the user point of view but the programmer.
    ie, how could the program 'swtich' from one view to another depending of the record
  10. Replies
    5
    Views
    694

    Re: Dynamic form with SQL

    abhijit thank you,
    what i was looking for was not so much how to 'design' the table ,
    but rather the program so that when i browse from one object type to another the proper 'form' is displayed
  11. Replies
    5
    Views
    694

    Dynamic form with SQL

    hi
    so the concept is pretty simple
    my db represents different 'object' with different attributes
    For example I could have a 'triangle' object, a 'circle' object...
    How can I with visual studio...
  12. Re: Design with multiple MS Access DB & one SQL server

    Hi,
    thanks but that does not really cover the case of the laptops being connected at the same time... ?
    As well, Imagine on laptop 1 I enter something
    First time it will get uploaded to the...
  13. Re: Design with multiple MS Access DB & one SQL server

    Hey
    no well that's the thing
    i focused on my data.
    I could add any extra info (PC ID field, last update)...
    That's what I would like to know, because there are many ways
    For example I could...
  14. Re: Design with multiple MS Access DB & one SQL server

    Sorry
    the question would be
    what is the best practice to do such a thing ?
    Should I add extra field in my schema to track these things, should I compare the tables each time (knowing that the...
  15. Design with multiple MS Access DB & one SQL server

    Hi guys,

    So I have an MS Access DB (with a GUI) on several laptops. Same access files on all of them.
    On each of the laptops I have a small VB .Net application I have written.

    So the purpose...
  16. Replies
    0
    Views
    752

    Network Connection Detection

    Hi,
    I have been trying to have my application looking for a connection

    I have this code in my public MainForm() after InitializeComponent();



    ManagementClass newClass = new...
  17. Replies
    6
    Views
    690

    Re: [2008] [Resolved] Split String on CASE

    Works fine thanks !
  18. Replies
    6
    Views
    690

    Re: [2008] Split String on CASE

    thanks the problem with this one is that if I have something like
    thisIsTheStringNO

    it will make it:
    this
    Is
    The
    String
    N
    O
  19. Replies
    6
    Views
    690

    [2008] Split String on CASE

    Hi,
    i would like to split a string not on a char but on the case
    I have string of the format:

    thisIsTheString

    I would like to get:
    this
    Is
    The
  20. Re: [2008] Opening any File and manipulating it

    I don't understand when you say "probe manually"
    does that mean that i have to write a case for each type of file ?
    aren't the type of files associated to an application ?

    My point is that...
  21. Re: [2008] Opening any File and manipulating it

    ok well this is a disapointing news.
    Is not there even a way to control scrolling down of an application ?
    The OS does remember the position of a window, so I should be able to control at least...
  22. [2008] Opening any File and manipulating it

    Hi,
    I was wondering
    is there a way to open *any* file (this part i know it can be done) witht he default application with VS 2008
    but not only opening it, but to open the file at a specified...
  23. [VB 2005] Excel find method invalid index (DIS_E_BADINEX)

    Hi
    I get an error at:
    If oSheet.Range("J:J").Find("TEST", , Excel.XlLookAt.xlWhole) Is Nothing Then

    The error is:
    Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX))
    and in...
  24. Re: [RESOLVED] [VB 2005] Sheet to external Sheet1

    Ok Thanks, I did not know about the Sheet.Cells
    I thought we could only do it through Range.


    As well my mistake was that I was doing ohseet.copy(osheet1)
    instead of...
  25. [RESOLVED] [VB 2005] Sheet to external Sheet1

    Hi
    I have been trying to copy a sheet from one file to another

    So i have everythign read. oSheet and oSheet1

    I try to do:

    oSheet.copy
    oSheet1.paste
  26. Replies
    4
    Views
    4,531

    Re: [2005] Duplicate in Datagridview

    yes I just loop through it and add it... it's a small list so it's ok
    i tried to do the binding but it was too advanced for me as of right now :)
    once i get more familiarized

    In the cellendedit...
  27. Replies
    4
    Views
    4,531

    Re: [2005] Duplicate in Datagridview

    Hi Stanav thanks for this method but there is a bit of a problem.

    I did not explain the whole situation.
    When I load the datagridview I load in it a...
  28. Replies
    4
    Views
    4,531

    [2005] Duplicate in Datagridview

    Hi
    I have a datagridview with ONE column.
    I enter my value in each row.
    Each time I finish entering the value I check the value to make sure if was not entered. So far I have managed to get this...
  29. Re: [2005] Add Collection to array of string

    Not sure... did not know of.
    I just used whatever that I know of... :)

    PS: instead of "my.settings.collection1.Length" i used .Count


    thanks !
  30. [RESOLVED] [2005] Add Collection to array of string

    Hi,
    I have an string array such as:
    string1() = {"qw", "1", "test"}

    and I have a collection from the My.settings
    so it's my.settings.collection1

    It's a 1D collection which means the content...
  31. Re: [2005] Save datagridview content in user setting

    Excellent thanks !
  32. Re: [2005] Save datagridview content in user setting

    I did instead:
    Dim dt As Data.DataTable = New Data.DataTable("ParentTable")

    does it look right ?

    thanks
  33. Re: [2005] Save datagridview content in user setting

    hi Stanav, thanks,
    I tried to implement your way, but it says type "datatable" not defined when i declare dt as datatable ?
  34. Re: [2005] Save datagridview content in user setting

    yeap that's exactly it....
    if there is a better way that my.setting i don't mind either...
    i thought it was the most logical...
  35. Re: [2005] Save datagridview content in user setting

    No it is not.
    Each user would have their own words.
    Is not the my.settings the best way ?
  36. [RESOLVED] [2005] Save datagridview content in user setting

    Hi,
    I have been having a hard time trying to figure out how to save the content of a datagridview to a user setting System.Collections.Specialized.StringCollection.

    My goal is to have a list of...
  37. Replies
    0
    Views
    591

    Report server failed

    Hi,

    I have created a crystal report application using the template.
    I designed a report using VS2005.
    THe report loads fine. Report has as datasource an excel file (excel1.xls).
    What I am...
  38. Replies
    11
    Views
    4,935

    Re: [2005] Datagridview and String Collection

    Hey,
    sorry maybe i did not express myself properly.
    Your reply was very clear and more than confirmed what I knew about Classes, Objects, ...
    What I meant is that I just don't know of the...
  39. Replies
    29
    Views
    1,814

    Re: [RESOLVED] [VB 2005] Frequency Dictionary

    Thanks, but the help menu of VS 2k5 just gets me to the famous msdn online thing... which is not a very clear help ... and i don't find it complete ... sometimes by searching online i find so much...
  40. Replies
    29
    Views
    1,814

    Re: [RESOLVED] [VB 2005] Frequency Dictionary

    Thanks,
    I just said Integer.IndexOf ... because nothing was coming to my mind...
    it makes more sense now with your explanation
    Where is there like a high level view of the classes ? I want to...
Results 1 to 40 of 175
Page 1 of 5 1 2 3 4



Click Here to Expand Forum to Full Width