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

Search:

Type: Posts; User: Shaikh.Riyaz.a

Page 1 of 24 1 2 3 4

Search: Search took 0.19 seconds.

  1. Replies
    27
    Views
    3,635

    Re: String to mathmatical equation

    You can use scriptControl to excute the string or use ebExecuteLine API.

    But I guess, this API doesn't work in compiled environment. So better go for scriptControl.
  2. Replies
    2
    Views
    11,428

    Re: Using a String as Variable Name

    Have a look at CallByName function or as suggested by dglienna use script control.
  3. Replies
    5
    Views
    1,096

    Re: Print Preview (prof. Needed)

    I think crystal reports or data reports will be good option.
  4. Re: Error with detecting if Word document is open

    You can check the existence of lock file for word!
  5. Replies
    3
    Views
    6,749

    Re: I need free ocx barcode

    You can generate barcodes using crystal reports.
    You just need special fonts for that purpose.
  6. Replies
    17
    Views
    3,367

    Re: joins with reports

    I still dont understand where is the problem!
  7. Replies
    17
    Views
    3,367

    Re: joins with reports

    Will using INNER JOIN syntax solve the problem?

    Is there any difference between query written by me and yours?
  8. Re: How to highlight a particular picture box in a form

    Change the appearance of picture box on pic_MouseMove and Form_MouseMove events.
  9. Replies
    17
    Views
    3,367

    Re: joins with reports

    Can you attach your database here? (of course if possible)


    or list few records from both records which you expect to come in output.
  10. Replies
    17
    Views
    3,367

    Re: joins with reports

    I have filtered data for ProductItem.

    Look here:



    "AND P.Scope = '" & frmPurchaseReport.cmbScope.Text & "' " & _
    "AND P.Date = #" & frmPurchaseReport.dtpRDate.Value & "#"
  11. Re: Compile DLL/Object doesn't support this property or method

    Where have you written this public function,
    in class module or in standard module?

    If it is in class module, check whether the class is accesible outside your library or not!
  12. Replies
    17
    Views
    3,367

    Re: joins with reports

    Shruti,

    Your query should be like this.


    rs.Open "SELECT S.Scope, S.RF, S.RevisionNo, P.[Date], P.Scope, P.ItemName, P.ItemCode, P.QtyInStock, P.QtyOrdered, " & _
    "P.Remark FROM...
  13. Re: Treeview control should show different line of text or evrey node i click....

    What you have done so far?
  14. Replies
    5
    Views
    1,330

    Re: saprit name in strings

    It is better to use FileSystemObject.
    Here is one example:



    Dim fso As Object

    Set fso = CreateObject("Scripting.FileSystemObject")

    'This will return 'DS0008.jpg'
  15. Replies
    17
    Views
    3,367

    Re: joins with reports

    I didn't get this in your query.



    s.Scope=p.Scope=" & "'" & frmPurchaseReport.cmbScope.Text & "'
  16. Replies
    4
    Views
    1,375

    Re: Detect application execution

    To start with, this is good.

    http://www.eggheadcafe.com/forumarchives/VisualBasicwinapi/Dec2005/post24687408.asp
  17. Replies
    17
    Views
    3,367

    Re: joins with reports

    Whatever you have written seems correct.

    I think you have to use '#' for filtering date column in access.
  18. Replies
    6
    Views
    20,654

    Re: Excel Changing my Date Format

    Making the date field as string will not allow you to sort that column on date basis.


    If you are writing the values cell by cell then convert date values to double
    and put it in excel and later...
  19. Replies
    10
    Views
    16,137

    Re: print PictureBox

    Not very clear what do you want but this may be helpful.

    http://www.andreavb.com/tip070013.html
  20. Re: transfer data from a textbox to word doc / word pad

    Use this to write to text file



    Dim frFile

    frFile = FreeFile

    Open "C:\Test.txt" For Output As #frFile
    Print #frFile, txtData.Text
  21. Replies
    3
    Views
    1,037

    Re: Runtime Controls...

    Set the container property for control.
    Following code will add frame and option button to form
    and will set the container of option button as frame.



    Private Sub Form_Load()
    Dim fr1 As...
  22. Replies
    3
    Views
    1,037

    Re: Runtime Controls...

    VB.NET ?
  23. Re: piture, image or jpg file save in sql server

    Keep the datatype as image in SQL server

    This is the code to save the file to server :



    Dim strm As New ADODB.Stream

    strm.Type = adTypeBinary
    strm.Open
  24. Replies
    10
    Views
    16,137

    Re: print PictureBox

    Vb.net?
  25. Re: RaiseEvent fails, crashes VB

    I can just guess that 'Format' is a function in VB.
Results 1 to 25 of 580
Page 1 of 24 1 2 3 4





Click Here to Expand Forum to Full Width

Featured