Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+5
Strength to Decrease Rep
-1
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts
0 Endorsements
Member Avatar for Elmo_loves_you

Hey Everyone Is it possible to disable the dates that appear before todays date in a dateTimePicker control? I want to put in some validation so that my users can only select days in the future...ie a future appointment date Any ideas ? Thanks

Member Avatar for B2.Aashu
0
4K
Member Avatar for Elmo_loves_you

Hey People :) A little quesion for you all ... I have a stored procedure which retrieves an ID from a Customer table and the ID from the newly Inserted row of the Vehicle table and adds them to a new table. On my form I have a dropDown where …

Member Avatar for umer asif
0
985
Member Avatar for Elmo_loves_you

Hey Guys, I've been away from Dev for a while, just getting back into it now and not sure if there are many Kentico genius' throughout Daniweb ... but I am a bit stuck and need a wee bit of much appreciated help if you can, many thanks I am …

Member Avatar for pritaeas
0
168
Member Avatar for Elmo_loves_you

Hi Guys, Surely this shouldnt be such a complex task! I have done this before for a desktop application where I typed in data on the UI clicked a button and a new text file was created on the C: drive and the data added. Ive been googling and googling …

Member Avatar for martinopresnik
0
236
Member Avatar for Elmo_loves_you

Hey everyone. I haven't been on DaniWeb in a while. [CODE].x-accordion-header { width: 100%; color: #ffffff; background-image: -webkit-gradient(linear,0% 0,0% 100%,color-stop(0%,#[B][COLOR="red"]96A9C0[/COLOR][/B]),color-stop(2%,#[B][COLOR="red"]5A7596[/COLOR][/B]),color-stop(100%,#[B][COLOR="red"]394B5F[/COLOR][/B])); }[/CODE] Is it possible to include a 'variable' or 'property' in css? The reason why I am asking is because I want to change the background colour of the css …

Member Avatar for Elmo_loves_you
0
87
Member Avatar for blazted

Hi I have a tabbed control. Tab1 is for adding new customer details and Tab2 is for searching for existing customers (from a comboBox) and then adding additional information for that customer. How can I make the results of a stored procedure be automatically displayed in the comboBox(DropDownList) as soon …

Member Avatar for kvprajapati
0
111
Member Avatar for MohitManocha

Hi Guys I have managed to write values to a Windows Mobile CE Registry Editor from my application. I have a writeIniReg() and a readIniReg() function So, when the user enters their name in the textbox on the form it is written to the registry and read from it again …

Member Avatar for pratik30.ei
0
1K
Member Avatar for Elmo_loves_you

Hello Everyone :S I am rather new to ASP.NET. I have an SQL Server 2005 database set up. So far its quite basic with just two tables (UsersLogin, Roles). My aim is to allow users of different ranks to login to the system ie. Admin, Staff etc. [B]UsersLogin [/B] table …

Member Avatar for salaam_taher
0
153
Member Avatar for Elmo_loves_you

Hi, I was just wondering if anybody new of a way to store an encrypted file to an sql server database through a stored procedure. I have managed to encrypt a file selected from a FileUpload control but at the minute the encrypted file and the key are created and …

Member Avatar for Saravanan M
0
116
Member Avatar for mufliha

If you are capturing images then you will probably want to store them in a database as a BLOB (Binary Large Object) or on your computer with a path to the images stored in the database. You are just going to have to read up on the subject area and …

Member Avatar for Elmo_loves_you
0
166
Member Avatar for Elmo_loves_you
Member Avatar for Elmo_loves_you

Heya I have to write a script within MS Access 2003 using Visual Basic for Applications to read in data from a textfile and insert it into the table. I began my programming path using dot.Net C# and started database manipulation using Sql Server. So this is kind of like …

0
159
Member Avatar for Paladine

Hey Guys Sorry for digging up this thread .. but is it possible to design a Form in Photoshop and then make the various buttons do something within Visual Studio as a mobile application .. not a website??? If so ... how ??

Member Avatar for peter_budo
0
694
Member Avatar for Elmo_loves_you

Hey Guys, im a fairly novice programmer I would just like to hear some views / opinions on how you would go about implementing the following: I need my program to save data to a textfile giving the file a name and adding a number to the end eg filename_1.txt. …

Member Avatar for Elmo_loves_you
0
247
Member Avatar for Elmo_loves_you

Hi Guys, Im more familiar with coding in C# ... can someone please help me to convert the line highlighted below into VB.NET Much appreciated [code] private int file_count = 0; /// /// Get the file count of a given directory recursively. /// public void GetDirectoryFileCount(string dir) { dir = …

Member Avatar for Jx_Man
0
216
Member Avatar for gopi17

Hi ... im fairly new to this aswell so ... if the date field in your database is set to dateTime then you have to add the date selected from the dateTimePicker in date format [code] Dim var As Date 'Declare a date variable var = DateTimePicker1.Value.Date 'Get the date! …

Member Avatar for Elmo_loves_you
0
242
Member Avatar for Elmo_loves_you

Hi Guys ... Does anybody know how to force a windows forms application to restart (Close and open again) taking the user back to the first screen ? My user fills in a questionnaire, reaches the end and is asked to either perform another survey or to send data (sent …

Member Avatar for Elmo_loves_you
0
144
Member Avatar for Elmo_loves_you

Hi guys I am able to add data to a textfile on a windows mobile device but can only get it to store within the 'My Device' folder. I have tried to place it within folders ... but it cries with a NullReferenceException [code] Dim path As String = "\testFile.txt" …

0
89
Member Avatar for Elmo_loves_you

Hi Guys I hope you can help share some light on my problem. Basically, I have a MS Access table...ID, firstname, surname, Address1, Address2 etc What I want to do is Select all from table but only show one record where more than one person lives at that address .. …

Member Avatar for dickersonka
0
128
Member Avatar for Elmo_loves_you

Hi lads (and ladettes) I have to create a mobile application that gathers user input, saves it to a document so that it can then be emailed back to HeadQuarters. Im new to this area ... although I have used the StreamWriter/StreamReader classes to create a new TextFile and save …

Member Avatar for Elmo_loves_you
0
179
Member Avatar for VirusHeart

Would it not be better to set the 'image' field in the database as an Image or VarBinary(max). Then to add an image to the database you could pass in the bytes of the new image file that you want to upload. Thats the approach I used when I wanted …

Member Avatar for dickersonka
0
115
Member Avatar for Elmo_loves_you

Hi I have just been informed by a few work collegues that the database system that I have created should now be set to use Server Username and Password. Is it a big deal to change this without disrupting the current relationship of the database stored procedures and application code? …

Member Avatar for dickersonka
0
151
Member Avatar for Elmo_loves_you

Hi I have just discovered a development environment called MobiForms available at [url]http://www.mobiforms.com/[/url] for developing mobile applications. I had a wee read through it but cant see any real differences with in compared to visual studio emulators in terms of developing RAD forms (drag n drop controls) Has anyone got …

Member Avatar for LizR
0
79
Member Avatar for mike7510uk

Hi Guys I have a stored procedure where I am adding a new record to a table and I have RETURN SCOPE_IDENTITY() at the end...on testing it returns the ID value that I want. However I want to be able to use this ID value and pass it to a …

Member Avatar for Elmo_loves_you
0
94
Member Avatar for sancti

[QUOTE=sancti;675462]hi all, i am working on a windows application. In that i have to open a saved text file using a open dialog box and load it into the word document..i am not able to load a text file to word document. what can i do for this? Thanks in …

Member Avatar for Elmo_loves_you
0
124
Member Avatar for Elmo_loves_you

Hi I have a stored procedure that returns the unique ID for a particular Name/string passed in. On my windows form I have a ListBox control filled with a list of names (returned from another stored procedure) I want to be able to let the user click the list box …

Member Avatar for Elmo_loves_you
0
201
Member Avatar for Soleybancing

Hi Would it be because while you are testing it in the IDE the database connection string is pointing to the mdb database file within your bin/debug folder explicitly rather than replacing the file path with |datadirectory| so that it would be relative to wherever you have the database stored! …

Member Avatar for Elmo_loves_you
0
159
Member Avatar for Elmo_loves_you

Hi I have previously populated a listbox / dropdown list with data from a stored procedure in ASP.NET C# and called the method in the PageLoad so that the list would be available once the page loaded up. However, now I want to do the same thing except I want …

Member Avatar for dickersonka
0
69
Member Avatar for Sreedeep

Jerry, I have a question related to this post! I am trying to develop a Windows Application interface to an SQL Server database. I have a stored procedure that executes properly and successfully adds to the table in the database. However the C# code that I have written to pass …

Member Avatar for JerryShaw
0
558
Member Avatar for Elmo_loves_you

Hi. I have previously designed an ASP.NET system that interacted with SQL Server 2005. I now want to design a desktop application using Visual Studio 2008 that interacts with an SQL database. I had planned to use the same sort of coding to implement this new system. For example - …

Member Avatar for Ramy Mahrous
0
159