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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: thegame8311
  • Content: Threads
  • Order by date
  1. thegame8311

    URLDownloadToFile not working

    I know I have come with a question related to this before, but now it seem to have a problem when I make the release build in VS 2010. The following code line reports 'Error: argument of type "LPCSTR" is incompatible with parameter of type "LPCWSTR", it works in debug mode as seen below just...
  2. thegame8311

    Frx2any parameters

    I could get the frx2any to run, but I want to try to send the program the fields it needs and wants instead of typing it in the program when it appears like a parameter list, how to i do that
  3. thegame8311

    FRX2Word error

    For some reason unknown to me, when I add the frx2word class to my project to process a report it does not do it. It returns -200 as the nVal and when i click the button to run it ti opens a file browser window, but I have no idea what it is looking for, see code below: oFW =...
  4. thegame8311

    insert into memo field

    I am trying to insert into a tables memo field but i get data type mismatch error, the data is coming from a text field, how do i do this?
  5. thegame8311

    populating windows form listbox

    Trying to populate the windows form listbox, but getting no answers I'm using this: ListBox1->Datasource = "LP" //Table name but nothing is showing?
  6. thegame8311

    Populating a listbox

    I'm having trouble populating a listbox with data from mysql database. I keep trying to add a mysql data source, and every time i select the mysql data source then start typing in the fields it closes the screen, why is that?
  7. thegame8311

    LNK 1104 error please help

    I have been all over the place with this and I can't seem to get past the linker errors, and this last one is getting to me fatal error LNK1104: cannot open file 'C:\Program Files\MySQL\MySQL Server 5.5\lib\\.obj' here is the code: // Test2.cpp : Defines the entry point for the console...
  8. thegame8311

    LNK 1104 error

    I have been all over the place with this and I can't seem to get past the linker errors, and this last one is getting to me fatal error LNK1104: cannot open file 'C:\Program Files\MySQL\MySQL Server 5.5\lib\\.obj' here is the code: // Test2.cpp : Defines the entry point for the console...
  9. thegame8311

    Linker error

    I have been all over the place with this and I can't seem to get past the linker errors, and this last one is getting to me fatal error LNK1104: cannot open file 'C:\Program Files\MySQL\MySQL Server 5.5\lib\\.obj' here is the code: // Test2.cpp : Defines the entry point for the console...
  10. thegame8311

    Couldn't connect to driver

    I get the following error with the code below it: Direct ODBC: Couldn't connect to Driver char szDSN[256] = "Driver={Microsoft Access Driver (*.mdb, *.accdb)};DSN='';DBQ=C:\\Users\\Sasuke\\Documents\\Database1.accdb;"; //LPCTSTR lpszConnect = _T("Driver={Microsoft Access Driver (*.mdb...
  11. thegame8311

    Connecting to access database

    For some reason I have all these header file errors but not sure why, here's my code: #include "stdafx.h" #include <sqlext.h> #include <iostream> #include <string> using namespace std; char szDSN[256] = "Driver={Microsoft Access Driver (*.mdb...
  12. thegame8311

    using URLDownloadToFile for multiple links in a file

    ok, I'm going to try to explain this the best way possible, so here it goes: I am trying to run URLDownloadToFile, using links from a file, so It would read the first link, process it, save it to a file, read the next link, process it, save it to the same file. Problem is that even if i put it...
  13. thegame8311

    getting a webpage to a file

    I have seen many ways, but strictly I am using visual c++ not visual studio, I have seen URLDownloadToFile, wget and curl but I can't get any of them to work, here is my code: #include "stdafx.h" #include <urlmon.h> #include <iostream> #include <tchar.h> using namespace std; int _tmain(int...
  14. thegame8311

    Web data extraction using Visual C++

    I was wondering if the is a way to extract web data using visual C++. If I tried to do it though the Windows console attached to my project would that work or is there a better method
  15. thegame8311

    Creating a C++ Windows application

    I am wanting to create application that has alot of forms but works mostly with c++ on the backend. I am using VS 2010/ VS C++ 2010, I can make a form, I can code in c++, but how to i make it a regular application instead of a console application. I can provide more details on my idea if needed
  16. thegame8311

    close a single table stored in a variable

    I have done the methods found on here but they don't seem to work: select (Team_name) use use in (Team_name) not sure where to go next because Team_name is variable that contains the name of a table, which I know is unorthodox but it is what I am doing. each time is know the name of...
  17. thegame8311

    Passing variables between forms

    In the parent form is this: Do Form Add with T_Name to Team_Name In the form's init that is called LPARAMETERS Team_Name IF NOT USED("LivePlayers") USE LivePlayers IN 0 ENDIF IF NOT USED(Team_Name) USE (Team_Name) IN 0 ENDIF Team_Name is the T_Name from the first name For some...
  18. thegame8311

    program not working after setup

    I was testing out how to make my program setup and run using installshield express I created the exe from foxpro, then I tried to use install shield to make it a setup, which it did, but when I click on the file nothing happens If the forms are in the VFP.exe that I made and I added the...
  19. thegame8311

    Form Background programmatically

    I wanna have a image background on a form based on a button click I think it should be thisform.Picture = 'pic.bmp' so what am i missing, because it is not changing the background of the form
  20. thegame8311

    Call a button click event in a form from a PRG

    I was wonder, if there is a way to call a button click event in a form, from a PRG. I Read somewhere about Read Events but I am not if that is the way to go about it, much less not really understanding what Read Event are

Part and Inventory Search

Back
Top