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 SkipVought 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: *

  1. Panchovia

    start another access dbatabase from an access database

    Hi I am trying to run an access database from another access database with the following code in ms access 2010 Private Sub Command21_Click() Call Shell("""C:\Program Files\Microsoft Office\OFFICE11\MSACCESS.EXE"" "" C:\Users\Rudolf\Desktop\Signinfo playitmovie,1") End Sub
  2. Panchovia

    How do you add the values of a date ? dd , mm ,yyyy together

    Hi Dhookom That is exactly what I want 14+7+2015 =2037 After that I want to add 2+0+3+7 For you it doesn't make any sense for me it does. So don't bother what is the code to accomplish this
  3. Panchovia

    How do you add the values of a date ? dd , mm ,yyyy together

    Hi I am trying to get a number from a date with the following code with out any succes Alias_Date number: Val([Alias_date],"dd")+Val([Alias_date],"MM")+Val(Alias_date],"yyyy")
  4. Panchovia

    Like operator oops

    Hi with the following code you get the last number search Like ("*" & [Search_which_Number ?]) Now if you swipe Like ( & [Search_which_Number ?] "*") you should get the first numbers this code doesn't work What is the correct code.
  5. Panchovia

    nested for statement in c# visual studio express doesn't work

    Panchovia Problem solved here is the correct code; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Patern1_1 { class Program { static void Main(string[] args) { int i, j; for (i = 1; i <= 10; i++) {...
  6. Panchovia

    nested for statement in c# visual studio express doesn't work

    Panchovia, Here is another way to write the same code but this also doesn't output the correct instructions. using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Patern1_1 { class Program { static void Main(string[] args) { int...
  7. Panchovia

    nested for statement in c# visual studio express doesn't work

    Hi mmerlinn I am quiet impressed on your comments but you as a programmer you don'know anything of this nguage C is not same as c++ and non behave the same,so I would appreciated that you don't comment on my code because from your comment I can conclude that you don't know anything about ms...
  8. Panchovia

    nested for statement in c# visual studio express doesn't work

    Hi mmerlinn.com If you don't program in C# you mustn't answer my question WRITESTR doesn't exist in Ms visual studio C# thank anyway for your help.
  9. Panchovia

    nested for statement in c# visual studio express doesn't work

    using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Pattern_1 { class Program { static void Main(string[] args) { for ( int i = 1; i <= 10; i++) ...
  10. Panchovia

    how do you solve error: missing function header (old-style formal list?)

    When I run this code above error appears how do you solve this error #include "stdafx.h" #include <allegro5\allegro.h> #include <allegro5\allegro_native_dialog.h> int main(int argc, char* argv[]); {allegro_init(); allegro_message("Hello World"); return 0; }
  11. Panchovia

    allegro lib doesn't run on windows 8 ms visual c++ 2010

    I have tried to run the allegro lib in microsoft visual c++ 2010 but I think it does not run because the allegro.h file is a dos file for windows to read it you need the dosbox , any one knows how to make this file run in ms visual c+=2010 64 bit. Pachovia
  12. Panchovia

    C++ pattern problem

    Correct XwB Thanks for your reply
  13. Panchovia

    C++ pattern problem

    The following code should produce the following pattern it doesn't. XXXXX XXXXX XXXXX XXXXX what code must be added to get the correct result? #include <iostream> #include <conio.h> #include <process.h> #include <string.h> using namespace std; int main() { int i,j; for( i=1 ; i <=5 ;i++...
  14. Panchovia

    Counting how many times the right part of a four digit number appear in the database with a query

    Thank you PHV your code is correct Can you combine the two in the same query do you have to change the value of totalhits for the count function because you totalizing on the same field1 but with two different outputs
  15. Panchovia

    Counting how many times the right part of a four digit number appear in the database with a query

    Hi PHV, How do you get the left part of the numbers 00 to 09 in the database do you have to use the format function with this code. (using of course the left function)for the other number the code works correctly Because when you input the number 9 you don't input 0009 you only input 9
  16. Panchovia

    Counting how many times the right part of a four digit number appear in the database with a query

    I have the following query ms access 2010: field drawnumber should bring up the right part of the numbers 00 to 99 from the 4 digits number in the database the second field should count how many (records) with the right part of these numbers appears in the database I used the following code...
  17. Panchovia

    How do you get the day name not the date value in ms access 2010

    Day: Day(Format([drawdate],"dd/mm/yyyy")) This code should give you the drawdate name instead of the value or not if not how do you get the day name I've tried various options in ms 2010 none gives you the name of the day.
  18. Panchovia

    Dtpicker code doesnot prefrom as it should

    Hi Mazeworx I find your code interesting I will try it out and let you know, but I have allready solve the main problem by removing the checkbox from the Dtpicker Thanks Panchovia

Part and Inventory Search

Back
Top