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....
129045
Arch Lineberger
archnc
May 1, 2008 12:13 pm
Sorry, I was thinking Discovery from a previous thread. Those source files are encrypted and do not allow renaming a project. Arch ... -- InControl Systems ...
129046
Rosie Coller
rosiefm2000
May 1, 2008 12:42 pm
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...
129047
Omar Lamin
ola_ip
May 1, 2008 12:43 pm
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...
129048
Rosie Coller
rosiefm2000
May 1, 2008 12:51 pm
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...
129049
Omar Lamin
ola_ip
May 1, 2008 12:58 pm
Well Discovery is free. Express is not. Just making sure you know. Omar...
129050
Cyril Wan
cyril_w
May 1, 2008 1:03 pm
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...
129051
popstevo
May 1, 2008 1:07 pm
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...
129052
Cyril Wan
cyril_w
May 1, 2008 1:13 pm
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...
129053
Simon Scott
rushden_calling
May 1, 2008 1:25 pm
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-based39; form and F5...
129054
Oren
oreneps
May 1, 2008 1:49 pm
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...
129055
Frank
fmarto75
May 1, 2008 1:50 pm
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...
129056
Jim Stephenson
jimhstephenson
May 1, 2008 1:57 pm
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...
129057
Omar Lamin
ola_ip
May 1, 2008 2:12 pm
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? ...
129058
Keith Canniff
kbcanniff
May 1, 2008 2:20 pm
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...
129059
Jim Stephenson
jimhstephenson
May 1, 2008 2:46 pm
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...
129060
Steven Burrows
doomlord66
May 1, 2008 3:01 pm
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...
129061
Cyril Wan
cyril_w
May 1, 2008 3:19 pm
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...
129062
Keith Canniff
kbcanniff
May 1, 2008 3:23 pm
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 ...
129063
Keith Canniff
kbcanniff
May 1, 2008 3:25 pm
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...
129064
Jim Stephenson
jimhstephenson
May 1, 2008 3:28 pm
Yes ... [Non-text portions of this message have been removed]...
129065
steve_edwards001
steve_edward...
May 1, 2008 3:31 pm
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...
129066
Keith Canniff
kbcanniff
May 1, 2008 3:33 pm
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...
129067
Stevo Popovic
popstevo
May 1, 2008 3:46 pm
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...
129068
Cyril Wan
cyril_w
May 1, 2008 3:47 pm
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...
129069
Jean H. Chandler
la_edev
May 1, 2008 3:48 pm
Charles and I will be at MIUG Conference this year, who else going to make it? J [Non-text portions of this message have been removed]...
129070
johnggberg
May 1, 2008 3:57 pm
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...
129071
Jim Stephenson
jimhstephenson
May 1, 2008 4:26 pm
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...
129072
Dan Dailey
dan_dailey2002
May 1, 2008 4:33 pm
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,...
129073
Frank
fmarto75
May 1, 2008 4:36 pm
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...