Same here. It seems to be stored in two places projprops.xml and in the edp file. The edp is just an xml file as well so you can edit it in just the same way....
Sorry, I was thinking Discovery from a previous thread. Those source files are encrypted and do not allow renaming a project. Arch ... -- InControl Systems ...
Good point. In Discovery there is no way. With either Xpress or Enterprise you can edit the XML source directly. Rosie ... [Non-text portions of this message...
Correct! If it was a on the project Properties panel than we could change it the same way for both Discovery and the others. That is why I say that this is...
I agree, we shouldn't HAVE to do anything by editing the XML, everything it is possible to change should have a place in the studio where you can do it. My...
Thanks all. I didn't want to modify the source and registry because I thought this was a trivial task that would be done in a more user friendly way. I guess I...
Dear Magic developers, I am a software developer that has mainly worked in Java, .net, c, c++, etc., but never in Magic. I have been assigned with a task to...
Thanks that did the trick! I am pretty sure I didn't have to do this extra step in SQL2000 as long as I put the user a dbo C From: magicu-l@yahoogroups.com...
What you need to do is, in the program that you have created, drill into it using F5. Press Ctrl+F for Forms. Cursor down to the 'text-based' form and F5...
In MSSQL 2005, you should try and keep away from TEXT and IMAGE as they are being deprecated in favor of VARCHAR (MAX) etc. They stated that these will be...
How to eliminate unused spaces in a String field when converting from a SQL field that does not accept NULL to a field that does accept NULL? I've used MAGIC...
The solution was to just do a RepStr(X,chr(13)&chr(10),'\par ') after the text field was built and then move that into the RTF field. Thanks everyone for the...
Hi Frank, Have you tried updating the field with the function Null()? Omar, ... from a SQL field that does not accept NULL to a field that does accept NULL? ...
Well, since you're very new to eDeveloper, let's try to do this as simply as possible. As you've done already go to your tables and do the Ctrl+G, but this...
I guess this is my week to play with text fields... I have been experimenting with Thomas' Spell check program he put in the files section a short time ago and...
We are currently close to achieving the 2nd Holy Grail of Magic development using v10 and VSS (1st Grail being an application that runs on MSSQL and...
Hi, V8.2 - I'm trying to create an exported file with 80 chars line for a bank interface. It seems that Magic trims the line. for example if the data line...
Cyril, You have to set the output to None, and manually insert the Chr(13)&Chr(10) in the 80th position to force a true fixed length record, unless you can ...
Jim, Did you specify in the edit control in the screen to "Allow CR in Data" to Yes? Keith From: magicu-l@yahoogroups.com [mailto:magicu-l@yahoogroups.com] On...
Hi all, I have a stored procedure with 4 input parameters & 1 output parameter. When i call this SP via Magic it comes up with an error along the lines of...
Jim, I guess I'm confused. The text field is just a string with CR/LF imbedded in it. They're not separate records. They just display that way in fields or...
Thank you very much Keith, I totally agree with you about Access but it is not my choice :( user has the final word.... I did everything as you wrote, but when...
Keith, What do you mean "Output to None" ? I am using v8.2 Also the line may come up to 80 chars in length, but when I detect the len less than 80, I can...
instead of Output Parameter you can have select statement at the end of store proc to return the value. john ... select ... which ... appear ... this ... using...
That was confusing to me too. But, I have fixed it by doing a RepStr(X,chr(13),chr(13)&chr(10)) after the text file is returned from the spell check. Thomas...
I will also be there Dan Dailey _____ From: magicu-l@yahoogroups.com [mailto:magicu-l@yahoogroups.com] On Behalf Of Jean H. Chandler Sent: Thursday, May 01,...
Hi Omar, Thanks but this would make the WHOLE filed NULL; I still need to keep whatever entry is there. For example: SOURCE FILED: VARCHAR(30), does NOT accept...