CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: hensa22

Page 1 of 26 1 2 3 4

Search: Search took 0.37 seconds.

  1. Get the key pressed, I don't care component focused

    Hi everyone

    I have a desktop app. it has a JFrame and many components. this class implements KeyListener but it doest not work as I am looking for.
    when JTable add KeyListener this only work when...
  2. Replies
    1
    Views
    9,252

    KeyDown Event on Cell DataGridView

    Hi everuone

    I need to capture Keydown event on Cell in DataGridView while it is Editing mode.

    any helps??

    Thanks in advance.
  3. Re: Unable to send email via ASP: iam using Gmail - SMTP

    hi
    this doesn't help much
    what error message is showed in page???
    event viewer (OS Windows) says something about??
  4. Replies
    8
    Views
    2,625

    Re: Write 'C' char array[] to VB array() As Char

    I don't sure but if you parameter is a pointer
    you cant try something like :



    SocknetRecv(Socket, RData(0), RData.Length)


    where lpBuf and rData would be same memory address, then these...
  5. Replies
    20
    Views
    26,300

    Re: Date Comparison

    hi



    dim var_d1 date, var_d2 date
    .
    .
    .
    .
    if var_d1>var_d2 then
  6. Replies
    9
    Views
    10,366

    Re: Combo.ItemData maximum value

    Hi odiseh

    property ItemData is datatype Long, the value that you want to set it's not posible

    11001000000 is out range to Long.
    so I time ago used work :



    With Recordset1
  7. Replies
    9
    Views
    33,150

    Re: VB6 Save Button Command

    what didn't work??

    data is not add in database.
    it shows error message.
    .
    .
    .

    so on.
  8. Re: help word count using array in visual basic 6

    Hi
    Here's VB 6. forum.

    I see your source code is vb .Net
  9. Replies
    2
    Views
    841

    Re: crosstab issues

    could you show us as your report is designed?
  10. Replies
    2
    Views
    896

    Re: Reporting on first row of data on table

    hi
    I am thinking, what you are looking for, you'd have to redesign your query so it can retrieve data properly.
  11. Replies
    1
    Views
    3,116

    Re: Database login issue

    hi,
    is there some subreport in your report ?
  12. Re: Generate Barcode in Labels in Crystal Reports

    hi, you can to search for some font in internet, these you could install in your windows and use it in your crystal report, these fonts would be listed when you want to set any font to the label or...
  13. Replies
    5
    Views
    1,238

    Re: Depolyment with Exel Problem

    you have to add excel file and you also to indicate where it goes to be placed when you are going to create your intall wizard or publish your app.
  14. Replies
    1
    Views
    2,844

    Re: InvalidCastException

    Quan

    your parameter Out is SqlDbType.SmallInt.

    I think your stored procedure attempted return a value range out of SmallInt acepted .
  15. Replies
    1
    Views
    1,119

    Re: Adding rows to DataTable

    Hi
    you can use NewRow method from DataTable class.



    dim objdtRow as DataRow
    objdtRow =dttable.newrow
    objdtRow ("field1")=value1
    objdtRow ("field2")=value2
    objdtRow ("field3")=value3
  16. Replies
    1
    Views
    1,772

    Re: multi-part identifier could not be bound

    hi vandel

    your statement is on table Lines and not on Headers.
  17. Replies
    1
    Views
    1,179

    Re: Remote SQL Server Connection

    Hi



    yes, if you router is setup properly.

    What SQL server version is???
  18. Replies
    2
    Views
    1,306

    Re: Error Restoring Database

    hi


    your app is not able connect to your database server.

    I bet you try to connect to database you is trying to restore.
    but if it still not exists....
  19. Replies
    2
    Views
    837

    Re: Run multiple statements to get result

    I think it could be.....
  20. Replies
    8
    Views
    2,136

    Re: Runtime error after hosting the website

    Hi CSharpque

    I guess you are reviewing your web project from a client pc.

    if you want to see detailed error message I suggest you have to go to web server and review for error message from...
  21. Replies
    3
    Views
    2,074

    Re: Issue Web Service and ASP.Net

    thanks for reply

    I already solve it

    web service method returns a datatable when I changed method so it returns a dataset. the error message is not showed and everything work fine.



    But I...
  22. Replies
    3
    Views
    2,074

    [RESOLVED] Issue Web Service and ASP.Net

    hi everyone

    I am facing an issue


    When I invoke a web service it trigers error message, I figure out it is when data retrieved from web service has character especials.

    any setting to fix...
  23. Replies
    0
    Views
    1,311

    VS2008 and deploy Web and Crystal Report

    Hi everyone

    I need help
    I have a ASP.NEt project which it is deployment in remote hosting, I don't have acceso any way in hosting. I just have a interface Web where I can copy file at somes...
  24. Replies
    1
    Views
    1,184

    Plug in on ASP.Net

    Hi everyone


    my web app needs handle a device on client PC to get to capture some data.
    I figure out to solve it I have to develop any plug in.

    I was searching on web but I had not luck
    ...
  25. Replies
    0
    Views
    1,234

    Oracle : case sensitive objects on windows

    hi everyone

    We have a Linux server and ORACLE database installed, when we was testing our app we saw that any object in database, throught some SQL Query, its can't be found. then I figure out...
Results 1 to 25 of 644
Page 1 of 26 1 2 3 4





Click Here to Expand Forum to Full Width

Featured