Search:

Type: Posts; User: dr_aybyd

Page 1 of 8 1 2 3 4

Search: Search took 0.07 seconds.

  1. Re: How to connect my web application with sms API?

    I think it will depends on the provider of your API if their API can connect to your ms sql database.
  2. Re: Thread error when using BackcroundWork w/ Excel

    Ok I'll recode my codes according to your suggestions.
    I'll keep update this thread.


    tnx jm
  3. Thread error when using BackcroundWork w/ Excel

    I am trying to export my ListView items to excel file
    But when I tried to use backgroundworker to do the job without freezing my UI Window.
    And error occurred when the process start to loop through...
  4. need much better coding for my restore database.

    I am trying to restore my MySQL (dump.sql) using C#
    My code is

    private void btnRestore_Click(object sender, EventArgs e)
    {
    lbLogs.Items.Add("You are about to restore backup...
  5. [RESOLVED] BLOB data as ReportParameter value?

    Is this possible to make a MySQL Blob data as value for ReportParameter directly?
    Like this:


    rParam[int] = new ReportParameter("PHOTO", blobData);

    Or an image from PictureBox as a value for...
  6. Replies
    2
    Views
    1,310

    Re: [RESOLVED] How to get rid of this sapces

    Resolve by using rectangle
    I put all group textboxes inside a rectangle.
  7. Replies
    2
    Views
    1,310

    Re: How to get rid of this sapces

    Bump.

    I tried to play around but still I could not achieve what i want. Still those spaces are there.
  8. Replies
    2
    Views
    1,310

    [RESOLVED] How to get rid of this sapces

    I am printing using RDLC
    What I am ecountering is this one
    93173

    When I am using a List on my report my layout get messy when running application and if the List has value on it.
    All other...
  9. VS 2010 Re: Filtering data for Report Programmatically

    Here is my working and complete codes.


    Imports Microsoft.Reporting.WinForms

    Public Class rptViewerRequest

    Dim reportData As New ReportDataSource

    Private Sub rptViewer_Load(ByVal...
  10. VS 2010 Re: Filtering data for Report Programmatically

    Yup, that's what I'm doing now.
    As I read from articles about TableAdapter.
    I'll keep update this thread on my progress
  11. VS 2010 [RESOLVED] Filtering data for Report Programmatically

    Hi I am loading my report and using this line of codes


    Dim reportData As New ReportDataSource

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  12. Replies
    4
    Views
    1,545

    Re: Iterate through 2 dates

    I'll take your advice sir Thom.
    Maybe I need to recode the previous system(made by other coder) that generate a logs from biometric device.
    I will make save directly to database instead of making...
  13. Replies
    4
    Views
    1,545

    Re: Iterate through 2 dates

    THanks TOm.

    Or is there any best way to manage logs of attendance?
    The way that all log with same date will be save as single line.

    Something like this

    1,2011/12/1,7:31,0...
  14. Replies
    4
    Views
    1,545

    Iterate through 2 dates

    I'm stuck in here
    My goal is to iterate through date
    and compare it to string from a line read from a txt file
    Here is my code

    private List<DateTime> GetDateRange(DateTime StartingDate,...
  15. VS 2010 How to migrate Table Data only into a new Database (MySQL)

    I'm thinking if it is possible to migrate a Table and its content into a new Database from an old database structure.
    I just want to migrate all the datas of specific table from old database into my...
  16. Replies
    4
    Views
    677

    VS 2010 Re: Loop stop un-expected

    Yeah that's what I'm doing now..I put code block to check if HasRows
  17. Replies
    4
    Views
    677

    VS 2010 Re: Loop stop un-expected

    I found it
    error came from this Function isReg()
    that function throw an error which IndexOutOfRange: There is nor Row at position 0
    Coz values forwarded was not found on database.
    Hmmm...I'm...
  18. Replies
    4
    Views
    677

    VS 2010 Loop stop un-expected

    My loop always stop when encounter a False return
    What I expect is to run other code block if False is return

    The loop stop whem False is return form this
    If isReg(dr(1).ToString(),...
  19. VS 2010 Re: For Each Loop test value if True before Next

    Hahaha...I almost forgot such kind of approach....maybe I'm sleepy...:@

    thanks jm.
  20. VS 2010 [RESOLVED] For Each Loop test value if True before Next

    What I want to achieve whit this code is to test first the value, If Return True, the next item will be process but if return False I will do something before calling the next item to be process

    ...
  21. VS 2010 Re: Parsing String to match my Pattern

    Thanks .paul.

    It works. I did some changes here is my modified code to work with me

    Private Function isMatch(ByVal code As String) As Boolean
    Dim rx As New...
  22. VS 2010 [RESOLVED] Parsing String to match my Pattern

    I am developing a client/server application.
    How can I parse a string (message from client) to match with my required string pattern.
    Let say my pattern required is:

    RESULT Acct. Number Year...
  23. Replies
    2
    Views
    3,358

    Re: Printing on PVC ID card

    anyone encountered this kind of problem?
  24. Replies
    2
    Views
    3,358

    [RESOLVED] Printing on PVC ID card

    Hi. I am using Report Viewer and customized rdlc.
    I am generating an Identification Card.
    When I print it in normal sheet it is working.
    But when I tried to print on PVC card. My printer just...
  25. Replies
    2
    Views
    928

    Re: MySQL Maximum db size

    How About If I have 500,000 persons to record their details
    Does MySQL Community Edition can handle that?
    Records of person contains only of their personal information.
    From name to address up to...
  26. Replies
    2
    Views
    3,535

    Re: Capture area of picturebox

    What I want to achieve here is to take capture of generated ID Card which is in PictureBox1 to file and use it later into my report.
  27. Replies
    2
    Views
    3,535

    Re: Capture area of picturebox

    I tried CopyFromScreen
    But the problem now is, the image taken is not in position of a PictureBox.

    private void button1_Click(object sender, EventArgs e)
    {


    Bitmap...
  28. Replies
    2
    Views
    3,535

    Capture area of picturebox

    Hi I have a picturebox that has other controls over it like labe and textbox and other image over it.

    But when I take capture of that area, and save it as .jpg it shows only white image and...
  29. Replies
    1
    Views
    2,108

    Re: RDLC TextBox ontop of Expanded Image

    Any comments?
    I keep on experimenting on RDLC but still can't get what I want.
  30. Replies
    1
    Views
    2,108

    RDLC TextBox ontop of Expanded Image

    Is this possible with RDLC Report to make textbox ontop of an image?
    Cause when I try to make a textbox in on top my image, at runtime the textbox is scattered below an image and some other image i...
  31. Replies
    2
    Views
    928

    MySQL Maximum db size

    I am using MySQL Community Server Edition.
    Just want to ask what's the maximum size of the db?
    Under WinXP OS.
  32. Replies
    3
    Views
    455

    Re: Best way to Handle this

    Yeah. That is employee ID, I forgot to mention that.
    I'm working on the first table now to hold the employees valid work schedule.
  33. Replies
    3
    Views
    455

    Best way to Handle this

    I have given a task to make a simple codes that can manage a raw data came from Stand alone fingerprint attendance device.

    I start to code how to get data from device and its working now.

    My...
  34. Re: Detect if Filling DataSet data is finish

    I change my code into this
    and call in using thread
    but throw me a cross thread exemption
    this.lvOwner.Items.Add(ls);

    How can I apply Invoke to the listview.items.add?
    I have an idea that I...
  35. [RESOLVED] Detect if Filling DataSet data is finish

    Is there a way to know.detect if filling of Dataset data is finish?
    All I need is to do is to alert a user that the dataset is ready and have data on it.
    Here is my codes for filling my dataset:
    ...
  36. [RESOLVED] Best to way to trap NullException

    Hello. Anybody can suggest whats the best way to trap the null exeption from this code of mine.

    long last_Sent;
    long last_Rec;

    private void timerPackets_Tick(object sender,...
  37. Replies
    1
    Views
    2,063

    VS 2010 WebCam Capture Image under Win7

    Hi. I tried to code using WIA, and it is working fine.
    But when I tried my codes under Win 7 OS, it failed to capture.
    It seems that it is only working on XP. I also tried some code sample found...
  38. Replies
    5
    Views
    842

    Re: Student in need of help!

    can you show us your beginning codes so members can help find out where is your error.
  39. Replies
    18
    Views
    1,319

    VS 2008 Re: Runing something in a different thread

    @TH3man

    You need to start a thread after you specify it

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)Handles Button1.Click

    Dim t as Thread
    t = New...
  40. Replies
    3
    Views
    770

    VS 2010 Re: Cross Thread is not Valid:

    @JM
    This is my guide when coding that..
    http://www.vbforums.com/showthread.php?t=498387

    I revise my code.
    Private Sub WriteToLog(ByVal strText As Object, ByVal color As Integer) 'As Object...
Results 1 to 40 of 312
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width