Hi everybody Im working in an aplication, and i need to show reports from a database in access, those reports must be made using crystal reports, in vs.net. When i make a report with crystal reports, i configure the location of the database, but if i need to move the aplication to another pc, how i can change the location of the database to the report, i need to know if there are something like: MyReport.DatabaseLocation=textBox1.Text;
neliocc
Posts
-
Changing the location of database in a CrystalReport -
Access database in winMEHi everybody I am developing an aplication to conect with a Microsoft Access database. I need to know wich drivers i need to install in a PC with Windows ME, to make this software functional, because i install yet the .net framework, but when the application tries to connect to the database, it throw an exception.
-
IConnectionPointContainerHi everybody In the SetSite method, of one tool band implementation, how i can get a pointer of IConnectionPointContainer.
-
Help without ATL or MFCHi everybody I am developing an internet explorer toolband, with many functions, one of them a popup blocker button. I was searching in the examples, but all the examples have ATL or MFC functions, and i need do all that things without using any ATL or MFC functions. If anybody can helpme i will be gratefull
-
block popupsHi everybody I have an instance of the IWebBrowser2 interface implemented by the internet explorer, and i need to know, how i can enable the block popups function.
-
IWebBrowser2 instanceHi everybody I am working in an internet explorer tool band, and i need in the SetSite method, an instance of the IWebBrowser2 object, without using atl or MFC functions, only visual C++ functions. If any body can tell me, how can i do that, i will be gratefull.
-
IE Tool BandHi everybody I want to make an Internet Explorer Tool Band. But I dont have enough information to do that, if anybody can tellme about some site (not MSDN) with information and examples i will be gratefull.
-
Read bytes from a memory mapped fileHi everybody. I have a problem. I have a file mapped in memory, and a pointer to section of that file, and i need to read n bytes from the file in memory begining in the pointer. If anybody can helpme i will be gratefull.
-
PE headerHi everybody. I need to get the .bmp and .ico resources of an excecutable file(.exe) or a .dll file, Using the PE and RVA. Please if anybody can helpme, i will be gratefull.
-
Save from excelHi everybody. Im am working in an application and i need save the information in an excel file into a dataset, or an array. Anybody can tell me how can i do that? If anybody can help me i will be gratefull.
-
Process windowHi everybody. When i get the list of processes ids, with the EnumProcess function, how i can get the window asociated with a process? For example, if i have the process id 08937 i want to call a function GetWindow(08937) and it gives me a handle to the asociated window (HWND)
-
Strange edit control problemAdd the WS_BORDER style, debug the CreateWindow function, if no error succed, and the problem persist, try using ShowWindow function.
-
My aplication nameThanks a lot
-
My aplication nameHi everybody.How can i get the entire path of an aplication when its excecuted??. For example, when the user runs my aplication, i want in the WM_CREATE message, call the function GetAppName created by my and get C:\....\myApp.exe
-
Start MenuI read something about IShellLink and IPersistFile. But when i go to save the link, the aplication sends me an AccessDenied error. But i dont know what is the problem.
-
Start MenuHi everybody. I want to make an application, that its added to the start menu by itself. If any body can explain me how i can make that, i will be gratefull.
-
Rotate the screenHi everybody I want to make an aplication to rotate the screen,to achieve the same affect of pressing the keys Ctrl+Alt+Izq,Ctrl+Alt+Der, etc. But i dont know how can i make it. If any body can help me, i will be gratefull.
-
IActiveDesktopThanks a lot.
-
IActiveDesktopHi everybody, i need your help. Im trying to change the desktop wallpaper, but i must use the IActiveDesktop interface, and i dont know what files i must include in the header, in the msdn help, they tell me, that i must include shlobj.h but with that it doesnt work. If some body can help me i will be gratefull.
-
BYTE* to char* or BYTE* to CString ?You cannot cast a BYTE* to char* or CString, but you can convert it to char* whit this method: char* CAST(BYTE* bytes,int numberOfBytes) { char *result=new char[numberOfBytes]; for(int i=0;i