Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by fawaz

  1. fawaz

    Intelliji Hallo World sample program error

    I am new to Java and I am writing a simple prg to display msg in intelliji; The code and error is as below. Please advise. thanks. main.java -------------- public class Main { public static void main(String[] args) { System.out.println("bismillah"); JFrame frame = new...
  2. fawaz

    Email sending First time but not sending second time

    I am sending email taking messages from html form and addresses in access database. I am testing the script. It is sending suceSsfully first time but second time it stops at command ObjSendMail.Send. PLESE ADVISE ME TO FIX THE ISSUE. <%@ Language=VBScript %> <html> <head> <title>New Page...
  3. fawaz

    Datalist with Datagrid - date update in datagrid colum

    I am having a datagrid (using VB6.0 sp.06 /forms created with vb5.00 but contorls updated ver vb6.0) with columns having Button. When I click the Button a listbox is visible and it is positioned at same row dropping down from the next column (So the column which is going to updated is visible)...
  4. fawaz

    Data Grid with Ado Connectivity - No help Available!!

    For example I have a datagrid connected a table in Access 97 through ADO data control(adodcfeedetail). I have text fields connected to other table through a Ado data control (adofeemaster). Whenever the textfilds change I fetch a different set of records for datagrid. please see my below codes...
  5. fawaz

    Data Grid with Ado Connectivity - No help Available!!

    I think there is a problem with datagrid working with Ado connectivity. A lot of forms (please search with key words "DataGrid Ado") remain unanswered.(any way help!)Anybody can throw light on this dark side. Thanks.
  6. fawaz

    Ado update through Datagrid

    Thanks to SDuke. I was trying to connect datagrid with connection code instead of ado data control. Still it was not working. But as suggested I just added a field in the table with autonumber, it is working fine. Now I have another problem. I am trying to add records by command button as...
  7. fawaz

    Ado update through Datagrid

    Please tell me how to get unique identifier for each row. I am using adcmdtable - record source- thanks.
  8. fawaz

    Ado update through Datagrid

    I am using DataGrid with Ado connection in Vb6. Whenever I update some columns of DataGrid I getting error "Recordset can not be located. Too many rows effected....." . Please tell me how to rectify this error.
  9. fawaz

    Mapping a remote pc drive for synchronization

    How we can map a drive in remote pc for Access database synchronization through VB ver.5.by dial up networking. Is there any procedure/third party application available for maping the remote pc drive through dial up networking.
  10. fawaz

    Dbgrid - Inactive row please help

    we are using dbgrid databound with access. I have some function keys coded. When I am in the last row only if any key is pressed the Dbgrid.addnew record triggered. Otherwise the cursor stands only on new row. In this status I want to disable the function key's event. HOw do I know the current...
  11. fawaz

    Help ! update recordset from other recordset

    I checked it. The problems is my mdb is replica set. It has some fields as s_ (GUID type). I am using query like &quot;Select * from [table_name]&quot; in data control. some time only table name in recordsource. How I can avoid GUId type in my selection of fields. Becuase typing each field...
  12. fawaz

    Help ! update recordset from other recordset

    Dear friends, I have one table in a datbase which will be updated from the table of other database on satisfying some conditions as follows: Private Sub Command1_Click() Dim noflds As Variant Dim fldx As Variant Dim wrkDefault As Workspace Set wrkDefault = DBEngine.Workspaces(0)...
  13. fawaz

    Crystal selection formula- with date field - Pls Help.

    Dear Friends, It is working with following changes: fdate = &quot;date(&quot; + Trim(Str(Year(Text1.Text))) + &quot;,&quot; + Trim(Str(Month(Text1.Text))) + &quot;,&quot; + Trim(Str(Day(Text1.Text))) + &quot;)&quot; tdate = &quot;date(&quot; + Trim(Str(Year(Text2.Text))) + &quot;,&quot; +...
  14. fawaz

    Crystal selection formula- with date field - Pls Help.

    I have a crystal report 4.6 where the selection formula for record read as follows: {SALES_ORDER_MASTER.CUSTOMER_NO}=&quot;AB1&quot; AND {SALES_ORDER_MASTER.INV_DATE} IN DATE(2001,01,01) TO DATE(2001,03,28) AND {SALES_ORDER_TRANSACTIONS.TRANS_TYPE}=1 It works fine. I put this formula in Vb...

Part and Inventory Search

Back
Top