No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
33 Posted Topics
I hope the title is somewhat clear. In windows forms this is pretty straight forward. But for whatever reason in WPF its not the case. I am trying to change the opactiy of 2 labels. Both labels are on seperate windows. Window1 has a button to change opacity of a … | |
I have a WPF app which saves a few textboxes in a XML file. But for some reason sometimes it saves ok and the other time it does not. And the problem always is how it closes the XML file. For example, closing the XML file shoudl end with </Data> … | |
Is there any way to detect a keypress when your window is not active? I got a transparant window which is always visible ontop of other applications. Though the idea is to start timers when the assigned key is pressed. The problem i got is when the window is on … | |
I think i went somewhat over my head with a little tool i wanted to make. The idea was to bind certain keys(users choice) to countdown timers and progressbars. But since the keys are never the same i have to save the chosen key for the selected progressbar. So when … | |
I being starting to switch to C# from VB.Net. And to be honest my knowledge from using C is pretty outdated since i used that last years ago. So i am still figuring things back out. I wont be surprised if this ends up being a simple fix. The program … | |
My access database is shown in my datagridview. When i start the program and click through the names everything is displayed in the linked textboxes. But ones i search through my database, and the results are filtered. My cellclick stops working, not getting any error messages. It just stick to … | |
Probably already know the answer to this problem, but perhaps i am wrong. My datagrid is being sorted by Id which is Autonumber. So if i add a new entry its added at the bottom of the list. Is there any way to change the sorting to a different nummeric … | |
Is there any way to show the highest value from a access db column in a textbox which you put in the load of a form? Found something by searching around, but did not get it to work at all. Maybe because i cannot open a connection in the load … | |
A friend asked me to rewrite a program for him. Though the problem is it s using a rdb database, i am assuming this is a dec/oracle rdb database. Which i honestly never used and have no knowledge of. So i was wondering if there is any way to convert … | |
I got a small problem with getting a filter to work for my database. When i test them seperatly it works but when i all add them together they stop working. This is the code i use currently. All of the fields in the database are text, except for the … | |
I was quickly creating a program to search through a access database. The idea is to filter the names and figure out the file location in the physical archive. Though my query wizard is being rather annoying right now. I did not use the manual connection like a lot of … | |
Ok sorry was kind of hard to explain my problem in the title. I got basically 3 forms. Form 1 and Form2 contain mostly the same fields. But Form 1 is used to enter data in the database. Form 2 is used to view and if needed edit data. Form … | |
I am not really experienced with asp.net so forgive me if this is something simple. What would be the best option to have a calendar on your webform(as popup)? I already have a windows application for making appointments(used by secretary, so its a offline program). But now i want to … | |
For whatever reason beyond my understanding did my DB start this problem. I got 2 tables in my database. 1 dealing with personal info 1 with dates and time To keep my startup form empty I have the first row empty in both tables. But for some reason after I … | |
Ok my title is probably very vague and unclear. Kind of hard to sumerise in the title. My form has a bunch of textboxes. The content is supposed to be saved with a button. BUT not all the textboxes will have content in them. So lets say i added content … | |
I got a database with 2 tables. Table 1 is saving personal information Table 2 is saving dates, Time and a number In table 1 there is a date, time, number textbox. Which also is in Table 2. But Table 2 has some other fields which contain other data. Basically … | |
I got a few labels which show a entire week. It's displaying the long date like this LblCurrentDay.Text = Date.Now().ToString("D") LblCurrentDay1.Text = Date.Now().AddDays(1).ToString("D") LblCurrentDay2.Text = Date.Now().AddDays(2).ToString("D") LblCurrentDay3.Text = Date.Now().AddDays(3).ToString("D") LblCurrentDay4.Text = Date.Now().AddDays(4).ToString("D") LblCurrentDay5.Text = Date.Now().AddDays(5).ToString("D") LblCurrentDay6.Text = Date.Now().AddDays(6).ToString("D") The labels are all inside each of their own small panel. But … | |
I got a textbox which holds a persons address For example Streetname / house number / box number They are seperated by a space I want them to go into their own textboxes TxtStreet, TxtHousNr, TxtBoxNr I am pretty sure its best done with indexof But i cannot get it … | |
I am trying to get a example that came with the card to work to my needs. The card holds personal data, which you can read with a specific card reader. Currently the example will either read to a console window or to a single textbox on a form. My … | |
Ok i am saving my picture localy, each picture gets a unqiue number. This number is also saved in my sql database together with some other data. The jpg is saved localy in my project. What i am having troubles with is. When i am on my overview form, and … | |
I have never used Dllimportattribute. But i am supposed to have a DLL added that way. Could somehow give me a better understanding about this? Basically in my project i need to import a dll (beidlib.dll) this way. I figured adding a class inside my project the way explained in … | |
I creating a small program which basically reads Electronic identity cards and stores the information in a SQL database. There is more to the program of course, but this is where i need help with. The EID has a picture from the person also. I decided not to save the … | |
Never had this problem before, and i am not sure how this happened. I got a Mysql sql database for my project. The id field is set as auto increment, which seems to function correctly. But on the form in my text field and datagrid i see a negative number, … | |
Is there any way to create a button which basically clears a entire table in your database? I was hoping to have 2 buttons, 1 to empty a table 1 to fill the same table again. The idea is to store a year long values, and at the end of … | |
I need this for 2 different changes. ON one form i got a week calendar, the other a month calendar. Was hoping to add 2 buttons previous & next. To scroll back in time x days, or x days forward. And similar for the months, but instead of days months. … | |
Ok i am going to try to explain this as good as possible. I got a form, which i plan to use as a calendar/agenda. I got labels for each week day, these will change each day. Below each label(day), i got textboxes which are used to enter appointments in(these … | |
Probably a simple answer to a stupid question. But i cannot figure it out myself. I am using [CODE]Date.Now().ToString("D")[/CODE] on a label. Now i was wondering how you could use a similar string. But to add 1,2,3 ect... to that. So that i can have a label for each day … | |
Does anybody if something like this exists? I am trying to write a small program to plan appointments. And have a overview of them in some sort of calendar(not the mini calendar which you can get from the VB control). Found some website who offer such controls, but honestly $1k … | |
Can anybody tell me where i can find the connection string for using on a asp.net form. I am trying to connect a mysql database to it, and wanted to connect a access database to test the main functions. But i am having a hard time finding any of these … | |
I am writing a small program to quickly search through a archive. But i cannot figure out how to get it to filter. I got my regular fields like firstname,lastname, gender, birthyear, street, city, zip, phone. Which i can search through by just entering one of these fields. Then i … | |
Was wondering, is it possible to create a class which has the majority of your keypress controls? Like allowing just letters or numbers in a textbox etc.... To make things clearer what i exactly want. I have a textbox on my form. This is a textbox for the postcode. The … | |
Ok i am having a blond moment(no offense haha). I got on my form textboxes, checboxes but also a groupbox which holds texboxes. The idea is to be able to clear and reset all of these by clicking a reset button. At the moment i got this [CODE] Private Sub … | |
Hi everybody, i just registered here. Hoping to learn some from everything i find here and also hoping a bit to be helped out. I am creating a small program which has a few texboxes which i want to saved in a access database. My problem is i have no … |
The End.