Search results for query: *

  • Users: gate7cy
  • Content: Threads
  • Order by date
  1. G

    Crystal Report login problem

    Hey there everyone. I have recently changed pc and so I changed and os from vista to win7. I have installed VS08 , mysql, odbc, .net connectors, created the dbs imported all the dumps. All my past projects are working fine. The only issue I am having which I cannot solve is that everytime I need...
  2. G

    Project issues

    Hello guys and dolls. I am trying to open a past project of mine in studio 08. The project was created in 08. I have added the mysql.data/ imported my dump/ changed the user, pass in the connection strings and everything debugged succesfully and I could run my program. When I try to open a form...
  3. G

    Question Import Mysql Dump

    I have two databases with different credentials ( db name/user/pass). Can I still use the dump from one database to import it to the other even though they have different credentials? Thanks for your time
  4. G

    Question Logout user on Application crash

    I have developed a server-client application. The program has multiple users each uniquely login in with their credentials to the system. The problem arises when the application crashes, pc shuts/restarts, the user then cannot log in as it is showing is still logged in. This is true because the...
  5. G

    Question Group controls?

    I am trying to group various controls (of the same type, eg. labels together, buttons together, etc. ) on a form using a tag or a name of some sort so I can identify all those that belong to tag 'A' and those in tag 'B'. In the end I will have on a form a number of labels grouped as tag 'A' and...
  6. G

    Insert just time in MySql column

    I am developing a portion of an application that deals with settings reminders and alarms for personal notes. I am trying to insert from a formatted datetimepicker( formatted to show time only ) the time a user wants to get a reminder of something he/she wants. The column in the MySql database...
  7. G

    Question Enter greek characters in MySql DB?

    I am trying to insert greek characters to my database and I keep getting and '?' question marks inserted. I am using VS 2008/MySQL server 5.0. I have googled it and everyone who had the same problem before were developing webpages and not software. The changes they did to resolve had to do with...
  8. G

    Question Barcodes scan problem

    I am using VS 08 , crystal reports, Mysql for a small inventory system. In my case I am going to print the barcodes and also generate them. I have used various fonts and I cannot get the scanner to scan them. It scans whatever barcode I test, other than the ones that I generate. I tried...
  9. G

    Question Parameter Input Form

    Hello to everyone and and all the best wishes for the new year. I am using VS 2008 with Mysql and crystal Reports to create a small invoicing application. I am trying to create dynamic reports for the end-user to have. All works rather ok but I am having a small(big) problem I could not find a...
  10. G

    Question Print Labels

    Hello to all. I am using VS 08 together with MySQL for the database. I am trying to print labels using an application I am developing. I found this template in word in which represents the label paper I have. I have attached the template. The template consists of a table with 13 rows and 5...
  11. G

    Question MySql query would not execute

    Hello everybody once again. Recently as I was finishing some basic insert queries I came upon a puzzle which till now I dont know what I am doing wrong. I have a very basic insert query which just would not execute throwing an error saying that there is a syntax error in my query. I have checked...
  12. G

    Question Add all values found in the groupbox textboxes

    I have a groupbox with a number of textboxes. I want to loop through all the textboxes, get their value( text) and add them all together and show it in a final totaltextbox outside the groupbox. This is what i have done but it does not work. The totaltextbox values do not change. Here is my...
  13. G

    Insert image to mysql table

    I am trying to insert/update a table in MySQL. I am trying to insert an image file to a column define in MySQL as a 'blob' type. My query is as folows update items set picture = '" & xxx & "' xxx is declared as : Dim xxxx As Image = (Me.PicturePictureBox.Image) I get this error: How...
  14. G

    Question Databind question

    I am developing an application using visual studio 08 and mysql. In my form I have a datagridview control together with some databinded textboxes that reflect the information from the datagrid. So far all good. This was just a drag n drop from the data sources. The datagrid is binded to table 1...
  15. G

    Question Open a Word template inside a winform?

    hello there. I am trying to open a word template inside a form in my vb.net application but I cannot seem to find any guidance to doing this. I do not want to call microsoft word to open in order to see/read/write on my template. I want the word document to be within a form I am creating like a...
  16. G

    Question Cannot use 'Like' condition in dataset designer with MySql db

    I am using visual studio 2008 and I am trying to create some queries in my designer to use in my form. The query I am trying to use is: SELECT Address, Balance, Block, Code, CustName, CustomerID, Email, Fax, FlatNum, HouseNum, LastEditBy, Mobile, Nick, Other, OtherTel, PostCode, Street...
  17. G

    Question Problems with Insert MySql db

    I am trying to to an insert query on my MySql db using VS 2008/VB. I have this query: Insert into allservices StartDate....) values ('" & Me.datesched.Value & "', ....) When I use the single and double quotes, as it is above , I get this error: when I remove the single quotes and have only...
  18. G

    Question MySql db cannot be edited in designer

    I have a small application that I have been developing using Access and visual studio 2008/VB. I started converting it to MySql and I have been encountering some problems. The way I converted was to first delete from my forms the datasets, tableadapters and tableadaptermanagers. After I delete...
  19. G

    Question Vb error for Mysql

    Hello. I am using mysql together with Visual Studio 2008 and I getting a weird error. I have search for it online but none of the, few, solutions available has helped me. The error I get is I removed and entered the Mysql reference many times. I downloaded different connector versions and I...
  20. G

    Question MySql query

    I have a question on what is the best way to do something. I am converting our application to MySQL and I am wandering where to create my queries. So far they where created in the VB dataset designer and used from there. What is the best way to do this. Create them directly on the db or in the...
Back
Top