Search:

Type: Posts; User: mickey_pt

Page 1 of 13 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    0
    Views
    1,960

    Authentication Options

    Hello

    Need some advice how to handle this situation.

    I'm building three websites and one web api (c#).

    The websites:
    - Institutional website, just showing statical content and will have a...
  2. 4.0 TaskFactory WebRequests and DataBase Writing

    Need help or at least check what I'm doing wrong.

    I have a windows service that runs everyday at a schedule time, it takes a list of internal IDs and a related URL, after dividing the list into...
  3. VS 2015 Re: Aspx Controls and Dynamic Loading With Events

    Thanks KGComputers

    I didn't have code at the time... Now i have code, but I'm facing a different "problem at this time".
    I have this "layout" a simple page with a User Control, the UC has a...
  4. VS 2015 Aspx Controls and Dynamic Loading With Events

    Hello

    Need some help with this page that I'm creating.

    I have a page, that receives a List of Orders, for each order i need to load a user control. In the user controls I have a table, and for...
  5. Replies
    2
    Views
    1,375

    VS 2012 Re: Debug Big Solution

    @techgnome
    Thanks for the reply

    But that isn't an option, at least at this moment, I just entered the "project", and it's all new to me...

    And sorry, i wrote build, but build doesn't do the...
  6. Replies
    2
    Views
    1,375

    VS 2012 Debug Big Solution

    Hello

    Need some help/tips how to debug a big project.

    I have a solution with more that 180 projects inside, with several dependencies between them, so every time i change something in one of...
  7. Replies
    7
    Views
    1,120

    VS 2010 Re: Threads + Synlock + Buffers

    I dont know what are to many messages... :)

    The averages, by default i'll have 3, and thanks for remember me to using the extra queues, simplifies everything.

    The GUI, only display simple...
  8. Replies
    7
    Views
    1,120

    VS 2010 Re: Threads + Synlock + Buffers

    @Grimfort
    By the way i don't want to remove the elements of the collection. In the end the user will have the option to save all the buffers to a log file, just for control.

    So SyncLock it's a...
  9. Replies
    7
    Views
    1,120

    VS 2010 Threads + Synlock + Buffers

    Hello

    Need some advice, for this application that i'm building.

    I have a machine that sends messages (ant+ messages with 5 different types and each one has 8 bytes), the timing isn't defined,...
  10. Re: Crystal Report Add One Report Parameter = Missing Parameter Values

    I didn't found out how to send the NULL value, but in this specific case i can send 0 that's the same thing...
    So this how:
    'Set the subreports vars
    Rel.SetParameterValue("@IDPEs", "0",...
  11. Re: Crystal Report Add One Report Parameter = Missing Parameter Values

    Finally i isolated the problem...

    First in two of the three subreports, the data comes from stored procedures each one of them has 2 input parameteres, where one it's optional, if i don't pass...
  12. Re: Crystal Report Add One Report Parameter = Missing Parameter Values

    Already tested that, same problem
  13. Crystal Report Add One Report Parameter = Missing Parameter Values

    Hi

    I have a report, that has 3 subreports, i only pass one parameter to the main report, and the subreports are associated with this parameter. Everything was working fine...

    Now i need to...
  14. Replies
    4
    Views
    2,371

    VS 2010 Re: Access Shared Buffers

    I didn't say that they're complicated... I only said, that i don't know the amount of data i'll have.

    The data, theoretically it's coming in some channels at 8 messages (each one can vary from 3...
  15. Replies
    4
    Views
    2,371

    VS 2010 Re: Access Shared Buffers

    Thanks
    The locking primitives, was my first thought, but i'm affraid while locking it, i loose some data...
    Circular buffer it's complicated, i don't know how much data I'll have in the buffer, and...
  16. Replies
    4
    Views
    2,371

    VS 2010 Access Shared Buffers

    Hello

    I'm playing with ANT+ sensors, and now I'm wondering what's the best way to accomplish this scenario:

    - I have several lists, lets call them buffers, that will receive several values at...
  17. Replies
    0
    Views
    789

    VS 2010 T4 Template Project Errors

    Hello
    For the first time i created a t4 template, the template works fine, but after saving and generating the final file correctly it raises a lot of errors in the project, errors like the buttons...
  18. VS 2010 Download file and continue page processing

    Hello
    First time working with asp.net. :)

    So i have a page, that has a gridview that after the user clicking in a button i put all the contents of that gridivew in a spreadsheet and allow the...
  19. VS 2010 Re: Initialize Class Inside Shared Method

    Thanks
    Didn't remember of the first solution...
    Just went to the singleton Form. :)

    Thanks
  20. VS 2010 [RESOLVED] Initialize Class Inside Shared Method

    It's that even possible? :confused:

    I created a simple DDL that has one form, i only need one method from that form, that's the My_Show method, it takes several parameters, and in the end it...
  21. VS 2010 Re: ComboBox SelectionChangedCommitted + Setting Focus = Problem

    Thanks BlackRiver
    That solved the problem! In my specific case was the Enter key, but anyway, problem solved.
    Before posting i searched a lot, but looks like i didn't used the right words!
  22. VS 2010 Re: ComboBox SelectionChangedCommitted + Setting Focus = Problem

    Thanks JMC
    Didn't read the documentation... :(
    But changed to Select instead of Focus, and that didn't solve the issue.
  23. Replies
    4
    Views
    732

    VS 2010 Re: Want to add a Click Event Please Help.

    Just add the click handler for each pictureBox.
    Something like, after setting the properties for the picturebox.

    AddHandler DirectCast(Box(row, column), PictureBox).Click, AddressOf pic_Click
  24. VS 2010 ComboBox SelectionChangedCommitted + Setting Focus = Problem

    Hi
    Like the title says, the combination of the SelectionChangedCommited event, and inside the event selecting another control (focus), causes to the combo box select another item that isn't the...
  25. Replies
    1
    Views
    892

    VS 2010 Re: EnvDTE.DTE Thread

    After some reading it looks like i need to use the SynchronizationContex.
    And after some tests, it's up and running, very simple, just get the SynchronizationContex, then use it to call the...
  26. Replies
    1
    Views
    892

    VS 2010 [RESOLVED] EnvDTE.DTE Thread

    Hi
    I'm developing a small add-in for SSMS, now i want to improve the addin, so i thought in using the statusbar from the DTE. I get the status bar without any problem and i can set the text of the...
  27. Replies
    9
    Views
    5,210

    VS 2010 Re: Thread Form and Owner

    Oh...
    Forgot the ReportProgress property... Change it to True, and now it works! :/

    THanks
  28. Replies
    9
    Views
    5,210

    VS 2010 Re: Thread Form and Owner

    Hi
    I just created a new project and write everything like in the sample code... The only difference was the form name and the proc name for the delegate...

    Anyway:
    Imports System.Threading...
  29. Replies
    9
    Views
    5,210

    VS 2010 Re: Thread Form and Owner

    THanks JMC for yout time.
    Always thinking outside the box... :)

    But it have one problem, I can't make it to work, did you tested your code? It looks like it ignores the Sleep, or in my case the...
  30. Replies
    9
    Views
    5,210

    VS 2010 Re: Thread Form and Owner

    * Duplicated Post *
  31. Replies
    9
    Views
    5,210

    VS 2010 Re: Thread Form and Owner

    Thanks boops boops

    I know how to use the background worker and that's not what i intend to do...

    The main form should remain blocked, it's a critical operation, so i need someway to tell the...
  32. Replies
    9
    Views
    5,210

    VS 2010 [RESOLVED] Thread Form and Owner

    Hi
    I have a little form that has to do a time consuming job, so the correct way to tell the user that the process it's running it's using a progress bar...
    So i decided to create a new form with 2...
  33. VS 2010 Re: Binded DataGridView in Another Form

    Thanks JMC
    The tabs aren't an option in this form.
    But after posting here, i made some tests and everything works fine... It was simpler that i thought.

    Here's the sample code:
    Private Sub...
  34. VS 2010 [RESOLVED] Binded DataGridView in Another Form

    Hi

    I have a "little" form that has 5 datagridview's, so it's a little full, sometimes some of the dgvs have a lot of rows, so it's a little annoying trying to edit the data.
    So I was thinking in...
  35. Replies
    3
    Views
    3,491

    VS 2010 Re: DataGridView Not Assuming All Changes

    I dont use any binding source...
  36. Replies
    3
    Views
    3,491

    VS 2010 DataGridView Not Assuming All Changes

    Hi
    I have a problem with a form that has 4 datagridviews, every datagridview has is own datasource (datatables), the user can change everything in the datagrids, at any point the user can select...
  37. Replies
    6
    Views
    2,792

    VS 2010 Re: Environment Variable X86 x X64

    The TabTip has two versions, 32 bit version located at common program files x86, and the 64 bits version located at common program files. I don't know if it's the same file, i just know that they are...
  38. VS 2010 Re: DataGridView AutoSizeColumnsMode Fill Problem

    I already tried some combinations:

    1 - Design to NONE, in the end of the code changed to FILL, columns doesn't adapt at all...
    2 - Design to FILL, before adding the column set to NONE, after...
  39. VS 2010 DataGridView AutoSizeColumnsMode Fill Problem

    Hi

    I'm having a problem when trying to add a column to a datagridview in autosizecolumnsmode set to fill.

    After some tests i realize that i can't insert a column to the datagridview. The...
  40. Replies
    6
    Views
    2,792

    VS 2010 Re: Environment Variable X86 x X64

    This application it's targeting the x86 to solve some issues with some componentes in x64 machines.
    But now i need to use the TabTip, and in the 64bits machines it's in the Common Program Files......
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width