Search:

Type: Posts; User: udit99

Page 1 of 6 1 2 3 4

Search: Search took 0.15 seconds.

  1. Replies
    4
    Views
    1,874

    ASP Client side validation in VBSCript

    I'm trying to validate the Input from an ASP form on the client side using VBScript. But this code just refuses to work, it just goes ahead and submits the form regardless.


    Function chk()
    ...
  2. Data Provider or Other service returned E_FAIL status

    Hi
    so here's what Im trying to do. Just plain vanilla retrieving a field value from a Foxpro DB using an ADO Recordset+Connection over a DSN. Everything seems to be working fine except some records...
  3. Replies
    4
    Views
    18,605

    Re: "Could not find Installable ISAM"

    nevermind the workgroup problem.....I fixed it by adding

    Jet OLEDB:System database=C:\SYSTEM.MDW;" at the end

    so its now
    cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & DBFullName &...
  4. Replies
    4
    Views
    18,605

    Re: "Could not find Installable ISAM"

    I had already gone through those steps on the page but thanks anyways.

    The spaces and password did get me out of the ISAM error but now can anyone tell me how to incorporate a workgroupd file here...
  5. Replies
    4
    Views
    18,605

    "Could not find Installable ISAM"

    Im trying to import Data from an Access DB to an Excel Spreadsheet, the Code gives me the error

    Run-time error '-2147467259(80004005)'
    Could not find Installable ISAM

    on the line cn.Open......
  6. Replies
    1
    Views
    424

    Recovering a Stolen Laptop

    I recently got a laptop stolen and using my college's IT Department have traced down the MAC address associated with it. Is there any way to trace the Laptop if it is connected to the Internet?
    ...
  7. Replies
    1
    Views
    541

    Error Handling basic concept

    Ok here's the simplified version of what Im doing.Using a Do While Loop, Im updating records from an excel worksheet into an Access DB. Problem is, that when I want to handle errors for Duplicate...
  8. Replies
    3
    Views
    1,425

    Re: Type Mismatch Error on OpenRecordSet

    I actually fixed the problem by using an object of type Object instread of a recordset object to receive the OpenRecordset return. I'll try and use the complete OpenRecordset command to see if it...
  9. Replies
    3
    Views
    1,425

    Type Mismatch Error on OpenRecordSet

    Im trying to export data records from an Excel spreadsheet to an Access table and im getting this error.


    Dim db As Database
    Dim rs As Recordset
    Dim ws As Workspace

    DBEngine.SystemDB =...
  10. Replies
    1
    Views
    629

    Re: Type Mismatch on OpenRecordset function

    just to tell you what Im trying to do, Im exporting excel data into Access using a macro
  11. Replies
    1
    Views
    629

    Type Mismatch on OpenRecordset function

    Dim db As Database
    Dim rs As Recordset
    Dim ws As Workspace

    DBEngine.SystemDB = "C:\Documents and Settings\System.mdw"
    Set ws = CreateWorkspace("NewWS", "user1", "", dbUseJet)
    Set...
  12. Replies
    3
    Views
    1,173

    Re: Can't seem to open XML file

    Right Now, Im trying to run the program on the emulator. Im actually using the XMLTextReader and XMLTextWriter Classes to get data from a form and put it into an XML file..Im using this Quickstart...
  13. Replies
    3
    Views
    1,173

    Can't seem to open XML file

    xmlFileName = "c:\ghana.xml"
    Dim FsXML As New FileStream(xmlFileName, FileMode.Open)

    I have tried giving it all sorts of paths for file names, but It just can't find the file\ directory

    stuff...
  14. Replies
    3
    Views
    675

    Re: tab order error message

    iT STILL doesnt Tab to the next control..in fact it doesnt respond to Tab at all, the cursor just remains there at the Textbox
  15. Replies
    2
    Views
    629

    Re: File Opening in VB.NET

    Oh yeah..I forgot tell...Im making the form for a Pocket PC...its a Smart Device Application.
  16. Replies
    2
    Views
    629

    Re: File Opening in VB.NET

    I wanna display it in the app...basically populate a listbox with the XML contents.
  17. Replies
    2
    Views
    629

    File Opening in VB.NET

    xmlFileName = "c:\ghana.xml"
    Dim FsXML As New FileStream(xmlFileName, FileMode.Open)

    I have tried giving it all sorts of paths for file names, but It just can't find the file\ directory
    ...
  18. Replies
    3
    Views
    675

    tab order error message

    Im trying to set the tab order for 3 text controls on my form. When I select any control and go to View-> Tab Order, it tells me

    "specified cast is not valid"

    This works just fine with a...
  19. Replies
    3
    Views
    705

    it works now!!

    I tried the sa login now and it works!!...the Windows Authent. doesnt...but that doesnt matter

    thanks...
  20. Replies
    3
    Views
    705

    I dont know about the previous MSDE version but...

    I dont know about the previous MSDE version but the one that I installed won't let me install it without a strong password....so I do have a password for sa...and as far as the security thing...
  21. Replies
    3
    Views
    705

    ASP-MSDE connection problems[closed]

    Trying to get an ASP page to connect to a MSDE DB


    When I use this :
    MyConnection = New SqlConnection("server=(local);database=northwind; uid=sa; password=testpassword")

    I get this
    ...
  22. Replies
    4
    Views
    755

    Recordsets in .NET

    All the tutorials and stuff that I read on ADO.NET use DataSets and DataTables and the like...but I think I discovered that Recordsets are stil supported in .NET (??) ...so when is it ideal to use a...
  23. gotit

    Thanks!!
    I think the problem arises when IIS is installed after ASP
  24. Iv narrowed down the problem to one thing...the...

    Iv narrowed down the problem to one thing...the IIS Settings in the Application Configuration section don't have a .aspx Application mapping and it won't let me add a mapping even though the Add...
  25. IIS & ASP.NET text controls and buttons don't show

    I have installed IIS and am trying to run this basic server controls ASP.NET program on it but it just wouldnt show the textbox the command button or the label....I am guessing its some IIS security...
  26. Replies
    1
    Views
    1,937

    Bound controls vs. Unbound Controls

    Im doing this VB.NET tutorial that uses bound controls for a database application and find it quite easy to use and it seems to have quite a few features....I remember when programming in VB6 I was...
  27. Replies
    2
    Views
    395

    and while we're at answering my dumb...

    and while we're at answering my dumb questions...can someone tell me why a checkbox in a MS Access form works like a radio Button.....i.e...why can't I I check\uncheck 2 checkboxes at the same time ?
  28. Replies
    2
    Views
    395

    ok ok...blame me fr doing my intensive google...

    ok ok...blame me fr doing my intensive google searches after posting this on the board...but I found this


    DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70
    DoCmd.DoMenuItem acFormBar,...
  29. Replies
    2
    Views
    395

    deleting records with bound controls

    .. I have this access form with these add\find and delete buttons on it...the add I did with DoCmd.GoToRecord , , acNewRec
    the find was with DoCmd.FindRecord ...now how do I do the delete record...
  30. convert SQL Server ADO Code to MS Access connectivity code

    Im a VB6 programmer jumping l8 onto the .NET bandwagon and got hold of a tutorial for VB.NET on thi site (www.vijaymukhi.com)...but the DB connectivity chapter uses MS SQL Server..and I dont have...
  31. Replies
    1
    Views
    482

    How to trap record change event

    Im trying to disable all text fields whenever user changes the record using that DB tolbar kindof thing....I think.. whaddyacallit...the ADO Data Control ??.......now the problem is that how do I...
  32. Replies
    1
    Views
    353

    How To set curent field

    Im trying to do a find for a specific value on the current field...but I can't figure out how to set the current field.



    DoCmd.FindRecord "adf", acEntire, True, acSearchAll, True, acCurrent,...
  33. Replies
    1
    Views
    454

    Access Forms Help

    I need to make a form in access with the usual text controls and 3 buttons : Add Modify and Delete... I have done this kind of stuff in VB but never in VBA...I thought it would be very similar...but...
  34. Replies
    0
    Views
    398

    MergeSort troubleshooting

    Hey... I just spent 1 day trying to troubleshoot this MerSort Code...can any1 have a look at it and tell me whats wrong ?


    #include <stdio.h>
    #include <stdlib.h>
    #include <iostream.h>
    #include...
  35. Replies
    3
    Views
    509

    Here's what I figured : The key change is...

    Here's what I figured :

    The key change is DestArr[lBDest + i - lBSource] = SourceArr[i];
    in

    void CopyArray(int SourceArr[], int DestArr[], int lBSource, int uBSource, int lBDest)
    {
    for...
  36. Replies
    3
    Views
    509

    Array Split problems

    Here's what I want to be doing :

    I have an array of 10 integers that I want to split into two parts for which I made a function Copyarray()...but this code is giving me problems.


    #include...
  37. algorithm for computing combinations of elements

    Hi guys...Im trying to figure out an algorithm for calculating the various combinations of n elements...Iv come to the conclusion that its gotta be a recursive call inside a for loop...and thats...
  38. Replies
    2
    Views
    1,029

    vector multiplication: cross product

    For any 3 given vectors : a,b,c the following Cross Product property should hold true :

    ax(bxc) = (axb)xc

    buit doesnt ...

    assuming
    a=(2,3,4)
    b=(1,2,3)
    c=(4,1,2)
  39. Replies
    0
    Views
    453

    How to make a beats program ??

    Im trying to make a program for creating\mixing drumbeats.....sumthing like Fruityloops, so what shd I use for the audio playback and all ??...I was trying to use Wavmix32.DLL , but that is giving a...
  40. Thread: Crash

    by udit99
    Replies
    0
    Views
    427

    Crash

    Just loaded a VB project taken from the Net...it was abt using the wavmix32.dll and how it can support simultaneous playback of sounds...now the sounds execute fine initially , but soon cause this...
Results 1 to 40 of 204
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width