Search Result

Collapse
8 results in 0.0014 seconds.
Keywords
Members
Tags
errors
  •  

  • rmch
    started a topic Getting error from OnClick Macro

    Getting error from OnClick Macro

    i am very new to access.I have created this macro by watching few examples from different sources in form frmPendingPropo salsUpdate. Getting error when I clicks “new” in field “open” of frmPendingPropo salsUpdate. kindly help me where is problem or if this macro is right

    Code:
    Action: OpenForm
    Arguments: frmContributionRegister, Form, , ="[RegisterID]=" & Nz([RegisterID],0), , Dialog
    Condition: Not IsNull([RegisterID])
    ...
    See more | Go to post
    Last edited by NeoPa; Jul 14 '11, 11:08 PM. Reason: Code tags

  • why doesn't the compiler recognize the function although I included the right libs?

    this is the code
    #include <stdio.h>
    #include <stdlib.h>
    #include <time.h>
    void main () {
    int b ;
    randomize () ;
    b = random (61) + 40 ;
    printf ("This is b: %d\n", b ) ;
    }
    These are the errors:

    error LNK2019:unresol ved external symbol_random referenced in function_main

    error LNK2019:unresol ved external symbol_randomiz e
    ...
    See more | Go to post

  • Blake Atlas
    started a topic how do you solve a C2065 error?
    in C

    how do you solve a C2065 error?

    The problem recieved from the debug log is the C2065 error regarding the 'm_pEffect' and 'm_pd3dDevice' being undeclared identifiers.


    Code:
    D3DApplication::D3DApplication(){
    m_pEffect     = NULL; 
    m_pD3D	      = NULL; 
    m_pd3dDevice  = NULL; 
    }
    VOID D3DApplication::relD3DObjects(){
    m_threeDobject.relD3DObjects();
    if( m_pd3dDevice != NULL ){
    m_pd3dDevice->Release();	
    m_pd3dDevice
    ...
    See more | Go to post
    Last edited by Niheel; Aug 2 '10, 06:53 PM. Reason: grammar

  • shockna1
    started a topic How to create a new win32 console application with C++
    in C

    How to create a new win32 console application with C++

    Im using Microsoft visual c++ 2008 and 2010 and neither of them will let me create a new win32 console application they will let me edit them but not make a new one. It used to work but evry time I try naw this thing pops up and says navigation to the webpage was canceled....
    See more | Go to post

  • jkmyoung
    started a topic String Matching with Mistakes

    String Matching with Mistakes

    Hey, I'm trying to find an algorithm to approximately match different substrings within a master list, with some forgiveness on spelling.

    Say you are allowed 3 errors in the string match:
    Defining error: having to remove or add a character.
    If you have to replace a character, that counts as 2 errors.
    Also the search is case-insensitive for now.

    So abcd and abc have 1 error
    bcd and abcde...
    See more | Go to post

  • bugaboo
    started a topic What do I need to change about my program?

    What do I need to change about my program?

    I'm trying to write a program that will determine the total number of lines, columns, digits, as well as the maximum and minimum number. However it returns the wrong data and can't count any negative numbers. My program is...


    Code:
    max = 0
    min = 0
    
    def getMaxMin(digitsList):
    	global max
    	max = digitsList[0]
    	global min
    	min  = digitsList[0]
    
    	for digit in digitsList:
    ...
    See more | Go to post
    Last edited by bvdet; Apr 7 '10, 06:02 AM. Reason: Fix code tags

  • bradyounie
    started a topic Compile errors in a MIDL generated _i.c file
    in C

    Compile errors in a MIDL generated _i.c file

    I have a C++ COM project that was created with Visual C++ 6. I have just converted the project to Visual Studio 2005 and have been trying to build it. I get the following compile errors:

    Code:
    warning C4290: C++ exception specification ignored except to indicate a function is not __declspec(nothrow)
    error C2143: syntax error : missing ';' before '__uuidof'
    error C2059: syntax error : '__uuidof'
    error C2143: syntax
    ...
    See more | Go to post

  • AgentSpanky
    started a topic Cannot turn off errors from @mysql_connect
    in PHP

    Cannot turn off errors from @mysql_connect

    Hi All,

    I have a script that runs on two servers - one with SQL, and one without.
    I have coded it so that it doesn't matter on which server it runs, but when I try to connect (to determine which strategy to follow) with:
    Code:
    function connect_to_sql_ok() {
    	$conn = @mysql_connect($this->mysql_host, $this->mysql_user, $this->mysql_pass) or die('<hr />MySQL Error: ' .mysql_error(). '<hr />');
    ...
    See more | Go to post
Working...